From 2b5cece9840250245c04aaa99025cce86501ff1f Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Mon, 1 May 2023 15:51:47 -0400 Subject: [PATCH] bust the cache fresh start --- .gitlab-ci.yml | 2 +- flake.nix | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e22644c..89fb733 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -35,7 +35,7 @@ cabal-build-and-test: # shortcoming of this approach is that the cache will grow without bounds # as our dependencies change. It would be nice if there were a way to # trim stale dependencies from it periodically. - key: "v0-cabal" + key: "v1-cabal" # Even if a build fails (eg because of a test suite failure or because the # job timed out because building things took too long), there will be diff --git a/flake.nix b/flake.nix index 153768b..cf11745 100644 --- a/flake.nix +++ b/flake.nix @@ -84,7 +84,7 @@ export PKG_CONFIG_PATH=${pkgs.lib.makeSearchPath "lib/pkgconfig" [pkgs.zlib.dev]} find . - ghc-pkg check --package-db .cabal/store/ghc-8.10.7/package.db + # ghc-pkg check --package-db .cabal/store/ghc-8.10.7/package.db cabal update hackage.haskell.org cabal run tests ''; -- GitLab