name: Consensus specification tests on: push: branches: - devel - alpha - 'release/**' pull_request: branches: - devel - alpha - 'release/**' types: - opened - reopened - synchronize - ready_for_review jobs: tests: strategy: matrix: # disable macos-11 until https://github.com/ledgerwatch/erigon/issues/8789 os: [ ubuntu-22.04 ] # list of os: https://github.com/actions/virtual-environments runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3 - uses: actions/setup-go@v4 with: go-version: '1.20' - 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@v3 - uses: actions/setup-go@v4 with: go-version: '1.20' - uses: actions/cache@v3 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 choco install cmake -y --no-progress --version 3.27.8 - name: test-integration-caplin run: cd ./cl/spectest/ && .\wmake.ps1 Tests Mainnet