qa-tests: add summary in RPC Performance Tests Latest #36952
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 spec | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - 'release/**' | |
| pull_request: | |
| branches: | |
| - main | |
| - 'release/**' | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| - ready_for_review | |
| jobs: | |
| tests: | |
| strategy: | |
| matrix: | |
| # disable macos-15 until https://github.com/erigontech/erigon/issues/8789 | |
| os: [ ubuntu-24.04 ] # required check includes runner version. Do not change it only here. | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 1 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: '1.25' | |
| cache: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/') }} | |
| - name: Install dependencies on Linux | |
| if: runner.os == 'Linux' | |
| run: sudo apt update -y && sudo apt install -y build-essential | |
| - name: test-integration-caplin | |
| run: cd cl/spectest && make tests && make mainnet | |
| tests-windows: | |
| strategy: | |
| matrix: | |
| os: [ windows-2025 ] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 1 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: '1.25' | |
| cache: ${{ github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/') }} | |
| - name: test-integration-caplin | |
| run: cd ./cl/spectest/ && .\wmake.ps1 Tests Mainnet |