add musl dependency

This commit is contained in:
c0repwn3r 2023-06-26 18:27:37 -04:00
parent dea416b3ed
commit 44047eda57
Signed by: core
GPG Key ID: FDBF740DADDCEECF
1 changed files with 7 additions and 6 deletions

View File

@ -2,6 +2,7 @@ image: archlinux
packages:
- openssl
- go
- musl
sources:
- https://git.e3t.cc/~core/trifid
tasks:
@ -13,36 +14,36 @@ tasks:
- check-dnapi-rs: |
source ~/.cargo/env
cd /home/build/trifid/dnapi-rs
cargo check---locked --target x86_64-unknown-linux-musl
cargo check --locked --target x86_64-unknown-linux-musl
cargo build --locked --target x86_64-unknown-linux-musl
cargo clippy --locked --target x86_64-unknown-linux-musl
- check-nebula-ffi: |
source ~/.cargo/env
cd /home/build/trifid/nebula-ffi
cargo check---locked --target x86_64-unknown-linux-musl
cargo check --locked --target x86_64-unknown-linux-musl
cargo build --locked --target x86_64-unknown-linux-musl
cargo clippy --locked --target x86_64-unknown-linux-musl
- check-tfcli: |
source ~/.cargo/env
cd /home/build/trifid/tfcli
cargo check---locked --target x86_64-unknown-linux-musl
cargo check --locked --target x86_64-unknown-linux-musl
cargo build --locked --target x86_64-unknown-linux-musl
cargo clippy --locked --target x86_64-unknown-linux-musl
- check-tfclient: |
source ~/.cargo/env
cd /home/build/trifid/tfclient
cargo check---locked --target x86_64-unknown-linux-musl
cargo check --locked --target x86_64-unknown-linux-musl
cargo build --locked --target x86_64-unknown-linux-musl
cargo clippy --locked --target x86_64-unknown-linux-musl
- check-trifid-api: |
source ~/.cargo/env
cd /home/build/trifid/trifid-api
cargo check---locked --target x86_64-unknown-linux-musl
cargo check --locked --target x86_64-unknown-linux-musl
cargo build --locked --target x86_64-unknown-linux-musl
cargo clippy --locked --target x86_64-unknown-linux-musl
- check-trifid-pki: |
source ~/.cargo/env
cd /home/build/trifid/trifid-pki
cargo check---locked --target x86_64-unknown-linux-musl
cargo check --locked --target x86_64-unknown-linux-musl
cargo build --locked --target x86_64-unknown-linux-musl
cargo clippy --locked --target x86_64-unknown-linux-musl