trifid/.builds/check.yml

48 lines
1.8 KiB
YAML
Raw Normal View History

2023-06-26 18:44:16 +00:00
image: alpine/3.17
packages:
- openssl-dev
- go
sources:
- https://git.e3t.cc/~core/trifid
tasks:
- setup: |
curl https://sh.rustup.rs -sSf | sh -s -- -y
source ~/.cargo/env
rustup target add x86_64-unknown-linux-musl
2023-06-26 18:45:14 +00:00
- check-dnapi-rs: |
2023-06-26 18:44:16 +00:00
source ~/.cargo/env
cd /home/build/trifid/dnapi-rs
2023-06-26 18:45:14 +00:00
cargo check---locked --target x86_64-unknown-linux-musl
2023-06-26 18:44:16 +00:00
cargo build --locked --target x86_64-unknown-linux-musl
cargo clippy --locked --target x86_64-unknown-linux-musl
2023-06-26 18:45:14 +00:00
- check-nebula-ffi: |
2023-06-26 18:44:16 +00:00
source ~/.cargo/env
cd /home/build/trifid/nebula-ffi
2023-06-26 18:45:14 +00:00
cargo check---locked --target x86_64-unknown-linux-musl
2023-06-26 18:44:16 +00:00
cargo build --locked --target x86_64-unknown-linux-musl
cargo clippy --locked --target x86_64-unknown-linux-musl
2023-06-26 18:45:14 +00:00
- check-tfcli: |
2023-06-26 18:44:16 +00:00
source ~/.cargo/env
cd /home/build/trifid/tfcli
2023-06-26 18:45:14 +00:00
cargo check---locked --target x86_64-unknown-linux-musl
2023-06-26 18:44:16 +00:00
cargo build --locked --target x86_64-unknown-linux-musl
cargo clippy --locked --target x86_64-unknown-linux-musl
2023-06-26 18:45:14 +00:00
- check-tfclient: |
2023-06-26 18:44:16 +00:00
source ~/.cargo/env
cd /home/build/trifid/tfclient
2023-06-26 18:45:14 +00:00
cargo check---locked --target x86_64-unknown-linux-musl
2023-06-26 18:44:16 +00:00
cargo build --locked --target x86_64-unknown-linux-musl
cargo clippy --locked --target x86_64-unknown-linux-musl
2023-06-26 18:45:14 +00:00
- check-trifid-api: |
2023-06-26 18:44:16 +00:00
source ~/.cargo/env
cd /home/build/trifid/trifid-api
2023-06-26 18:45:14 +00:00
cargo check---locked --target x86_64-unknown-linux-musl
2023-06-26 18:44:16 +00:00
cargo build --locked --target x86_64-unknown-linux-musl
cargo clippy --locked --target x86_64-unknown-linux-musl
2023-06-26 18:45:14 +00:00
- check-trifid-pki: |
2023-06-26 18:44:16 +00:00
source ~/.cargo/env
cd /home/build/trifid/trifid-pki
2023-06-26 18:45:14 +00:00
cargo check---locked --target x86_64-unknown-linux-musl
2023-06-26 18:44:16 +00:00
cargo build --locked --target x86_64-unknown-linux-musl
cargo clippy --locked --target x86_64-unknown-linux-musl