diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2025-01-22 08:56:15 +0100 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2025-01-22 08:56:15 +0100 |
| commit | 2f77310b6c3ee45241eff0ccc73e80c41ccd4c40 (patch) | |
| tree | 93d1900e9211d7daa0f54cfe8a82dda6d71c35d4 /ci | |
| parent | 8d81cd554577a13046b5429e938efca684d7e309 (diff) | |
| parent | 109f1b174c748fd8a750ddec50a4fbcc0c808c33 (diff) | |
| download | mullvadvpn-2f77310b6c3ee45241eff0ccc73e80c41ccd4c40.tar.xz mullvadvpn-2f77310b6c3ee45241eff0ccc73e80c41ccd4c40.zip | |
Merge branch 'remove-all-libraries-from-default-members-des-1657'
Diffstat (limited to 'ci')
| -rwxr-xr-x | ci/check-rust.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/ci/check-rust.sh b/ci/check-rust.sh index cb48fbed3f..c50adbaf3f 100755 --- a/ci/check-rust.sh +++ b/ci/check-rust.sh @@ -4,9 +4,12 @@ set -eux export RUSTFLAGS="--deny warnings" +# Excluding windows-installer because it builds an actual full installer +# at the build step, which is not desired in a CI environment. + # Build Rust crates source env.sh -time cargo build --locked --verbose +time cargo build --workspace --exclude windows-installer --locked --verbose # Test Rust crates -time cargo test --locked --verbose +time cargo test --workspace --exclude windows-installer --locked --verbose |
