diff options
author | Vincent Ambo <tazjin@google.com> | 2020-10-27T11·42+0100 |
---|---|---|
committer | Vincent Ambo <mail@tazj.in> | 2020-10-27T12·16+0100 |
commit | ad0541940fe61181e2653c9e63f9d7cb0911a130 (patch) | |
tree | 723c50b37bfa1c40a9bc16303e92ddbd674bd833 /tools/nixery | |
parent | c194c5662b7a64047e469c27f6a5ac45b68e8d03 (diff) |
fix(build): Completely remove Cachix from build setup
Installing Cachix started failing on ARM64.
Diffstat (limited to 'tools/nixery')
-rw-r--r-- | tools/nixery/.travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/nixery/.travis.yml b/tools/nixery/.travis.yml index 674231217f69..ed715da14118 100644 --- a/tools/nixery/.travis.yml +++ b/tools/nixery/.travis.yml @@ -11,10 +11,10 @@ before_script: - mkdir test-files - echo ${GOOGLE_KEY} | base64 -d > test-files/key.json - echo ${GCS_SIGNING_PEM} | base64 -d > test-files/gcs.pem - - nix-env -f '<nixpkgs>' -iA cachix -A go + - nix-env -f '<nixpkgs>' -iA -A go script: - test -z $(gofmt -l server/ build-image/) - - nix-build --arg maxLayers 1 | cachix push nixery + - nix-build --arg maxLayers 1 # This integration test makes sure that the container image built # for Nixery itself runs fine in Docker, and that images pulled |