Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing CircleCI deploy for Betanet and Stablenet #3077

Merged
merged 38 commits into from
Oct 15, 2021
Merged
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
367c46a
Removing all but windows from travis steps
algojack Oct 8, 2021
2e69ccd
Adding back all but integration tests
algojack Oct 8, 2021
3292374
Merge branch 'algorand:master' into master
algojack Oct 8, 2021
bddab95
Merge remote-tracking branch 'upstream/master'
algojack Oct 11, 2021
35bd30e
Part one for moving devnet deploy from travis to circleci
algojack Oct 12, 2021
fb9f206
Part two of moving devnet deploy from travis to circleci
algojack Oct 12, 2021
7e4f23e
Enabled deploy and fixed permisions on results dir
algojack Oct 12, 2021
fd637b2
Wrapping env variables in curly braces
algojack Oct 12, 2021
a84bcfa
Fixing a typo
algojack Oct 12, 2021
fee7ee1
switching from nightly tests to normal just for testing
algojack Oct 12, 2021
8e3ffad
Checking results folder
algojack Oct 12, 2021
6d8eec0
filtering out most jobs
algojack Oct 12, 2021
ea89299
filtering out most jobs
algojack Oct 12, 2021
f69fffa
Turning off more tests and checking more folders
algojack Oct 12, 2021
95c7d3f
Turning off more tests
algojack Oct 12, 2021
38f3130
creating results files before using them
algojack Oct 12, 2021
4749685
changed relative path to absolute
algojack Oct 12, 2021
59670a1
Removed sudo from mkdir build_dir
algojack Oct 12, 2021
f0824d7
Revert "Removed sudo from mkdir build_dir"
algojack Oct 12, 2021
8e79712
removed mkdir build_dir from verification step
algojack Oct 12, 2021
b4106b3
Removing extra workspace stuff
algojack Oct 13, 2021
b0c7d2a
consolidated deploy steps and disabled all but deploy
algojack Oct 13, 2021
b91b039
Added aws context
algojack Oct 13, 2021
2a1eb01
Removed s3_release_bucket env var pass
algojack Oct 13, 2021
cf2028b
Re-enabling arm64 and mac deploys
algojack Oct 13, 2021
0984b75
disabled release_test for mac and arm64
algojack Oct 13, 2021
1e3d749
re-enabled all jobs that were commented out for testing
algojack Oct 13, 2021
9bbf989
Fixed results dir and path
algojack Oct 13, 2021
9b0c5f4
Setting trigger to rel and hotfix branches
algojack Oct 14, 2021
49975ea
Added approval buttons
algojack Oct 14, 2021
9892ce5
Adding filter to approval job
algojack Oct 14, 2021
5fd5a15
Removed hotfix deploy
algojack Oct 14, 2021
000616d
Updated naming
algojack Oct 14, 2021
ad5f45c
Fixed environment variable
algojack Oct 14, 2021
210f386
Merge branch 'master' of github.com:algorand/go-algorand
algojack Oct 14, 2021
9e92a41
Merge branch 'master' into circleci-deploy-devnet
algojack Oct 14, 2021
dfde45a
Making sure e2e subs pass also before deploy is allowed
algojack Oct 14, 2021
0af2ece
Adding codegen verification as a requirement for upload
algojack Oct 14, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,8 @@ workflows:
- << matrix.platform >>_test_nightly_verification
- << matrix.platform >>_integration_nightly_verification
- << matrix.platform >>_e2e_expect_nightly_verification
- << matrix.platform >>_e2e_subs_nightly
- codegen_verification
filters:
branches:
only:
Expand Down Expand Up @@ -431,15 +433,18 @@ commands:
steps:
- run:
name: Upload binaries << parameters.platform >>
environment:
TRAVIS_BRANCH: ${CIRCLE_BRANCH}
command: |
export TRAVIS_BRANCH=${CIRCLE_BRANCH}
scripts/travis/deploy_packages.sh
- when:
condition:
equal: [ "amd64", << parameters.platform >> ]
steps:
- run: scripts/travis/test_release.sh
- run:
name: test_release.sh
command: |
export TRAVIS_BRANCH=${CIRCLE_BRANCH}
scripts/travis/test_release.sh

jobs:
codegen_verification:
Expand Down