summaryrefslogtreecommitdiffhomepage
path: root/ci
diff options
context:
space:
mode:
Diffstat (limited to 'ci')
-rwxr-xr-xci/check-rust.sh7
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