From 9d981be160642ac8e02f893f6d3028cb72f82b33 Mon Sep 17 00:00:00 2001 From: c0repwn3r Date: Fri, 31 Mar 2023 12:14:33 -0400 Subject: [PATCH] fix pt5 --- .builds/tfclient.yml | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/.builds/tfclient.yml b/.builds/tfclient.yml index 049d24d..2e5fe04 100644 --- a/.builds/tfclient.yml +++ b/.builds/tfclient.yml @@ -1,13 +1,15 @@ -image: archlinux +image: alpine/3.17 packages: - - openssl + - rustup + - cargo + - openssl-dev + - rust-clippy sources: - https://git.e3t.cc/~core/trifid tasks: - setup: | - curl https://sh.rustup.rs -sSf | sh -s -- -y - rustup default stable + rustup target add x86_64-unknown-linux-musl - check: | cd /home/build/trifid/tfclient - cargo check --locked - cargo clippy --locked \ No newline at end of file + cargo check --locked --target x86_64-unknown-linux-musl + cargo clippy --locked --target x86_64-unknown-linux-musl \ No newline at end of file