aboutsummaryrefslogtreecommitdiff
path: root/.woodpecker/debug.yaml
diff options
context:
space:
mode:
authorAlex Auvolat <lx@deuxfleurs.fr>2025-01-12 17:40:34 +0100
committerAlex Auvolat <lx@deuxfleurs.fr>2025-01-12 17:51:33 +0100
commit83887a851911e18106ede698f491b0102d16b7a4 (patch)
treed448ad8b73517e635bc5448e0820f77486ab0cc5 /.woodpecker/debug.yaml
parent0a15db6960add3e06a130d64b51d6ae55cd2d759 (diff)
downloadgarage-83887a851911e18106ede698f491b0102d16b7a4.tar.gz
garage-83887a851911e18106ede698f491b0102d16b7a4.zip
nix build: remove clippy build env that doesn't work
Diffstat (limited to '.woodpecker/debug.yaml')
-rw-r--r--.woodpecker/debug.yaml6
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)