diff options
| author | Ophestra Umiker <cat@ophivana.moe> | 2024-12-18 20:32:40 +0900 |
|---|---|---|
| committer | Ophestra Umiker <cat@ophivana.moe> | 2024-12-18 20:32:40 +0900 |
| commit | 73aa285e8f36433a07f3b5bacd7859f84cfd652d (patch) | |
| tree | 46fda1a7797588a35d8d8442342ebcfd5021c9b9 | |
| parent | 6e87fc02ddd8a90b79c3a6353889348033f082f8 (diff) | |
workflows: upload nixos test output
Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
| -rw-r--r-- | .gitea/workflows/nix.yml | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/.gitea/workflows/nix.yml b/.gitea/workflows/nix.yml index 5054a597..3193db4b 100644 --- a/.gitea/workflows/nix.yml +++ b/.gitea/workflows/nix.yml @@ -23,4 +23,13 @@ jobs: enable_kvm: true - name: Run tests - run: nix --print-build-logs --experimental-features 'nix-command flakes' flake check --all-systems
\ No newline at end of file + run: | + nix --print-build-logs --experimental-features 'nix-command flakes' flake check --all-systems + nix build --out-link "result" --print-out-paths --print-build-logs .#checks.x86_64-linux.nixos-tests + + - name: Upload test output + uses: actions/upload-artifact@v3 + with: + name: "result" + path: result/* + retention-days: 1 |
