-
Notifications
You must be signed in to change notification settings - Fork 2
45 lines (38 loc) · 1.38 KB
/
check.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: nix flake check
on: push
jobs:
get-matrices:
runs-on: [self-hosted, nix]
outputs:
server-matrix: ${{ steps.set-server-matrix.outputs.matrix }}
check-matrix: ${{ steps.set-check-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v4
- id: set-server-matrix
run: echo "matrix=$(nix eval --json .#server-matrix.x86_64-linux)" >> $GITHUB_OUTPUT
- id: set-check-matrix
run: echo "matrix=$(nix eval --json .#check-matrix.x86_64-linux)" >> $GITHUB_OUTPUT
check:
needs: get-matrices
name: check ${{ matrix.check }}
runs-on: [self-hosted, nix]
strategy:
fail-fast: false
# this matrix consists of the names of all checks defined in flake.nix
matrix: ${{fromJson(needs.get-matrices.outputs.check-matrix)}}
steps:
- uses: actions/checkout@v4
- name: check
run: nix build -L .#checks.x86_64-linux.${{ matrix.check }}
build-profiles:
needs: get-matrices
name: build ${{ matrix.server }} profiles
runs-on: [self-hosted, nix]
strategy:
fail-fast: false
# this matrix consists of the names of all servers located in the ./servers directory
matrix: ${{fromJson(needs.get-matrices.outputs.server-matrix)}}
steps:
- uses: actions/checkout@v4
- name: build
run: nix build -L .#deploy.nodes.${{ matrix.server }}.profiles.system.path