From cba9e5d57ef67797139e8a49ba334a874bee40dd Mon Sep 17 00:00:00 2001 From: Felix Ableitner Date: Thu, 29 Feb 2024 13:16:59 +0100 Subject: [PATCH] x --- .woodpecker.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 9f0a6d7..cba1e64 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -10,10 +10,15 @@ steps: commands: - wget https://github.com/cargo-bins/cargo-binstall/releases/latest/download/cargo-binstall-x86_64-unknown-linux-musl.tgz - tar -xvf cargo-binstall-x86_64-unknown-linux-musl.tgz - - ./cargo-binstall -y trunk + - mv cargo-binstall .cargo_home/bin/ + - export PATH="$PATH:.cargo_home/bin/" + - cargo binstall -y trunk - trunk build --release - cargo build --release - ls -la target/release/ibis + - cp target/release/ibis . + - gzip ibis + - ls -la ibis.gz cargo_fmt: image: *rust_image