diff options
author | Alex <lx@deuxfleurs.fr> | 2025-01-13 10:19:53 +0000 |
---|---|---|
committer | Alex <lx@deuxfleurs.fr> | 2025-01-13 10:19:53 +0000 |
commit | 39ac034de55c7040b61a08ecb95c58afa983501c (patch) | |
tree | 9776372019bdc60906e65e0021a09bf4b5d856c5 /.woodpecker | |
parent | 4b1a7fb5e3c2f6a58780165955e49d8e24a1d018 (diff) | |
parent | 8ddb0dd485cf8290b7e3462f5614ca6d858ea8c3 (diff) | |
download | garage-39ac034de55c7040b61a08ecb95c58afa983501c.tar.gz garage-39ac034de55c7040b61a08ecb95c58afa983501c.zip |
Merge pull request 'update toolchain' (#924) from nix-update into main
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/924
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 0076feda..06597a3b 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 clippy.amd64 --argstr git_version ${CI_COMMIT_TAG:-$CI_COMMIT_SHA} + - nix-build --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 clippy.amd64 --argstr git_version ${CI_COMMIT_TAG:-$CI_COMMIT_SHA} + - nix-build --no-build-output --attr pkgs.amd64.debug --argstr git_version ${CI_COMMIT_TAG:-$CI_COMMIT_SHA} - nix-build --no-build-output --attr test.amd64 - ./result/bin/garage_db-* - ./result/bin/garage_api-* @@ -43,5 +43,5 @@ steps: - name: integration tests image: nixpkgs/nix:nixos-22.05 commands: - - nix-build --no-build-output --attr clippy.amd64 --argstr git_version ${CI_COMMIT_TAG:-$CI_COMMIT_SHA} + - nix-build --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) |