This is an automated email from the ASF dual-hosted git repository. mapohl pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/flink.git
commit d95a64ea5ef14eb1762dabde17f92cc85c5aae67 Author: Matthias Pohl <[email protected]> AuthorDate: Fri Jul 21 16:23:01 2023 +0200 [hotfix][test] Makes wget calls less verbose Signed-off-by: Matthias Pohl <[email protected]> --- flink-end-to-end-tests/test-scripts/common_kubernetes.sh | 2 +- tools/ci/maven-utils.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/flink-end-to-end-tests/test-scripts/common_kubernetes.sh b/flink-end-to-end-tests/test-scripts/common_kubernetes.sh index 530bea0bfca..5bac2119932 100755 --- a/flink-end-to-end-tests/test-scripts/common_kubernetes.sh +++ b/flink-end-to-end-tests/test-scripts/common_kubernetes.sh @@ -58,7 +58,7 @@ function setup_kubernetes_for_linux { sudo apt-get install conntrack # crictl is required for cri-dockerd VERSION="v1.24.2" - wget https://github.com/kubernetes-sigs/cri-tools/releases/download/$VERSION/crictl-$VERSION-linux-amd64.tar.gz + wget -nv https://github.com/kubernetes-sigs/cri-tools/releases/download/$VERSION/crictl-$VERSION-linux-amd64.tar.gz sudo tar zxvf crictl-$VERSION-linux-amd64.tar.gz -C /usr/local/bin rm -f crictl-$VERSION-linux-amd64.tar.gz # cri-dockerd is required to use Kubernetes 1.24+ and the none driver diff --git a/tools/ci/maven-utils.sh b/tools/ci/maven-utils.sh index 74512daf7e9..c42402ff3d9 100755 --- a/tools/ci/maven-utils.sh +++ b/tools/ci/maven-utils.sh @@ -33,7 +33,7 @@ export -f run_mvn function setup_maven { set -e # fail if there was an error setting up maven if [ ! -d "${MAVEN_VERSIONED_DIR}" ]; then - wget https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/${MAVEN_VERSION}/apache-maven-${MAVEN_VERSION}-bin.zip + wget -nv https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/${MAVEN_VERSION}/apache-maven-${MAVEN_VERSION}-bin.zip unzip -d "${MAVEN_CACHE_DIR}" -qq "apache-maven-${MAVEN_VERSION}-bin.zip" rm "apache-maven-${MAVEN_VERSION}-bin.zip" fi
