From 80f72952eb786a4dd0dc49f3ebc398ce7f52c0cc Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Fri, 14 Jun 2019 08:08:04 -0400 Subject: [PATCH] try apk instead --- .circleci/config.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 0162d310..ad409e88 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -30,9 +30,12 @@ jobs: - run: name: "Nix Build" command: | - # Required to upload artifacts - nix-env -i nss-cacert nix-build + # Required to upload artifacts. Though we use a nix image, it's + # actually an alpine base... The CircleCI artifact uploader + # doesn't know how to use the nix ca bundle we could install. + apk update + apk add ca-certificates - store_artifacts: path: "result/docs" -- GitLab