diff options
| -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 |
