|
19 | 19 | IMAGE_NAME: ibc-go-simd
|
20 | 20 |
|
21 | 21 | jobs:
|
22 |
| - determine-image-tag: |
23 |
| - if: ${{ !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' }} |
24 |
| - runs-on: ubuntu-latest |
25 |
| - outputs: |
26 |
| - simd-tag: ${{ steps.get-tag.outputs.simd-tag }} |
27 |
| - steps: |
28 |
| - - uses: actions/checkout@v3 |
29 |
| - - uses: actions/setup-go@v3 |
30 |
| - with: |
31 |
| - go-version: 1.18 |
32 |
| - - id: get-tag |
33 |
| - run: | |
34 |
| - tag=$(go run cmd/determine_simd_tag/main.go -pr "${{ github.event.pull_request.number }}" ) |
35 |
| - echo "Using tag $tag" |
36 |
| - echo "::set-output name=simd-tag::$tag" |
37 |
| - e2e: |
38 |
| - if: ${{ !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' }} |
39 |
| - needs: |
40 |
| - - determine-image-tag |
41 |
| - uses: ./.github/workflows/e2e-test-workflow-call.yml |
42 |
| - secrets: inherit |
43 |
| - with: |
44 |
| - build-and-push-docker-image: true |
45 |
| - chain-image: ghcr.io/cosmos/ibc-go-simd |
46 |
| - chain-a-tag: "${{ needs.determine-image-tag.outputs.simd-tag }}" |
47 |
| - chain-b-tag: "${{ needs.determine-image-tag.outputs.simd-tag }}" |
48 |
| - relayer-tag: "v2.0.0" |
49 |
| - chain-binary: "simd" |
50 |
| - # on regular PRs we won't run interchain account or upgrade tests. |
51 |
| - test-exclusions: "TestInterTxTestSuite,TestIncentivizedInterTxTestSuite,TestUpgradeTestSuite" |
| 22 | + determine-image-tag: |
| 23 | + if: ${{ !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' }} |
| 24 | + runs-on: ubuntu-latest |
| 25 | + outputs: |
| 26 | + simd-tag: ${{ steps.get-tag.outputs.simd-tag }} |
| 27 | + steps: |
| 28 | + - uses: actions/checkout@v3 |
| 29 | + - uses: actions/setup-go@v3 |
| 30 | + with: |
| 31 | + go-version: 1.19 |
| 32 | + - id: get-tag |
| 33 | + run: | |
| 34 | + tag=$(go run cmd/determine_simd_tag/main.go -pr "${{ github.event.pull_request.number }}" ) |
| 35 | + echo "Using tag $tag" |
| 36 | + echo "::set-output name=simd-tag::$tag" |
| 37 | + e2e: |
| 38 | + if: ${{ !github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]' }} |
| 39 | + needs: |
| 40 | + - determine-image-tag |
| 41 | + uses: ./.github/workflows/e2e-test-workflow-call.yml |
| 42 | + secrets: inherit |
| 43 | + with: |
| 44 | + build-and-push-docker-image: true |
| 45 | + chain-image: ghcr.io/cosmos/ibc-go-simd |
| 46 | + chain-a-tag: "${{ needs.determine-image-tag.outputs.simd-tag }}" |
| 47 | + chain-b-tag: "${{ needs.determine-image-tag.outputs.simd-tag }}" |
| 48 | + relayer-tag: "v2.0.0" |
| 49 | + chain-binary: "simd" |
| 50 | + # on regular PRs we won't run interchain account or upgrade tests. |
| 51 | + test-exclusions: "TestInterTxTestSuite,TestIncentivizedInterTxTestSuite,TestUpgradeTestSuite" |
0 commit comments