Skip to content

Commit

Permalink
set env variables to be '' by default
Browse files Browse the repository at this point in the history
  • Loading branch information
bdemann committed Oct 9, 2024
1 parent 85bd45d commit 8c31c99
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/run-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,12 @@ jobs:
ETHEREUM_URL: ${{ secrets.ETHEREUM_URL }}
AZLE_IDENTITY_STORAGE_MODE: 'plaintext'
AZLE_END_TO_END_TEST_LINK_AZLE: ${{ matrix.azle_source == 'repo' }}
AZLE_IS_MAIN_BRANCH_PUSH: ''
AZLE_IS_MAIN_BRANCH_MERGE_FROM_RELEASE_PUSH: ''
AZLE_IS_RELEASE_BRANCH_PR: ''
AZLE_IS_FEATURE_BRANCH_PR: ''
AZLE_IS_FEATURE_BRANCH_DRAFT_PR: ''

strategy:
fail-fast: false # We want to see which example tests succeed and which ones fail, we don't want one example test to cancel the rest
matrix: # spins up one job per combination of test and code source (repo or npm).
Expand Down Expand Up @@ -48,11 +54,6 @@ jobs:
- id: check-conditions
run: |
echo "AZLE_IS_MAIN_BRANCH_PUSH: ${{ env.AZLE_IS_MAIN_BRANCH_PUSH }}"
echo "AZLE_IS_MAIN_BRANCH_MERGE_FROM_RELEASE_PUSH: ${{ env.AZLE_IS_MAIN_BRANCH_MERGE_FROM_RELEASE_PUSH }}"
echo "AZLE_IS_RELEASE_BRANCH_PR: ${{ env.AZLE_IS_RELEASE_BRANCH_PR }}"
echo "AZLE_IS_FEATURE_BRANCH_PR: ${{ env.AZLE_IS_FEATURE_BRANCH_PR }}"
echo "AZLE_IS_FEATURE_BRANCH_DRAFT_PR: ${{ env.AZLE_IS_FEATURE_BRANCH_DRAFT_PR }}"
echo "AZLE_IS_MAIN_BRANCH_PUSH: $AZLE_IS_MAIN_BRANCH_PUSH"
echo "AZLE_IS_MAIN_BRANCH_MERGE_FROM_RELEASE_PUSH: $AZLE_IS_MAIN_BRANCH_MERGE_FROM_RELEASE_PUSH"
echo "AZLE_IS_RELEASE_BRANCH_PR: $AZLE_IS_RELEASE_BRANCH_PR"
Expand Down

0 comments on commit 8c31c99

Please sign in to comment.