-
Notifications
You must be signed in to change notification settings - Fork 9
50 lines (42 loc) · 1.03 KB
/
client_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
39
40
41
42
43
44
45
46
47
48
49
50
name: "[Client] Build"
on:
push:
branches: [ "master" ]
paths:
- .github/workflows/**
- client/**
- flake.nix
- flake.lock
pull_request:
branches: [ "master" ]
paths:
- .github/workflows/**
- client/**
- flake.nix
- flake.lock
permissions:
contents: read
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
lfs: true
- name: Install Nix
uses: cachix/install-nix-action@v26
with:
# Mostly to avoid GitHub rate limiting
extra_nix_config: |
access-tokens = github.com=${{ github.token }}
- name: Install Nix Cache
uses: DeterminateSystems/magic-nix-cache-action@main
- name: "[Client] Build"
run: |
nix build .#client
- name: "[Client] Tests"
run: |
nix develop .#ci --impure -c just client-build-ci
nix develop .#ci --impure -c just client-test-ci