]> xenbits.xensource.com Git - xen-guest-agent.git/commitdiff
ci: disable curl progress meter for more readability
authorYann Dirson <yann.dirson@vates.fr>
Thu, 14 Dec 2023 12:27:12 +0000 (13:27 +0100)
committerYann Dirson <yann.dirson@vates.fr>
Thu, 14 Dec 2023 12:35:05 +0000 (13:35 +0100)
Signed-off-by: Yann Dirson <yann.dirson@vates.fr>
.gitlab-ci.yml

index 2044414fcace60e83b64172bf28078f7b46ce331..8385f6442f4c4162ffa7840d12d0cb3f34f9a2ae 100644 (file)
@@ -34,7 +34,7 @@ variables:
   image: ghcr.io/cross-rs/$CARGO_BUILD_TARGET:main
   before_script:
     # install Rust
-    - curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --no-modify-path
+    - curl --silent --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --no-modify-path
     - . "$HOME/.cargo/env"
     - rustup target add $CARGO_BUILD_TARGET
 
@@ -238,7 +238,7 @@ deploy-deb-amd64:
     - for FILE in *; do
     -   echo "uploading '$FILE'"
     -   >
-        curl --header "JOB-TOKEN: $CI_JOB_TOKEN"
+        curl --silent --header "JOB-TOKEN: $CI_JOB_TOKEN"
         --upload-file "$FILE"
         "${PKG_ROOT}/deb-amd64/${CI_COMMIT_REF_NAME}/${FILE}"
     - done