From e712f8eda723b3e403115ba093033374045010f2 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Mon, 16 Sep 2019 08:52:22 -0400 Subject: [PATCH] Get our source first so ristretto.nix is available for checksum --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f3c7462..841103e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -46,6 +46,9 @@ jobs: command: | echo "export NIX_PATH=nixpkgs=https://github.com/NixOS/nixpkgs/archive/$NIXPKGS_REV.tar.gz" >> $BASH_ENV + # Get *our* source code. + - "checkout" + - restore_cache: # Get all of Nix's state relating to the particular revision of # nixpkgs we're using. It will always be the same. CircleCI @@ -77,9 +80,6 @@ jobs: - paymentserver-nix-store-v1-3c83ad6ac13b67101cc3e2e07781963a010c1624- - paymentserver-nix-store-v1- - # Get *our* source code. - - "checkout" - - restore_cache: # Restore the cache of Stack's state. This will have all of the # compiled Haskell libraries we depend on and even the compiled -- GitLab