forked from wimpysworld/nix-config
-
Notifications
You must be signed in to change notification settings - Fork 0
479 lines (460 loc) · 19.6 KB
/
Copy pathbuilder.yml
File metadata and controls
479 lines (460 loc) · 19.6 KB
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
name: Flake Builder 🏗️
on:
pull_request:
push:
branches:
- main
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
# ──────────────────────────────────────────────
# Inventory: discover all flake outputs
# ──────────────────────────────────────────────
inventory:
name: Inventory 📋
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
outputs:
devshells: ${{ steps.inventory.outputs.devshells }}
packages: ${{ steps.inventory.outputs.packages }}
nixos: ${{ steps.inventory.outputs.nixos }}
darwin: ${{ steps.inventory.outputs.darwin }}
orphan_homes: ${{ steps.inventory.outputs.orphan_homes }}
has_devshells: ${{ steps.inventory.outputs.has_devshells }}
has_packages: ${{ steps.inventory.outputs.has_packages }}
has_nixos: ${{ steps.inventory.outputs.has_nixos }}
has_darwin: ${{ steps.inventory.outputs.has_darwin }}
has_orphan_homes: ${{ steps.inventory.outputs.has_orphan_homes }}
steps:
- uses: actions/checkout@v6
- uses: wimpysworld/nothing-but-nix@main
with:
hatchet-protocol: "holster"
- uses: DeterminateSystems/determinate-nix-action@v3
with:
extra-conf: |
eval-cores = 0
- uses: DeterminateSystems/flakehub-cache-action@v3
- name: Inventory
id: inventory
run: bash home-manager/_mixins/scripts/flake-inventory/flake-inventory.sh
# ──────────────────────────────────────────────
# DevShells & Formatter (per-platform)
# ──────────────────────────────────────────────
devshells:
name: DevShells 🐚 (${{ matrix.target.system }})
needs: inventory
if: needs.inventory.outputs.has_devshells == 'true'
runs-on: ${{ matrix.target.runner }}
permissions:
id-token: write
contents: read
strategy:
fail-fast: false
matrix:
target: ${{ fromJSON(needs.inventory.outputs.devshells) }}
steps:
- uses: actions/checkout@v6
- uses: wimpysworld/nothing-but-nix@main
if: contains(matrix.target.system, 'linux')
with:
hatchet-protocol: "holster"
- uses: DeterminateSystems/determinate-nix-action@v3
with:
extra-conf: |
eval-cores = 0
- uses: DeterminateSystems/flakehub-cache-action@v3
- name: Build devShells & formatter
env:
SYSTEM: ${{ matrix.target.system }}
SHELLS_JSON: ${{ toJSON(matrix.target.shells) }}
HAS_FORMATTER: ${{ matrix.target.formatter }}
run: |
FAILED=()
BUILT=0
SKIPPED=0
# Build each devShell, checking evaluability first.
while IFS= read -r shell; do
[ -z "${shell}" ] && continue
ATTR="devShells.${SYSTEM}.${shell}"
if nix eval ".#${ATTR}.drvPath" --raw --no-write-lock-file >/dev/null 2>&1; then
echo "🔨 Building ${ATTR}"
if nix build ".#${ATTR}" --no-link -L; then
echo "✅ Built ${ATTR}"
BUILT=$((BUILT + 1))
else
echo "❌ Failed to build ${ATTR}" >&2
FAILED+=("${ATTR}")
fi
else
echo "⏭️ Skipping ${ATTR} (not evaluable for ${SYSTEM})"
SKIPPED=$((SKIPPED + 1))
fi
done < <(echo "${SHELLS_JSON}" | jq -r '.[]')
# Build formatter if present.
if [ "${HAS_FORMATTER}" = "true" ]; then
ATTR="formatter.${SYSTEM}"
echo "🔨 Building ${ATTR}"
if nix build ".#${ATTR}" --no-link -L; then
echo "✅ Built ${ATTR}"
BUILT=$((BUILT + 1))
else
echo "❌ Failed to build ${ATTR}" >&2
FAILED+=("${ATTR}")
fi
fi
echo ""
echo "Built: ${BUILT}, Skipped: ${SKIPPED}, Failed: ${#FAILED[@]}"
if [ "${#FAILED[@]}" -gt 0 ]; then
echo "Failed outputs:"
for f in "${FAILED[@]}"; do
echo " ✗ ${f}"
done
exit 1
fi
# ──────────────────────────────────────────────
# Packages (per-platform)
# ──────────────────────────────────────────────
packages:
name: Packages 📦 (${{ matrix.target.system }})
needs: inventory
if: needs.inventory.outputs.has_packages == 'true'
runs-on: ${{ matrix.target.runner }}
permissions:
id-token: write
contents: read
strategy:
fail-fast: false
matrix:
target: ${{ fromJSON(needs.inventory.outputs.packages) }}
steps:
- uses: actions/checkout@v6
- uses: wimpysworld/nothing-but-nix@main
if: contains(matrix.target.system, 'linux')
with:
hatchet-protocol: "holster"
- uses: DeterminateSystems/determinate-nix-action@v3
with:
extra-conf: |
eval-cores = 0
- uses: DeterminateSystems/flakehub-cache-action@v3
- name: Prefetch proprietary packages 📦
if: contains(matrix.target.system, 'linux')
env:
CIDER_DOWNLOAD_URL: ${{ secrets.CIDER_DOWNLOAD_URL }}
PICO8_DOWNLOAD_URL: ${{ secrets.PICO8_DOWNLOAD_URL }}
run: |
if [ -n "${CIDER_DOWNLOAD_URL}" ]; then
nix-prefetch-url --name "cider-v3.1.8-linux-x64.deb" "${CIDER_DOWNLOAD_URL}" || echo "⚠️ Cider prefetch failed"
fi
if [ -n "${PICO8_DOWNLOAD_URL}" ]; then
nix-prefetch-url --name "pico-8_0.2.7_amd64.zip" "${PICO8_DOWNLOAD_URL}" || echo "⚠️ PICO-8 prefetch failed"
fi
- name: Build packages
env:
SYSTEM: ${{ matrix.target.system }}
PACKAGES_JSON: ${{ toJSON(matrix.target.packages) }}
run: |
FAILED=()
BUILT=0
SKIPPED=0
SUMMARY_ROWS=()
while IFS= read -r name; do
[ -z "${name}" ] && continue
ATTR="packages.${SYSTEM}.${name}"
# Check whether the package evaluates for this platform.
if ! nix eval ".#${ATTR}.drvPath" --raw --no-write-lock-file >/dev/null 2>&1; then
echo "⏭️ Skipping ${ATTR} (not evaluable for ${SYSTEM})"
SKIPPED=$((SKIPPED + 1))
SUMMARY_ROWS+=("| ${name} | ⏭️ Skipped |")
continue
fi
# Check hydraPlatforms; skip if explicitly set to empty.
hydra_platforms=$(nix eval ".#${ATTR}.meta.hydraPlatforms" --json --no-write-lock-file 2>/dev/null || echo "null")
if [ "${hydra_platforms}" = "[]" ]; then
echo "⏭️ Skipping ${ATTR} (excluded from CI via hydraPlatforms)"
SKIPPED=$((SKIPPED + 1))
SUMMARY_ROWS+=("| ${name} | ⏭️ Skipped |")
continue
fi
echo "🔨 Building ${ATTR}"
if nix build ".#${ATTR}" --no-link -L; then
echo "✅ Built ${ATTR}"
BUILT=$((BUILT + 1))
SUMMARY_ROWS+=("| ${name} | ✅ Built |")
else
echo "❌ Failed to build ${ATTR}" >&2
FAILED+=("${ATTR}")
SUMMARY_ROWS+=("| ${name} | ❌ Failed |")
fi
done < <(echo "${PACKAGES_JSON}" | jq -r '.[]')
# Write Job Summary
{
printf "## Packages 📦 (%s)\n\n" "${SYSTEM}"
printf "| Package | Status |\n"
printf "|---------|--------|\n"
for row in "${SUMMARY_ROWS[@]}"; do
printf "%s\n" "${row}"
done
printf "\n**Built: %d, Skipped: %d, Failed: %d**\n" "${BUILT}" "${SKIPPED}" "${#FAILED[@]}"
} >> "$GITHUB_STEP_SUMMARY"
echo ""
echo "Built: ${BUILT}, Skipped: ${SKIPPED}, Failed: ${#FAILED[@]}"
if [ "${#FAILED[@]}" -gt 0 ]; then
echo "Failed outputs:"
for f in "${FAILED[@]}"; do
echo " ✗ ${f}"
done
exit 1
fi
# ──────────────────────────────────────────────
# NixOS Configurations (per-host)
# ──────────────────────────────────────────────
nixos:
name: NixOS 🐧 ${{ matrix.target.name }}
needs: inventory
if: needs.inventory.outputs.has_nixos == 'true'
runs-on: ${{ matrix.target.runner }}
permissions:
id-token: write
contents: read
strategy:
fail-fast: false
matrix:
target: ${{ fromJSON(needs.inventory.outputs.nixos) }}
steps:
- uses: actions/checkout@v6
- uses: wimpysworld/nothing-but-nix@main
with:
hatchet-protocol: "holster"
- uses: DeterminateSystems/determinate-nix-action@v3
with:
extra-conf: |
eval-cores = 0
- uses: DeterminateSystems/flakehub-cache-action@v3
- name: Prefetch proprietary packages 📦
env:
CIDER_DOWNLOAD_URL: ${{ secrets.CIDER_DOWNLOAD_URL }}
PICO8_DOWNLOAD_URL: ${{ secrets.PICO8_DOWNLOAD_URL }}
run: |
if [ -n "${CIDER_DOWNLOAD_URL}" ]; then
nix-prefetch-url --name "cider-v3.1.8-linux-x64.deb" "${CIDER_DOWNLOAD_URL}" || echo "⚠️ Cider prefetch failed"
fi
if [ -n "${PICO8_DOWNLOAD_URL}" ]; then
nix-prefetch-url --name "pico-8_0.2.7_amd64.zip" "${PICO8_DOWNLOAD_URL}" || echo "⚠️ PICO-8 prefetch failed"
fi
- name: Build NixOS ${{ matrix.target.name }}
run: |
nix build ".#nixosConfigurations.${{ matrix.target.name }}.config.system.build.toplevel" --no-link -L
- name: Build Home ${{ matrix.target.home }}
if: matrix.target.home != ''
run: |
nix build ".#homeConfigurations.\"${{ matrix.target.home }}\".activationPackage" --no-link -L
# ──────────────────────────────────────────────
# Darwin Configurations (per-host)
# ──────────────────────────────────────────────
darwin:
name: Darwin 🍏 ${{ matrix.target.name }}
needs: inventory
if: needs.inventory.outputs.has_darwin == 'true'
runs-on: ${{ matrix.target.runner }}
permissions:
id-token: write
contents: read
strategy:
fail-fast: false
matrix:
target: ${{ fromJSON(needs.inventory.outputs.darwin) }}
steps:
- uses: actions/checkout@v6
- uses: DeterminateSystems/determinate-nix-action@v3
with:
extra-conf: |
eval-cores = 0
- uses: DeterminateSystems/flakehub-cache-action@v3
- name: Build Darwin ${{ matrix.target.name }}
run: |
nix build ".#darwinConfigurations.${{ matrix.target.name }}.config.system.build.toplevel" --no-link -L
- name: Build Home ${{ matrix.target.home }}
if: matrix.target.home != ''
run: |
nix build ".#homeConfigurations.\"${{ matrix.target.home }}\".activationPackage" --no-link -L
# ──────────────────────────────────────────────
# Orphan Home Configurations (lima, wsl, gaming)
# ──────────────────────────────────────────────
orphan-homes:
name: Home 🏠 ${{ matrix.target.name }}
needs: inventory
if: needs.inventory.outputs.has_orphan_homes == 'true'
runs-on: ${{ matrix.target.runner }}
permissions:
id-token: write
contents: read
strategy:
fail-fast: false
matrix:
target: ${{ fromJSON(needs.inventory.outputs.orphan_homes) }}
steps:
- uses: actions/checkout@v6
- uses: wimpysworld/nothing-but-nix@main
with:
hatchet-protocol: "holster"
- uses: DeterminateSystems/determinate-nix-action@v3
with:
extra-conf: |
eval-cores = 0
- uses: DeterminateSystems/flakehub-cache-action@v3
- name: Prefetch proprietary packages 📦
if: contains(matrix.target.runner, 'ubuntu')
env:
CIDER_DOWNLOAD_URL: ${{ secrets.CIDER_DOWNLOAD_URL }}
PICO8_DOWNLOAD_URL: ${{ secrets.PICO8_DOWNLOAD_URL }}
run: |
if [ -n "${CIDER_DOWNLOAD_URL}" ]; then
nix-prefetch-url --name "cider-v3.1.8-linux-x64.deb" "${CIDER_DOWNLOAD_URL}" || echo "⚠️ Cider prefetch failed"
fi
if [ -n "${PICO8_DOWNLOAD_URL}" ]; then
nix-prefetch-url --name "pico-8_0.2.7_amd64.zip" "${PICO8_DOWNLOAD_URL}" || echo "⚠️ PICO-8 prefetch failed"
fi
- name: Build Home ${{ matrix.target.name }}
run: |
nix build ".#homeConfigurations.\"${{ matrix.target.name }}\".activationPackage" --no-link -L
# ──────────────────────────────────────────────
# Sentinel: gate builds and derive release version
# ──────────────────────────────────────────────
sentinel:
name: Sentinel 👁️
needs: [devshells, packages, nixos, darwin, orphan-homes]
if: always()
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
outputs:
ver: ${{ steps.version.outputs.ver }}
publish_ver: ${{ steps.version.outputs.publish_ver }}
steps:
- name: Check build results
run: |
results='${{ toJSON(needs.*.result) }}'
echo "Job results: ${results}"
if echo "${results}" | jq -e 'any(. == "failure" or . == "cancelled")' > /dev/null 2>&1; then
echo "❌ One or more build jobs failed or were cancelled"
exit 1
fi
echo "✅ All build jobs passed (or were skipped)"
- uses: actions/checkout@v6
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
- uses: DeterminateSystems/determinate-nix-action@v3
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
with:
extra-conf: |
eval-cores = 0
- uses: DeterminateSystems/flakehub-cache-action@v3
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
- name: Derive version
id: version
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
run: |
# Extract NixOS version (e.g. 25.11.20260211.6c5e707) and take first 3
# dot-separated components, then strip leading zeros for semver compliance
NIXOS_VER=$(nix eval .#nixosConfigurations.nihilus.config.system.nixos.version --raw)
VER=$(echo "${NIXOS_VER}" | cut -d'.' -f1-3 | sed -E 's/\b0+([1-9])/\1/g')
PUBLISH_VER="${VER}$(date -u +%H)"
echo "ver=${VER}" >> "$GITHUB_OUTPUT"
echo "publish_ver=${PUBLISH_VER}" >> "$GITHUB_OUTPUT"
echo "📌 Version: ${VER}"
echo "📌 Publish version: ${PUBLISH_VER}"
# ──────────────────────────────────────────────
# Publish to FlakeHub (after all builds pass)
# ──────────────────────────────────────────────
publish:
name: Publish FlakeHub ❄️
needs: [sentinel]
if: github.repository_owner == 'wimpysworld' && needs.sentinel.outputs.publish_ver != ''
runs-on: ubuntu-latest
timeout-minutes: 30
permissions:
id-token: write
contents: read
steps:
- uses: actionhippie/swap-space@v1
with:
size: 16G
- uses: actions/checkout@v6
- uses: DeterminateSystems/determinate-nix-action@v3
with:
extra-conf: |
eval-cores = 0
- uses: DeterminateSystems/flakehub-cache-action@v3
# Use fork with OIDC fix until upstream merges:
# https://github.com/DeterminateSystems/flakehub-push/pull/275
- name: Build flakehub-push 🔨
run: |
nix build github:flexiondotorg/flakehub-push/oidc-order#packages.x86_64-linux.default -L
- uses: DeterminateSystems/flakehub-push@v6
with:
tag: v${{ needs.sentinel.outputs.publish_ver }}
visibility: public
include-output-paths: true
log-directives: flakehub_push=debug
source-binary: result/bin/flakehub-push
# ──────────────────────────────────────────────
# Release ISO (after NixOS builds pass)
# ──────────────────────────────────────────────
release:
name: Release ISO 📀
needs: [sentinel]
if: github.repository_owner == 'wimpysworld' && needs.sentinel.outputs.ver != ''
runs-on: ubuntu-latest
permissions:
id-token: write
contents: write
steps:
- uses: actions/checkout@v6
- name: Check existing release 🔍
id: check-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
if gh release view "v${{ needs.sentinel.outputs.ver }}" --repo "${{ github.repository }}" >/dev/null 2>&1; then
echo "exists=true" >> "$GITHUB_OUTPUT"
echo "Release v${{ needs.sentinel.outputs.ver }} already exists; skipping ISO build"
else
echo "exists=false" >> "$GITHUB_OUTPUT"
echo "Release v${{ needs.sentinel.outputs.ver }} not found; proceeding with ISO build"
fi
- uses: wimpysworld/nothing-but-nix@main
if: steps.check-release.outputs.exists == 'false'
with:
hatchet-protocol: "holster"
root-safe-haven: "10240"
mnt-safe-haven: "10240"
- uses: DeterminateSystems/determinate-nix-action@v3
if: steps.check-release.outputs.exists == 'false'
with:
extra-conf: |
eval-cores = 0
- uses: DeterminateSystems/flakehub-cache-action@v3
if: steps.check-release.outputs.exists == 'false'
- name: Build ISO 💿️
if: steps.check-release.outputs.exists == 'false'
id: build-iso
run: |
nix build .#nixosConfigurations.nihilus.config.system.build.isoImage -L
ISO=$(head -n1 result/nix-support/hydra-build-products | cut -d'/' -f6)
# Stage ISO for release upload; GitHub auto-generates sha256 digests
mkdir -p iso
sudo mv "result/iso/${ISO}" "iso/${ISO}"
- name: Release ISO 🎁
if: steps.check-release.outputs.exists == 'false'
uses: softprops/action-gh-release@v2
with:
tag_name: v${{ needs.sentinel.outputs.ver }}
files: iso/*
generate_release_notes: true
make_latest: true