73 lines
2.1 KiB
YAML
73 lines
2.1 KiB
YAML
# name: build
|
|
# on: push
|
|
# jobs:
|
|
# checks:
|
|
# uses: nixbuild/nixbuild-action/.github/workflows/ci-workflow.yml@v19
|
|
# with:
|
|
# nix_conf: |
|
|
# allow-import-from-derivation = true
|
|
# secrets:
|
|
# nixbuild_token: ${{ secrets.nixbuild_token }}
|
|
|
|
|
|
name: "build"
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches: [ "main" ]
|
|
|
|
jobs:
|
|
build-matrix:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
- name: Install Nix
|
|
uses: DeterminateSystems/nix-installer-action@main
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
extra-conf: "system-features = nixos-test benchmark big-parallel kvm"
|
|
- name: Setup Caching
|
|
uses: cachix/cachix-action@v14
|
|
with:
|
|
name: selfhostblocks
|
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
|
- name: Generate
|
|
id: generate-checks
|
|
run: |
|
|
echo dynamic_list= >> "$GITHUB_OUTPUT"
|
|
nix flake show --allow-import-from-derivation --json \
|
|
| jq -c '.["checks"]["x86_64-linux"] | keys' \
|
|
>> "$GITHUB_OUTPUT"
|
|
|
|
echo "$GITHUB_OUTPUT"
|
|
outputs:
|
|
matrix: ${{ steps.generate-matrix.outputs.dynamic_list }}
|
|
|
|
tests:
|
|
runs-on: ubuntu-latest
|
|
needs: [ "build-matrix" ]
|
|
strategy:
|
|
matrix:
|
|
test: ${{ fromJson(needs.build-matrix.outputs.matrix) }}
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
- name: Install Nix
|
|
uses: DeterminateSystems/nix-installer-action@main
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|
|
extra-conf: "system-features = nixos-test benchmark big-parallel kvm"
|
|
- name: Setup Caching
|
|
uses: cachix/cachix-action@v14
|
|
with:
|
|
name: selfhostblocks
|
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
|
- name: Build
|
|
run: |
|
|
nix build .#checks.x86_64-linux.${{ matrix.job }}
|
|
|
|
# nix run github:Mic92/nix-fast-build -- \
|
|
# --skip-cached --no-nom \
|
|
# --max-jobs 1 \
|
|
# --flake ".#checks.$(nix eval --raw --impure --expr builtins.currentSystem)"
|