diff options
author | Alex <alex@adnab.me> | 2024-02-29 17:13:15 +0000 |
---|---|---|
committer | Alex <alex@adnab.me> | 2024-02-29 17:13:15 +0000 |
commit | 9b44639844fe60add66286a161f69f817a2714cb (patch) | |
tree | 971ec3b348e4d3891b07ab7c2f6ffea0a1734314 /.woodpecker/debug.yaml | |
parent | 083e982f5fd0e88e496da7d67734abd8927f3f98 (diff) | |
parent | a6660f71e622957a30d7c53c6bfd57f4772709dd (diff) | |
download | garage-9b44639844fe60add66286a161f69f817a2714cb.tar.gz garage-9b44639844fe60add66286a161f69f817a2714cb.zip |
Merge pull request 'Backport woodpecker CI to v0.8.x branch' (#741) from woodpecker-0.8.x into main-0.8.x
Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/741
Diffstat (limited to '.woodpecker/debug.yaml')
-rw-r--r-- | .woodpecker/debug.yaml | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/.woodpecker/debug.yaml b/.woodpecker/debug.yaml new file mode 100644 index 00000000..9486f672 --- /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 rust --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 integration --run ./script/test-smoke.sh || (cat /tmp/garage.log; false) |