-
Notifications
You must be signed in to change notification settings - Fork 139
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update general-check.yaml to rust-check.yaml, and job names to…
… lower case, and create bash script to ci job.
- Loading branch information
devworlds
committed
Jan 6, 2025
1 parent
e62691c
commit 636ab78
Showing
2 changed files
with
74 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
#!/bin/bash | ||
|
||
# Instala toolchain e componentes | ||
cargo build --manifest-path=benches/Cargo.toml | ||
cargo build --manifest-path=common/Cargo.toml | ||
cargo build --manifest-path=protocols/Cargo.toml | ||
cargo build --manifest-path=roles/Cargo.toml | ||
cargo build --manifest-path=utils/Cargo.toml | ||
|
||
# Testes de Integração de Roles | ||
cargo test --manifest-path=roles/Cargo.toml --verbose --test '*' -- --nocapture | ||
|
||
# Executa o exemplo de client_and_server | ||
cargo run --manifest-path=examples/sv1-client-and-server/Cargo.toml --bin client_and_server -- 60 | ||
|
||
# Teste de Interop (somente no Ubuntu) | ||
if [ "$CI_OS" == "ubuntu-latest" ]; then | ||
./run.sh 30 | ||
else | ||
echo "Skipping interop-test on $CI_OS - not supported" | ||
fi | ||
cd examples/interop-cpp/ || exit | ||
|
||
# Teste de fuzz (somente no Ubuntu) | ||
if [ "$CI_OS" == "ubuntu-latest" ]; then | ||
./run.sh 30 | ||
else | ||
echo "Skipping fuzz test on $CI_OS - not supported" | ||
fi | ||
cd utils/buffer/fuzz || exit | ||
|
||
# Testes gerais | ||
cargo test --manifest-path=benches/Cargo.toml | ||
cargo test --manifest-path=common/Cargo.toml | ||
cargo test --manifest-path=protocols/Cargo.toml | ||
cargo test --manifest-path=roles/Cargo.toml | ||
cargo test --manifest-path=utils/Cargo.toml | ||
|
||
# Testes baseados em propriedades | ||
cargo test --manifest-path=protocols/Cargo.toml --features prop_test | ||
|
||
# Executa o exemplo de ping-pong-with-noise | ||
cargo run --manifest-path=examples/ping-pong-with-noise/Cargo.toml --bin ping_pong_with_noise -- 10 | ||
|
||
# Executa o exemplo de ping-pong-without-noise | ||
cargo run --manifest-path=examples/ping-pong-without-noise/Cargo.toml --bin ping_pong_without_noise -- 10 |