-
Notifications
You must be signed in to change notification settings - Fork 1
60 lines (55 loc) · 1.64 KB
/
ci.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
name: CI
on:
push:
# We don't want to wasted CI minutes on things already on main
branches-ignore:
- 'main'
jobs:
check_development:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ macos-13, macos-14, ubuntu-latest ]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- name: Test nix environment
run: nix develop
check_linux:
runs-on: ubuntu-latest
strategy:
matrix:
host: [ fat-controller, mum, patient-zero ]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- uses: DeterminateSystems/flake-checker-action@main
- name: Test system builds
run: |
nix build .#nixosConfigurations.${{ matrix.host }}.config.system.build.toplevel
check_x86_64-darwin:
runs-on: macos-13
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- name: Test machine
run: nix build .#darwinConfigurations.macbookpro.system
check_aarch64-darwin:
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: DeterminateSystems/nix-installer-action@main
- uses: DeterminateSystems/magic-nix-cache-action@main
- name: Test machine
run: nix build .#darwinConfigurations.AU-AM-1820.system