Skip to content

Commit

Permalink
fix custom message in action summary for env e2e tests & make shellch…
Browse files Browse the repository at this point in the history
…eck happy
  • Loading branch information
Tofel committed Oct 20, 2023
1 parent a73f86c commit 27d94ba
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions .github/workflows/env-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ env:

jobs:
build_tests:
if: ${{ false }} #disable for now, until I know it's safe to try it
runs-on: ubuntu-latest
environment: integration
permissions:
Expand All @@ -38,12 +37,13 @@ jobs:
AWS_ROLE_TO_ASSUME: ${{ secrets.QA_AWS_ROLE_TO_ASSUME }}
- name: Base Image Built
run: |
cat << EOF
### chainlink image used for this test run :link: >>$GITHUB_STEP_SUMMARY
${{ env.CHAINLINK_VERSION }} >>$GITHUB_STEP_SUMMARY
### test-base-image image tag for this test run :ship:" >>$GITHUB_STEP_SUMMARY
ci.${{ github.sha }} >>$GITHUB_STEP_SUMMARY
EOF
# shellcheck disable=SC2086
cat <<EOT >>$GITHUB_STEP_SUMMARY
### chainlink image used for this test run :link:"
$(${{ env.CHAINLINK_VERSION }})
### test-base-image image tag for this test run :ship:
$(ci.${{ github.sha }})
EOT
- name: Build Test Runner
uses: smartcontractkit/chainlink-github-actions/docker/build-push@ce87f8986ca18336cc5015df75916c2ec0a7c4b3 # v2.1.2
with:
Expand All @@ -56,10 +56,11 @@ jobs:
AWS_ROLE_TO_ASSUME: ${{ secrets.QA_AWS_ROLE_TO_ASSUME }}
- name: Test Image Built
run: |
cat << EOF
### chainlink-env-tests image tag for this test run :ship: >>$GITHUB_STEP_SUMMARY
ci.${{ github.sha }} >>$GITHUB_STEP_SUMMARY
EOF
# shellcheck disable=SC2086
cat <<EOT >>$GITHUB_STEP_SUMMARY
### chainlink-env-tests image tag for this test run :ship:
$(ci.${{ github.sha }})
EOT
e2e_tests:
runs-on: ubuntu-latest
environment: integration
Expand Down

0 comments on commit 27d94ba

Please sign in to comment.