diff options
author | Alex Auvolat <alex@adnab.me> | 2024-02-09 11:36:51 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2024-02-09 11:36:51 +0100 |
commit | 555ed75548d2f42f9d86cc2b8d6844e6b7d35740 (patch) | |
tree | 8172b00c4217e96c4f5d4988fe5222b67ec49ef1 /.woodpecker/release.yaml | |
parent | 1c85e5e428d8b449bb0e0933f329bcba3b583697 (diff) | |
download | garage-555ed75548d2f42f9d86cc2b8d6844e6b7d35740.tar.gz garage-555ed75548d2f42f9d86cc2b8d6844e6b7d35740.zip |
[nix-improvements] ci: check static as separate step
Diffstat (limited to '.woodpecker/release.yaml')
-rw-r--r-- | .woodpecker/release.yaml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/.woodpecker/release.yaml b/.woodpecker/release.yaml index 1d54e3cf..e5db48b8 100644 --- a/.woodpecker/release.yaml +++ b/.woodpecker/release.yaml @@ -19,6 +19,11 @@ steps: image: nixpkgs/nix:nixos-22.05 commands: - nix-build --no-build-output --attr pkgs.${ARCH}.release --argstr git_version ${CI_COMMIT_TAG:-$CI_COMMIT_SHA} + + - name: check is static binary + image: nixpkgs/nix:nixos-22.05 + commands: + - nix-build --no-build-output --attr pkgs.${ARCH}.release --argstr git_version ${CI_COMMIT_TAG:-$CI_COMMIT_SHA} - nix-shell --attr ci --run "./script/not-dynamic.sh result-bin/bin/garage" - name: integration tests |