make minimum number of BPs to vote for configurable (#104) #37
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: Ubuntu 22.04 | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - develop | |
| - "release/*" | |
| pull_request: | |
| types: [assigned, opened, synchronize, reopened, labeled] | |
| jobs: | |
| ubuntu-2204-test: | |
| name: Tests | |
| runs-on: ubuntu-22.04 | |
| timeout-minutes: 45 # stop hard-hangs | |
| concurrency: | |
| group: ubuntu-2204-${{ github.ref }} | |
| cancel-in-progress: true | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Runner snapshot | |
| run: | | |
| echo "Disk:" && df -h | |
| echo "Mem :" && free -h | |
| - name: Free up Disk Space | |
| run: | | |
| # Prune unused Docker objects (images, containers, volumes, and networks) | |
| docker system prune --all --force | |
| # Show disk space usage | |
| df -h | |
| - name: Build & tests | |
| env: | |
| PARALLEL: 2 | |
| MAKEFLAGS: -j2 | |
| DOCKER_BUILDKIT: 1 | |
| run: | | |
| set -euxo pipefail | |
| make dev-docker-all |