ci: parallelize checks #74

Merged
jalil merged 1 commit from push-ltvyrqwqpoxz into main 2025-01-23 22:33:55 +01:00

View file

@ -4,15 +4,30 @@ jobs:
runs-on: nixos runs-on: nixos
steps: steps:
- uses: https://git.salame.cl/actions/checkout@v4 - uses: https://git.salame.cl/actions/checkout@v4
- run: nix --version - name: Build Package
- run: nix build --print-build-logs .# run: |
nix --version
nix build --print-build-logs .#
check: check:
needs: build # we use the built binaries in the checks needs: build # we use the built binaries in the checks
runs-on: nixos runs-on: nixos
strategy:
matrix:
check:
- treefmt
- clippy
- nextest
- module-ipv4-test
- module-ipv6-test
- module-nginx-test
steps: steps:
- uses: https://git.salame.cl/actions/checkout@v4 - uses: https://git.salame.cl/actions/checkout@v4
- run: nix --version - name: Check
- run: nix flake check --keep-going --verbose --print-build-logs run: |
set -x
nix --version
# shellcheck disable=SC2016
nix build --print-build-logs '.#checks.x86_64-linux.${{ matrix.check }}'
report-size: report-size:
runs-on: nixos runs-on: nixos
needs: build needs: build