From 0ae2bf0c09338fb90b992eacf4bc69f8bbb71c4c Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Tue, 15 Jun 2021 06:33:43 -0400
Subject: [PATCH] make this apply to coverage step too

hope it does not break the build cachix setup step
---
 .circleci/config.yml | 18 ++++++++----------
 1 file changed, 8 insertions(+), 10 deletions(-)

diff --git a/.circleci/config.yml b/.circleci/config.yml
index 2a45c7a..049aaf3 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -144,6 +144,14 @@ jobs:
       # CACHIX_AUTH_TOKEN is manually set in the CircleCI web UI and allows us to push to CACHIX_NAME.
       CACHIX_NAME: "privatestorage-opensource"
 
+      # Specify a revision of PrivateStorageio/nixpkgs to run against.  This
+      # essentially pins the majority of the software involved in the build.
+      # This revision is selected arbitrarily (it's just new enough to define
+      # all of the PrivateStorage stuff that ZKAPAuthorizer depends on).  It's
+      # somewhat current as of the time of this comment.  We can bump it to a
+      # newer version when that makes sense.  Meanwhile, the platform won't
+      # shift around beneath us unexpectedly.
+      NIX_PATH: "nixpkgs=https://github.com/PrivateStorageio/nixpkgs/archive/730129887a84a8f84f3b78ffac7add72aeb551b6.tar.gz"
 
     steps:
       - run:
@@ -155,16 +163,6 @@ jobs:
       - "checkout"
 
       - run:
-          environment:
-            # Specify a revision of PrivateStorageio/nixpkgs to run against.
-            # This essentially pins the majority of the software involved in
-            # the build.  This revision is selected arbitrarily (it's just new
-            # enough to define all of the PrivateStorage stuff that
-            # ZKAPAuthorizer depends on).  It's somewhat current as of the
-            # time of this comment.  We can bump it to a newer version when
-            # that makes sense.  Meanwhile, the platform won't shift around
-            # beneath us unexpectedly.
-            NIX_PATH: "nixpkgs=https://github.com/PrivateStorageio/nixpkgs/archive/730129887a84a8f84f3b78ffac7add72aeb551b6.tar.gz"
           name: "Run Test Suite"
           command: |
             # Building the package has, as a side effect, running the test
-- 
GitLab