chore(ci): match relay falcon config — consensus and mirror node versions #392
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Tests CI | |
| # ============================================================================= | |
| # TEMPORARY — v0.77 fix iteration only. REVERT BEFORE MERGE. | |
| # Reduced to a single suite so each push runs one ~5-min job instead of 14 | |
| # suites (most hanging to the job cap) on a serialized runner pool. To iterate a | |
| # different suite, change `testfilter` below. To restore the full 14-job matrix | |
| # + PublishResults before this PR is merged: | |
| # git checkout origin/main -- .github/workflows/tests.yml | |
| # ============================================================================= | |
| on: | |
| pull_request: | |
| branches: [main, release/**] | |
| push: | |
| branches: [main, release/**] | |
| tags: [v*] | |
| concurrency: | |
| group: tests-${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| checks: write | |
| pull-requests: write | |
| defaults: | |
| run: | |
| shell: bash | |
| jobs: | |
| HIP904Batch2: | |
| name: HIP904 Contract Test Suite Batch 2 | |
| uses: ./.github/workflows/test-workflow.yml | |
| with: | |
| testfilter: HIP904Batch2 |