aboutsummaryrefslogtreecommitdiff
path: root/.woodpecker/debug.yaml
diff options
context:
space:
mode:
authorAlex <lx@deuxfleurs.fr>2025-02-03 15:54:54 +0000
committerAlex <lx@deuxfleurs.fr>2025-02-03 15:54:54 +0000
commitb9df2d1ad1e80745350e25fd44ddaa0f0c6bcbab (patch)
tree02ca809d1305f8f76eedfac145fb843489d65d35 /.woodpecker/debug.yaml
parent4dc2bc337f10be616a141ba8b52564038ef3ae41 (diff)
parent390a5d97fece744bcad3c5b7b7d31b2722d0b092 (diff)
downloadgarage-b9df2d1ad1e80745350e25fd44ddaa0f0c6bcbab.tar.gz
garage-b9df2d1ad1e80745350e25fd44ddaa0f0c6bcbab.zip
Merge pull request 'compile with crane' (#950) from nix-crane into main
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/950
Diffstat (limited to '.woodpecker/debug.yaml')
-rw-r--r--.woodpecker/debug.yaml33
1 files changed, 10 insertions, 23 deletions
diff --git a/.woodpecker/debug.yaml b/.woodpecker/debug.yaml
index c0f8eb91..65dab9ab 100644
--- a/.woodpecker/debug.yaml
+++ b/.woodpecker/debug.yaml
@@ -16,34 +16,21 @@ steps:
- name: build
image: nixpkgs/nix:nixos-22.05
commands:
- - nix-build -j4 --no-build-output --attr pkgs.amd64.debug --argstr git_version ${CI_COMMIT_TAG:-$CI_COMMIT_SHA}
+ - nix-build -j4 --attr flakePackages.dev
- - name: unit + func tests
+ - name: unit + func tests (lmdb)
image: nixpkgs/nix:nixos-22.05
- environment:
- GARAGE_TEST_INTEGRATION_EXE: result-bin/bin/garage
- GARAGE_TEST_INTEGRATION_PATH: tmp-garage-integration
commands:
- - 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-*
- - ./result/bin/garage_api_k2v-*
- - ./result/bin/garage_api_admin-*
- - ./result/bin/garage_model-*
- - ./result/bin/garage_rpc-*
- - ./result/bin/garage_table-*
- - ./result/bin/garage_util-*
- - ./result/bin/garage_web-*
- - ./result/bin/garage-*
- - GARAGE_TEST_INTEGRATION_DB_ENGINE=lmdb ./result/bin/integration-* || (cat tmp-garage-integration/stderr.log; false)
- - nix-shell --attr ci --run "killall -9 garage" || true
- - GARAGE_TEST_INTEGRATION_DB_ENGINE=sqlite ./result/bin/integration-* || (cat tmp-garage-integration/stderr.log; false)
- - rm result
- - rm -rv tmp-garage-integration
+ - nix-build -j4 --attr flakePackages.tests-lmdb
+
+ - name: unit + func tests (sqlite)
+ image: nixpkgs/nix:nixos-22.05
+ commands:
+ - nix-build -j4 --attr flakePackages.tests-sqlite
- name: integration tests
image: nixpkgs/nix:nixos-22.05
commands:
- - nix-build -j4 --no-build-output --attr pkgs.amd64.debug --argstr git_version ${CI_COMMIT_TAG:-$CI_COMMIT_SHA}
+ - nix-build -j4 --attr flakePackages.dev
- nix-shell --attr ci --run ./script/test-smoke.sh || (cat /tmp/garage.log; false)
+ depends_on: [ build ]