From 9d70f7babcacea6d793861a2cd0a3f8537311711 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Tue, 10 Sep 2019 15:50:13 -0400 Subject: [PATCH] Get the right CA certificates in place --- .circleci/config.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 98d0520..572120c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -23,6 +23,16 @@ jobs: NIX_PATH: "nixpkgs=https://github.com/NixOS/nixpkgs/archive/3c83ad6ac13b67101cc3e2e07781963a010c1624.tar.gz" steps: + - run: + name: "Install CA Certificates" + command: | + # Required for cache and artifact interactions. Though we use a + # nix image, it's actually an alpine base... The CircleCI cache + # management and artifact uploader don't know how to use the nix + # ca bundle we could install. + apk update + apk add ca-certificates + - run: name: "Install Git" command: | -- GitLab