From 793b67bf95801db43cb59f6974994807dd945270 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Sun, 10 May 2026 21:39:52 +0100 Subject: [PATCH] CI: Remove --verbose from cargo invocations This has IME never been useful. Signed-off-by: Ian Jackson --- .gitlab-ci.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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. -- 2.30.2