diff options
author | Quentin Dufour <quentin@deuxfleurs.fr> | 2022-07-23 12:02:40 +0200 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2022-08-29 17:46:16 +0200 |
commit | 90a57fbc7e992cafbdd106616219a6c7efb09c7e (patch) | |
tree | 00c91150f3ed0725837ce9792e4aeb100bcbc387 | |
parent | b54a938724e5551f6436f551cafec3d1324a6260 (diff) | |
download | garage-90a57fbc7e992cafbdd106616219a6c7efb09c7e.tar.gz garage-90a57fbc7e992cafbdd106616219a6c7efb09c7e.zip |
Put log-lines in nix.conf
-rw-r--r-- | .drone.yml | 3 | ||||
-rw-r--r-- | nix/nix.conf | 1 |
2 files changed, 3 insertions, 1 deletions
@@ -46,7 +46,8 @@ steps: - name: nix_config path: /etc/nix commands: - - nix-build --no-build-output --option log-lines 100 --argstr target x86_64-unknown-linux-musl --arg release false --argstr git_version $DRONE_COMMIT + - nix-build --no-build-output --argstr target x86_64-unknown-linux-musl --arg release false --argstr git_version $DRONE_COMMIT + - nix-shell --attr rust --run "./script/not-dynamic.sh result/bin/garage" - name: unit + func tests image: nixpkgs/nix:nixos-21.05 diff --git a/nix/nix.conf b/nix/nix.conf index 871efb10..5a9de951 100644 --- a/nix/nix.conf +++ b/nix/nix.conf @@ -2,3 +2,4 @@ substituters = https://cache.nixos.org https://nix.web.deuxfleurs.fr trusted-public-keys = cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= nix.web.deuxfleurs.fr:eTGL6kvaQn6cDR/F9lDYUIP9nCVR/kkshYfLDJf1yKs= max-jobs = auto cores = 4 +log-lines = 200 |