workflows: cache nix store
All checks were successful
Tests / Go tests (push) Successful in 45s
Nix / NixOS tests (push) Successful in 1m11s

Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
This commit is contained in:
Ophestra 2024-12-18 23:20:25 +09:00
parent 141f2e3685
commit 90dd57f75d
Signed by: cat
SSH Key Fingerprint: SHA256:gQ67O0enBZ7UdZypgtspB2FDM1g3GVw8nX0XSdcFw8Q

View File

@ -22,6 +22,17 @@ jobs:
system-features = nixos-test benchmark big-parallel kvm system-features = nixos-test benchmark big-parallel kvm
enable_kvm: true enable_kvm: true
- name: Ensure environment
run: >-
apt-get update && apt-get install -y sqlite3
if: ${{ runner.os == 'Linux' }}
- name: Restore Nix store
uses: nix-community/cache-nix-action@v5
with:
primary-key: nix-${{ runner.os }}-${{ hashFiles('**/*.nix') }}
restore-prefixes-first-match: nix-${{ runner.os }}-
- name: Run tests - name: Run tests
run: | run: |
nix --print-build-logs --experimental-features 'nix-command flakes' flake check --all-systems nix --print-build-logs --experimental-features 'nix-command flakes' flake check --all-systems