diff options
author | Alex Auvolat <alex@adnab.me> | 2024-03-28 13:07:41 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2024-03-28 13:08:42 +0100 |
commit | e1dc84e1233607b41d55442c56e4e1376b771f42 (patch) | |
tree | c10cd02914b0f55f3acc4a98d6d72eba970e24e1 | |
parent | 95eb8808e8ede5439cf6352ce4f9a148fac2f236 (diff) | |
download | garage-e1dc84e1233607b41d55442c56e4e1376b771f42.tar.gz garage-e1dc84e1233607b41d55442c56e4e1376b771f42.zip |
[fix-ci] CI: properly cleanup between garage integration tests
-rw-r--r-- | .woodpecker/debug.yaml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.woodpecker/debug.yaml b/.woodpecker/debug.yaml index 9e1443dc..51a8e14c 100644 --- a/.woodpecker/debug.yaml +++ b/.woodpecker/debug.yaml @@ -34,7 +34,9 @@ steps: - ./result/bin/garage_web-* - ./result/bin/garage-* - GARAGE_TEST_INTEGRATION_DB_ENGINE=sled ./result/bin/integration-* || (cat tmp-garage-integration/stderr.log; false) + - nix-shell --attr ci --run "killall -9 garage" || true - 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 |