summaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorEli Flanagan <eli@typedspace.com>2021-03-10 18:48:44 -0500
committerEli Flanagan <eli@typedspace.com>2021-03-10 18:56:22 -0500
commit17f87e4cdf35307683734f2a2be557a58be94b08 (patch)
tree6a256473e6f009cbf551a63baf8b92fd27bbc5a2 /.gitlab-ci.yml
parent9f3f54439ea228d9ccf9f63f6281850f7264b476 (diff)
ci: prefer --workspace flag
Close #660 The changelog documenting cargo's --workspace arrival is [here](https://github.com/rust-lang/cargo/blob/61a31bc5ff290322d5c025bf750c56501999235d/CHANGELOG.md#added-13). Note `cargo fmt` still expects `--all` because the subcommand semantics differ.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 2818c321..36364dfb 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -112,7 +112,7 @@ windows-gnu:
- rustc --version --verbose
- cargo --version
script:
- - cargo test --all --exclude sequoia-openpgp-ffi
+ - cargo test --workspace --exclude sequoia-openpgp-ffi
# https://github.com/rust-lang/cargo/issues/5015
- cargo test --manifest-path openpgp/Cargo.toml --no-default-features --features crypto-cng,compression
after_script: []