aboutsummaryrefslogtreecommitdiff
path: root/.woodpecker/debug.yaml
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2024-02-13 11:24:56 +0100
committerAlex Auvolat <alex@adnab.me>2024-02-13 11:36:28 +0100
commitcf2af186fcc0c8f581a966454b6cd4720d3821f0 (patch)
tree37a978ba9ffb780fc828cff7b8ec93662d50884f /.woodpecker/debug.yaml
parentdb48dd3d6c1f9e86a62e9b8edfce2c1620bcd5f3 (diff)
parent823078b4cdaf93e09de0847c5eaa75beb7b26b7f (diff)
downloadgarage-cf2af186fcc0c8f581a966454b6cd4720d3821f0.tar.gz
garage-cf2af186fcc0c8f581a966454b6cd4720d3821f0.zip
Merge branch 'main' into next-0.10
Diffstat (limited to '.woodpecker/debug.yaml')
-rw-r--r--.woodpecker/debug.yaml44
1 files changed, 44 insertions, 0 deletions
diff --git a/.woodpecker/debug.yaml b/.woodpecker/debug.yaml
new file mode 100644
index 00000000..59ae8c06
--- /dev/null
+++ b/.woodpecker/debug.yaml
@@ -0,0 +1,44 @@
+when:
+ event:
+ - push
+ - tag
+ - pull_request
+ - deployment
+ - cron
+
+steps:
+ - name: check formatting
+ image: nixpkgs/nix:nixos-22.05
+ commands:
+ - nix-shell --attr devShell --run "cargo fmt -- --check"
+
+ - 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}
+
+ - name: unit + func tests
+ 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 --no-build-output --attr clippy.amd64 --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-*
+ - ./result/bin/garage_model-*
+ - ./result/bin/garage_rpc-*
+ - ./result/bin/garage_table-*
+ - ./result/bin/garage_util-*
+ - ./result/bin/garage_web-*
+ - ./result/bin/garage-*
+ - ./result/bin/integration-* || (cat tmp-garage-integration/stderr.log; false)
+ - rm result
+ - rm -rv tmp-garage-integration
+
+ - 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-shell --attr ci --run ./script/test-smoke.sh || (cat /tmp/garage.log; false)