diff options
author | Alex Auvolat <lx@deuxfleurs.fr> | 2025-02-01 19:58:36 +0100 |
---|---|---|
committer | Alex Auvolat <lx@deuxfleurs.fr> | 2025-02-01 19:58:36 +0100 |
commit | 568c4954e990a12967d9a07c398b2511d8d4df17 (patch) | |
tree | affe25d9c98cd107e4b97814e34b1c5957440ea0 /.woodpecker | |
parent | fe937c290195e5451f9e533e02664548817e6e13 (diff) | |
parent | 4dc2bc337f10be616a141ba8b52564038ef3ae41 (diff) | |
download | garage-568c4954e990a12967d9a07c398b2511d8d4df17.tar.gz garage-568c4954e990a12967d9a07c398b2511d8d4df17.zip |
Merge branch 'main' into next-v2
Diffstat (limited to '.woodpecker')
-rw-r--r-- | .woodpecker/debug.yaml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.woodpecker/debug.yaml b/.woodpecker/debug.yaml index 59b139fd..c0f8eb91 100644 --- a/.woodpecker/debug.yaml +++ b/.woodpecker/debug.yaml @@ -16,7 +16,7 @@ steps: - name: build image: nixpkgs/nix:nixos-22.05 commands: - - nix-build --no-build-output --attr pkgs.amd64.debug --argstr git_version ${CI_COMMIT_TAG:-$CI_COMMIT_SHA} + - nix-build -j4 --no-build-output --attr pkgs.amd64.debug --argstr git_version ${CI_COMMIT_TAG:-$CI_COMMIT_SHA} - name: unit + func tests image: nixpkgs/nix:nixos-22.05 @@ -24,7 +24,7 @@ steps: GARAGE_TEST_INTEGRATION_EXE: result-bin/bin/garage GARAGE_TEST_INTEGRATION_PATH: tmp-garage-integration commands: - - nix-build --no-build-output --attr test.amd64 --argstr git_version ${CI_COMMIT_TAG:-$CI_COMMIT_SHA} + - nix-build -j4 --no-build-output --attr test.amd64 --argstr git_version ${CI_COMMIT_TAG:-$CI_COMMIT_SHA} - ./result/bin/garage_db-* - ./result/bin/garage_api_common-* - ./result/bin/garage_api_s3-* @@ -45,5 +45,5 @@ steps: - name: integration tests image: nixpkgs/nix:nixos-22.05 commands: - - nix-build --no-build-output --attr pkgs.amd64.debug --argstr git_version ${CI_COMMIT_TAG:-$CI_COMMIT_SHA} + - nix-build -j4 --no-build-output --attr pkgs.amd64.debug --argstr git_version ${CI_COMMIT_TAG:-$CI_COMMIT_SHA} - nix-shell --attr ci --run ./script/test-smoke.sh || (cat /tmp/garage.log; false) |