From cc3b66dd612124f48cabc1a5bd45a21203d4d892 Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Thu, 13 Jun 2019 19:10:36 -0400
Subject: [PATCH] attempt to fix artifact upload

---
 .circleci/config.yml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/.circleci/config.yml b/.circleci/config.yml
index 2f672c3c..e8399c52 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -22,6 +22,7 @@ jobs:
       - run:
           name: "Install Git"
           command: |
+            # Required for the checkout step
             nix-env -i git openssh
 
       - "checkout"
@@ -29,6 +30,8 @@ jobs:
       - run:
           name: "Nix Build"
           command: |
+            # Required to upload artifacts
+            nix-env -i cacert
             nix-build
 
       - store_artifacts:
-- 
GitLab