-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (37 loc) · 916 Bytes
/
build.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
jobs:
buildSystem:
name: Build system
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@main
with:
extra-conf: allow-import-from-derivation = true
- name: Use Cachix store
uses: cachix/cachix-action@v12
with:
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}
extraPullNames: e10,nix-community
name: e10
- run:
"nix build .#nixosConfigurations.${{ matrix.host }}.config.system.build.toplevel
--accept-flake-config --show-trace
"
strategy:
matrix:
host:
- builder
- controller
- dill
- gateway
- htpc
- matrix
- monitor
- omnibus
name: Build
"on":
push:
branches:
- main