This is an automated email from the ASF dual-hosted git repository. mapohl pushed a commit to branch release-1.16 in repository https://gitbox.apache.org/repos/asf/flink.git
commit f78cf28d5ae1acaba403b8db3052df41faaabf3b 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 834207f9d49..bfdfddfc03c 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 5b9b59b304a..a85847a7403 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://archive.apache.org/dist/maven/maven-3/${MAVEN_VERSION}/binaries/apache-maven-${MAVEN_VERSION}-bin.zip + wget -nv https://archive.apache.org/dist/maven/maven-3/${MAVEN_VERSION}/binaries/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
