Skip to content

Commit a016ed3

Browse files
algojackcce
authored andcommitted
Fixing CircleCI deploy for Betanet and Stablenet (algorand#3077)
Noticed our environment passing variable is not working as intended, implemented a different way of passing it.
1 parent 3792420 commit a016ed3

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.circleci/config.yml

+8-3
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,8 @@ workflows:
157157
- << matrix.platform >>_test_nightly_verification
158158
- << matrix.platform >>_integration_nightly_verification
159159
- << matrix.platform >>_e2e_expect_nightly_verification
160+
- << matrix.platform >>_e2e_subs_nightly
161+
- codegen_verification
160162
filters:
161163
branches:
162164
only:
@@ -431,15 +433,18 @@ commands:
431433
steps:
432434
- run:
433435
name: Upload binaries << parameters.platform >>
434-
environment:
435-
TRAVIS_BRANCH: ${CIRCLE_BRANCH}
436436
command: |
437+
export TRAVIS_BRANCH=${CIRCLE_BRANCH}
437438
scripts/travis/deploy_packages.sh
438439
- when:
439440
condition:
440441
equal: [ "amd64", << parameters.platform >> ]
441442
steps:
442-
- run: scripts/travis/test_release.sh
443+
- run:
444+
name: test_release.sh
445+
command: |
446+
export TRAVIS_BRANCH=${CIRCLE_BRANCH}
447+
scripts/travis/test_release.sh
443448
444449
jobs:
445450
codegen_verification:

0 commit comments

Comments
 (0)