From: Ian Jackson Date: Sun, 10 May 2026 20:39:52 +0000 (+0100) Subject: CI: Remove --verbose from cargo invocations X-Git-Tag: debian/1.3.3~2^2 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?a=commitdiff_plain;h=793b67bf95801db43cb59f6974994807dd945270;p=hippotat.git CI: Remove --verbose from cargo invocations This has IME never been useful. Signed-off-by: Ian Jackson --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b5144e2..f6ba478 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -18,13 +18,13 @@ cargo-check: stage: check image: "rust:latest" script: - - cargo check --locked --workspace --verbose --all-features + - cargo check --locked --workspace --all-features cargo-test: stage: test image: "rust:latest" script: - - cargo test --locked --workspace --verbose --all-features + - cargo test --locked --workspace --all-features cargo-update-test-nightly: stage: test @@ -32,7 +32,7 @@ cargo-update-test-nightly: allow_failure: true script: - cargo update - - cargo test --locked --workspace --verbose --all-features + - cargo test --locked --workspace --all-features build-docs: stage: check @@ -114,7 +114,7 @@ minimal-versions-nightly: - apt-get -y install build-essential pkg-config libssl-dev - maint/update-minimal-versions - cp Cargo.lock.minimal Cargo.lock - - cargo test --locked --workspace --verbose --all-features + - cargo test --locked --workspace --all-features # We have a thought-to-be-known-working lockfile in tree, test that minimal-versions-pinned: @@ -127,7 +127,7 @@ minimal-versions-pinned: - apt-get -y update - apt-get -y install build-essential pkg-config libssl-dev - cp Cargo.lock.minimal Cargo.lock - - cargo test --locked --workspace --verbose --all-features + - cargo test --locked --workspace --all-features # Ideally we'd run autopkgtest here. # However, our autopkgtests use overlayfs which doesn't seem available.