aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <[email protected]>2023-06-26 16:46:47 -0700
committerJohn MacFarlane <[email protected]>2023-06-26 16:46:47 -0700
commitf074b03b899cf2ca5e9574e17fcc9ab2a40019ec (patch)
tree74bfd22abc88d8c3b564b3b6f91d6ed985cf0ce2
parent43b7162a1e5746d25fab7328378a5b5d1609cb71 (diff)
Revert "Try adding magic nix cache to nix CI build."
This reverts commit 295c6b04852391a23372ccb9153c1ec115c2c303. This was actually slower than what we had before (14m on second run, as compared to 12m).
-rw-r--r--.github/workflows/ci.yml7
1 files changed, 3 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index a9d57ece3..447b0f878 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -144,10 +144,9 @@ jobs:
fail-fast: true
steps:
- uses: actions/checkout@v3
- - name: Install Nix
- uses: DeterminateSystems/nix-installer-action@v4
- - name: Run the Magic Nix Cache
- uses: DeterminateSystems/magic-nix-cache-action@v1
+ - uses: cachix/install-nix-action@v22
+ with:
+ nix_path: nixpkgs=channel:nixos-unstable
- run: |
nix-shell --run "cabal update && cabal test --disable-optimization"