-
Notifications
You must be signed in to change notification settings - Fork 5
93 lines (77 loc) · 2.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: Install Nix
uses: cachix/install-nix-action@v24
- name: Nix Format Check
run: nix fmt -- . --check
- name: Nix Syntax Check
run: nix flake check
build-plan:
# Save some computation. If the checks fail, don't build.
needs: checks
runs-on: ubuntu-latest
outputs:
attrs: ${{ steps.plan.outputs.ATTRS }}
steps:
- name: checkout
uses: actions/checkout@v4
- name: Install Nix
uses: cachix/install-nix-action@v24
with:
nix_path: nixpkgs=channel:nixos-23.11
- name: Build and Cache Attic
if: github.event_name != 'pull_request'
run: |
nix profile install github:zhaofengli/attic#attic
attic login --set-default lowrisc https://nix-cache.lowrisc.org/ ${{ secrets.NIX_CACHE_TOKEN }}
attic push public $(which attic)
- name: Generate Nix Build Plan
id: plan
run: |
REBUILD=()
echo '| Package | Status |' >> $GITHUB_STEP_SUMMARY
echo '|---------|--------|' >> $GITHUB_STEP_SUMMARY
for LINE in $(nix-shell -p nix-eval-jobs --run 'nix-eval-jobs --accept-flake-config --check-cache-status --flake .#packages.x86_64-linux'); do
ATTR=$(echo "$LINE" | jq -r .attr)
if echo "$LINE" | jq -e .isCached; then
echo "| $ATTR | ✅Cached |" >> $GITHUB_STEP_SUMMARY
else
REBUILD+=($ATTR)
echo "| $ATTR | ⏳Need Rebuild |" >> $GITHUB_STEP_SUMMARY
fi
done
echo 'ATTRS<<EOF' >> $GITHUB_OUTPUT
jq --null-input '$ARGS.positional' --args -- "${REBUILD[@]}" >> $GITHUB_OUTPUT
echo 'EOF' >> $GITHUB_OUTPUT
build:
needs: build-plan
runs-on: ubuntu-latest
strategy:
matrix:
attr: ${{fromJSON(needs.build-plan.outputs.attrs)}}
steps:
- name: checkout
uses: actions/checkout@v4
- name: Install Nix
uses: cachix/install-nix-action@v24
- name: Setup Cache
if: github.event_name != 'pull_request'
run: |
nix profile install github:zhaofengli/attic#attic
attic login --set-default lowrisc https://nix-cache.lowrisc.org/ ${{ secrets.NIX_CACHE_TOKEN }}
- name: Build
run: nix build ".#${{ matrix.attr }}" --accept-flake-config
- name: Upload Cache
if: github.event_name != 'pull_request'
run: |
attic push public result/