diff options
author | Vincent Ambo <mail@tazj.in> | 2020-07-25T13·08+0100 |
---|---|---|
committer | Vincent Ambo <mail@tazj.in> | 2020-07-25T13·43+0100 |
commit | c194c5662b7a64047e469c27f6a5ac45b68e8d03 (patch) | |
tree | 11d7cd333a25a2583dbdc036fb4f96de5962d175 /tools/nixery | |
parent | bc9742f927dcd7d68abb3aadb0d578d2c6088ff3 (diff) |
fix(build): Don't use Cachix as the binary cache during builds
Permission changes in the Travis CI Nix builders have caused this to start failing, as the build user now has insufficient permissions to use caches. There may be a way to change the permissions instead, but in the meantime we will just cause things to rebuild.
Diffstat (limited to 'tools/nixery')
-rw-r--r-- | tools/nixery/.travis.yml | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tools/nixery/.travis.yml b/tools/nixery/.travis.yml index 72bbb90b6af2..674231217f69 100644 --- a/tools/nixery/.travis.yml +++ b/tools/nixery/.travis.yml @@ -12,7 +12,6 @@ before_script: - 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 - - cachix use nixery script: - test -z $(gofmt -l server/ build-image/) - nix-build --arg maxLayers 1 | cachix push nixery |