-
Notifications
You must be signed in to change notification settings - Fork 98
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1883 from cosmos/fabo/1873-big-mergeroo
Fabo/1873 big mergeroo
- Loading branch information
Showing
150 changed files
with
5,155 additions
and
11,650 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ jobs: | |
|
||
changelogUpdated: | ||
docker: | ||
- image: circleci/node:10.13.0-browsers | ||
- image: circleci/node:10.15.0-browsers | ||
|
||
steps: | ||
- checkout | ||
|
@@ -41,7 +41,7 @@ jobs: | |
|
||
testUnit: | ||
docker: | ||
- image: circleci/node:10.13.0-browsers | ||
- image: circleci/node:10.15.0-browsers | ||
|
||
steps: | ||
- checkout | ||
|
@@ -51,8 +51,8 @@ jobs: | |
- v3-dependencies-root-{{ checksum "package.json" }} | ||
- v3-dependencies-root- | ||
|
||
- run: sudo npm -g uninstall yarn ; sudo npm -g install [email protected] | ||
- run: yarn install | ||
|
||
- save_cache: | ||
paths: | ||
- yarn.lock | ||
|
@@ -70,9 +70,33 @@ jobs: | |
command: bash <(curl -s https://codecov.io/bash) -t $CODECOV_TOKEN | ||
when: on_success | ||
|
||
security: | ||
docker: | ||
- image: circleci/node:10.15.0-browsers | ||
|
||
steps: | ||
- checkout | ||
|
||
- run: sudo npm -g uninstall yarn ; sudo npm -g install [email protected] | ||
|
||
- run: | ||
name: Audit | ||
command: | | ||
set +e | ||
SUMMARY="$(yarn audit | grep Severity)" | ||
VULNERABILITIES=".*(High|Critical).*" | ||
if [[ $SUMMARY =~ $VULNERABILITIES ]]; then | ||
echo "Unsafe dependencies found: $SUMMARY" >&2 | ||
exit 1 | ||
fi | ||
echo "Your dependencies are secure enough: $SUMMARY" | ||
exit 0 | ||
testE2e: | ||
docker: | ||
- image: circleci/node:10.13.0-browsers | ||
- image: circleci/node:10.15.0-browsers | ||
|
||
environment: | ||
- BINARY_PATH: "/home/circleci/project/builds/Gaia/linux_amd64/gaiacli" | ||
|
@@ -89,8 +113,8 @@ jobs: | |
- v2-dependencies-root-{{ checksum "package.json" }} | ||
- v2-dependencies-root- | ||
|
||
- run: sudo npm -g uninstall yarn ; sudo npm -g install [email protected] | ||
- run: yarn install | ||
|
||
- save_cache: | ||
paths: | ||
- yarn.lock | ||
|
@@ -109,7 +133,7 @@ jobs: | |
# Create release. | ||
release: | ||
docker: | ||
- image: circleci/node:10.13.0 | ||
- image: circleci/node:10.15.0 | ||
|
||
steps: | ||
- checkout | ||
|
@@ -119,13 +143,14 @@ jobs: | |
- v2-dependencies-root-{{ checksum "package.json" }} | ||
- v2-dependencies-root- | ||
|
||
- run: sudo npm -g uninstall yarn ; sudo npm -g install [email protected] | ||
- run: yarn install | ||
- run: node tasks/createReleasePR.js | ||
|
||
# Publish the release to GitHub. | ||
publish: | ||
docker: | ||
- image: circleci/node:10.13.0 | ||
- image: circleci/node:10.15.0 | ||
|
||
steps: | ||
- checkout | ||
|
@@ -145,6 +170,8 @@ jobs: | |
git tag -d release-candidate | ||
git push --delete bot release-candidate | ||
npm -g uninstall yarn ; npm -g install [email protected] | ||
sudo tasks/build/installWine.sh | ||
yarn install | ||
|
@@ -182,9 +209,14 @@ workflows: | |
branches: | ||
ignore: release | ||
|
||
- testE2e: | ||
requires: | ||
- buildGaia | ||
# - testE2e: | ||
# requires: | ||
# - buildGaia | ||
# filters: | ||
# branches: | ||
# ignore: release | ||
|
||
- security: | ||
filters: | ||
branches: | ||
ignore: release | ||
|
@@ -194,7 +226,7 @@ workflows: | |
- changelogUpdated | ||
- buildGaia | ||
- testUnit | ||
- testE2e | ||
# - testE2e | ||
filters: | ||
branches: | ||
only: develop | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
localhost:8080 { | ||
cors | ||
|
||
header / { | ||
Access-Control-Allow-Origin "*" | ||
Access-Control-Allow-Methods "OPTIONS, HEAD, GET, POST, PUT, DELETE" | ||
Access-Control-Allow-Headers "*" | ||
} | ||
|
||
proxy / https://localhost:9070/ { | ||
insecure_skip_verify | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"name": "Cosmos Voyager", | ||
"default_network": "local-testnet", | ||
"denoms": ["stake", "photino"], | ||
"node_lcd": "http://localhost:8080", | ||
"node_rpc": "http://localhost:26657", | ||
"google_analytics_uid": "UA-51029217-3", | ||
"sentry_dsn": "https://4dee9f70a7d94cc0959a265c45902d84:[email protected]/288169", | ||
"node_halted_timeout": 120000, | ||
"block_timeout": 10000, | ||
"default_gas": 500000 | ||
} |
Oops, something went wrong.