From b7f759c123769f51af82ea68ad8e1ec8dca01fa0 Mon Sep 17 00:00:00 2001 From: Jean-Paul Calderone <exarkun@twistedmatrix.com> Date: Tue, 10 Sep 2019 16:16:37 -0400 Subject: [PATCH] Perhaps this image will work better. it uses bash, at least. --- .circleci/config.yml | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index aa797c9..11d7119 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -17,7 +17,7 @@ version: 2.1 jobs: test: docker: - - image: "nixos/nix:2.2.1" + - image: "nixorg/nix:circleci" environment: NIXPKGS_REV: "3c83ad6ac13b67101cc3e2e07781963a010c1624" @@ -28,28 +28,12 @@ jobs: command: | echo "export NIX_PATH=nixpkgs=https://github.com/NixOS/nixpkgs/archive/$NIXPKGS_REV.tar.gz >> $BASH_ENV" - - 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 - - restore_cache: name: "Restore Nix Store Paths" keys: - paymentserver-nix-store-v1-{{ .Environment.NIXPKGS_REV }} - paymentserver-nix-store-v1- - - run: - name: "Install Git" - command: | - # Required for the checkout step. - nix-env -i git openssh - - "checkout" - restore_cache: -- GitLab