Skip to content

Commit

Permalink
Bumping CI
Browse files Browse the repository at this point in the history
  • Loading branch information
smickovskid committed Dec 21, 2023
1 parent bc2436f commit e400392
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions .github/workflows/e2e_testnet_daily.yml
Original file line number Diff line number Diff line change
Expand Up @@ -136,13 +136,17 @@ jobs:
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
ref: ${{ github.event.pull_request.head.sha || github.event.merge_group.head_sha }}
- name: Build Test Image
if: needs.changes.outputs.src == 'true'
uses: ./.github/actions/build-test-image
with:
QA_AWS_ROLE_TO_ASSUME: ${{ secrets.QA_AWS_ROLE_TO_ASSUME }}
QA_AWS_REGION: ${{ secrets.QA_AWS_REGION }}
QA_AWS_ACCOUNT_NUMBER: ${{ secrets.QA_AWS_ACCOUNT_NUMBER }}
- name: Build Test Image
if: needs.changes.outputs.src == 'true' && needs.solana-test-image-exists.outputs.exists == 'false'

Check failure on line 140 in .github/workflows/e2e_testnet_daily.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/e2e_testnet_daily.yml#L140

property "changes" is not defined in object type {e2e_custom_build_artifacts: {outputs: {}; result: string}} [expression]
Raw output
.github/workflows/e2e_testnet_daily.yml:140:13: property "changes" is not defined in object type {e2e_custom_build_artifacts: {outputs: {}; result: string}} [expression]

Check failure on line 140 in .github/workflows/e2e_testnet_daily.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/e2e_testnet_daily.yml#L140

property "solana-test-image-exists" is not defined in object type {e2e_custom_build_artifacts: {outputs: {}; result: string}} [expression]
Raw output
.github/workflows/e2e_testnet_daily.yml:140:52: property "solana-test-image-exists" is not defined in object type {e2e_custom_build_artifacts: {outputs: {}; result: string}} [expression]
uses: ./.github/actions/build-test-image
with:
tag: ${{ needs.get_solana_sha.outputs.sha }}

Check failure on line 143 in .github/workflows/e2e_testnet_daily.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/e2e_testnet_daily.yml#L143

property "get_solana_sha" is not defined in object type {e2e_custom_build_artifacts: {outputs: {}; result: string}} [expression]
Raw output
.github/workflows/e2e_testnet_daily.yml:143:20: property "get_solana_sha" is not defined in object type {e2e_custom_build_artifacts: {outputs: {}; result: string}} [expression]
artifacts_path: ${{ env.CONTRACT_ARTIFACTS_PATH }}
QA_AWS_ROLE_TO_ASSUME: ${{ secrets.QA_AWS_ROLE_TO_ASSUME }}
QA_AWS_REGION: ${{ secrets.QA_AWS_REGION }}
QA_AWS_ACCOUNT_NUMBER: ${{ secrets.QA_AWS_ACCOUNT_NUMBER }}
- run: echo "this exists so we don't have to run anything else if the build is skipped"
if: needs.changes.outputs.src == 'false' || needs.solana-test-image-exists.outputs.exists == 'true'

Check failure on line 149 in .github/workflows/e2e_testnet_daily.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/e2e_testnet_daily.yml#L149

property "changes" is not defined in object type {e2e_custom_build_artifacts: {outputs: {}; result: string}} [expression]
Raw output
.github/workflows/e2e_testnet_daily.yml:149:13: property "changes" is not defined in object type {e2e_custom_build_artifacts: {outputs: {}; result: string}} [expression]

Check failure on line 149 in .github/workflows/e2e_testnet_daily.yml

View workflow job for this annotation

GitHub Actions / actionlint

[actionlint] .github/workflows/e2e_testnet_daily.yml#L149

property "solana-test-image-exists" is not defined in object type {e2e_custom_build_artifacts: {outputs: {}; result: string}} [expression]
Raw output
.github/workflows/e2e_testnet_daily.yml:149:53: property "solana-test-image-exists" is not defined in object type {e2e_custom_build_artifacts: {outputs: {}; result: string}} [expression]

e2e_custom_run_daily_testnet_smoke_tests:
name: E2E Run Daily Smoke Tests
Expand Down

0 comments on commit e400392

Please sign in to comment.