cmd/fpkg/test: nixos test fpkg install/start
All checks were successful
Test / Create distribution (push) Successful in 27s
Test / Fortify (push) Successful in 2m33s
Test / Data race detector (push) Successful in 3m25s
Test / Fpkg (push) Successful in 38m26s
Test / Flake checks (push) Successful in 54s

Signed-off-by: Ophestra <cat@gensokyo.uk>
This commit is contained in:
2025-02-26 12:44:04 +09:00
parent d7d2bd33ed
commit 12c6d66bfd
6 changed files with 269 additions and 0 deletions

View File

@@ -22,6 +22,23 @@ jobs:
path: result/*
retention-days: 1
fpkg:
name: Fpkg
runs-on: nix
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Run NixOS test
run: nix build --out-link "result" --print-out-paths --print-build-logs .#checks.x86_64-linux.fpkg
- name: Upload test output
uses: actions/upload-artifact@v3
with:
name: "fpkg-vm-output"
path: result/*
retention-days: 1
race:
name: Data race detector
runs-on: nix
@@ -43,6 +60,7 @@ jobs:
name: Flake checks
needs:
- fortify
- fpkg
- race
runs-on: nix
steps: