workflows: Stricter failure checks for hive tests (#14115) #22155
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: Consensus specification tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - 'release/**' | |
| pull_request: | |
| branches: | |
| - main | |
| - 'release/**' | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| - ready_for_review | |
| jobs: | |
| tests: | |
| strategy: | |
| matrix: | |
| # disable macos-11 until https://github.com/erigontech/erigon/issues/8789 | |
| os: [ ubuntu-22.04 ] # list of os: https://github.com/actions/virtual-environments | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.23' | |
| cache: ${{ contains(fromJSON('[ | |
| "refs/heads/release/2.60", | |
| "refs/heads/release/2.61", | |
| "refs/heads/main" | |
| ]'), github.ref) }} | |
| - name: Install dependencies on Linux | |
| if: runner.os == 'Linux' | |
| run: sudo apt update && sudo apt install build-essential | |
| - name: test-integration-caplin | |
| run: cd cl/spectest && make tests && make mainnet | |
| tests-windows: | |
| strategy: | |
| matrix: | |
| os: [ windows-2022 ] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: '1.23' | |
| cache: ${{ contains(fromJSON('[ | |
| "refs/heads/release/2.60", | |
| "refs/heads/release/2.61", | |
| "refs/heads/main" | |
| ]'), github.ref) }} | |
| - uses: actions/cache@v4 | |
| with: | |
| path: | | |
| C:\ProgramData\chocolatey\lib\mingw | |
| C:\ProgramData\chocolatey\lib\cmake | |
| key: chocolatey-${{ matrix.os }} | |
| - name: Install dependencies | |
| run: | | |
| choco upgrade mingw -y --no-progress --version 13.2.0 | |
| - name: test-integration-caplin | |
| run: cd ./cl/spectest/ && .\wmake.ps1 Tests Mainnet |