Skip to content

make minimum number of BPs to vote for configurable (#104) #37

make minimum number of BPs to vote for configurable (#104)

make minimum number of BPs to vote for configurable (#104) #37

Workflow file for this run

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