chiark / gitweb /
CI: Remove --verbose from cargo invocations
authorIan Jackson <ijackson@chiark.greenend.org.uk>
Sun, 10 May 2026 20:39:52 +0000 (21:39 +0100)
committerIan Jackson <ijackson@chiark.greenend.org.uk>
Sun, 10 May 2026 21:23:33 +0000 (22:23 +0100)
This has IME never been useful.

Signed-off-by: Ian Jackson <ijackson@chiark.greenend.org.uk>
.gitlab-ci.yml

index b5144e2f36751baa0c31d9a29b4bae6dc89bc771..f6ba478f6a4fd1665f75034dcac94530a3373827 100644 (file)
@@ -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.