Merge pull request #102 from cffls/release/3.2 #299
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: Unit tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - 'release/**' | |
| pull_request: | |
| branches: | |
| - '**' | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| - ready_for_review | |
| workflow_dispatch: | |
| jobs: | |
| linux: | |
| concurrency: | |
| group: >- | |
| ${{ | |
| (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/')) && | |
| format('{0}-{1}-{2}', github.workflow, matrix.os, github.run_id) || | |
| format('{0}-{1}-{2}', github.workflow, matrix.os, github.ref) | |
| }} | |
| cancel-in-progress: true | |
| if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }} | |
| strategy: | |
| matrix: | |
| # list of os: https://github.com/actions/virtual-environments | |
| os: | |
| - ubuntu-latest | |
| - macos-latest | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: '1.24' | |
| cache: ${{ contains(fromJSON('[ | |
| "refs/heads/release/2.60", | |
| "refs/heads/release/2.61", | |
| "refs/heads/release/3.0", | |
| "refs/heads/main" | |
| ]'), github.ref) }} | |
| - name: Install dependencies on Linux | |
| if: runner.os == 'Linux' | |
| run: sudo apt update && sudo apt install build-essential | |
| - name: Build | |
| run: make all | |
| - name: Reproducible build test | |
| run: | | |
| make erigon | |
| shasum -a256 ./build/bin/erigon > erigon1.sha256 | |
| make erigon | |
| shasum -a256 ./build/bin/erigon > erigon2.sha256 | |
| if ! cmp -s erigon1.sha256 erigon2.sha256; then | |
| echo >&2 "Reproducible build broken"; cat erigon1.sha256; cat erigon2.sha256; exit 1 | |
| fi | |
| - name: Test | |
| run: make test-short | |
| win: | |
| concurrency: | |
| group: >- | |
| ${{ | |
| (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/')) && | |
| format('{0}-{1}-{2}', github.workflow, matrix.os, github.run_id) || | |
| format('{0}-{1}-{2}', github.workflow, matrix.os, github.ref) | |
| }} | |
| cancel-in-progress: true | |
| if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }} | |
| strategy: | |
| matrix: | |
| os: [ windows-2025 ] | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: configure Pagefile | |
| uses: al-cheb/configure-pagefile-action@v1.4 | |
| with: | |
| minimum-size: 8GB | |
| - uses: actions/checkout@v5 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: '1.24' | |
| cache: ${{ contains(fromJSON('[ | |
| "refs/heads/release/2.60", | |
| "refs/heads/release/2.61", | |
| "refs/heads/release/3.0", | |
| "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: Build | |
| run: .\wmake.ps1 all | |
| - name: Test | |
| run: .\wmake.ps1 test-short | |
| - name: Test erigon-lib | |
| run: cd erigon-lib && make test-short |