-
-
Notifications
You must be signed in to change notification settings - Fork 6
36 lines (34 loc) · 931 Bytes
/
nix.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
name: Nix
on:
push:
branches:
- 'main'
- 'dev'
- 'dev-*'
jobs:
default:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v22
- uses: cachix/cachix-action@v12
with:
name: typhon
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- run: nix build -L
- run: nix build -L .#typhon-webapp
- run: nix build -L .#checks.x86_64-linux.api
- run: nix build -L .#checks.x86_64-linux.formatted
legacy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@v22
- uses: cachix/cachix-action@v12
with:
name: typhon
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
- run: nix-build nix/packages -A typhon
- run: nix-build nix/packages -A typhon-webapp
- run: nix-build nix/checks -A api
- run: nix-build nix/checks -A formatted