From: Yann Dirson Date: Thu, 14 Dec 2023 12:27:12 +0000 (+0100) Subject: ci: disable curl progress meter for more readability X-Git-Tag: 0.3.0~5^2~7 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=59ce38a2a29260cf388790913fc02201fc675a96;p=xen-guest-agent.git ci: disable curl progress meter for more readability Signed-off-by: Yann Dirson --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 2044414..8385f64 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -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