This commit is contained in:
c0repwn3r 2023-03-31 12:14:33 -04:00
parent e7dcea8767
commit 9d981be160
Signed by: core
GPG Key ID: FDBF740DADDCEECF
1 changed files with 8 additions and 6 deletions

View File

@ -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
cargo check --locked --target x86_64-unknown-linux-musl
cargo clippy --locked --target x86_64-unknown-linux-musl