Skip to content
Snippets Groups Projects
Commit 9caa15d6 authored by Jean-Paul Calderone's avatar Jean-Paul Calderone
Browse files

Get ca-certificates earlier

parent 4e1de2db
No related branches found
No related tags found
No related merge requests found
...@@ -19,6 +19,16 @@ jobs: ...@@ -19,6 +19,16 @@ jobs:
docker: docker:
- image: "nixos/nix:2.2.1" - image: "nixos/nix:2.2.1"
steps: 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 doesn't know how to use the nix
# ca bundle we could install.
apk update
apk add ca-certificates
- run: - run:
name: "Install Git" name: "Install Git"
command: | command: |
...@@ -35,11 +45,6 @@ jobs: ...@@ -35,11 +45,6 @@ jobs:
name: "Nix Build" name: "Nix Build"
command: | command: |
nix-build 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
- save_cache: - save_cache:
key: "v1-nix-store" key: "v1-nix-store"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment