From a462f2c6a39b6dc33bade9a715f266ddf8d67005 Mon Sep 17 00:00:00 2001 From: Eric Arellano Date: Thu, 6 Jan 2022 17:02:00 -0700 Subject: [PATCH] Revert "[internal] Switch to AWS CLI v2 (#14095)" This reverts commit 2ecc826d7694fe4419e1868ee9b2d60bf26f2516. [ci skip-rust] [ci skip-build-wheels] --- build-support/bin/install_aws_cli_for_ci.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/build-support/bin/install_aws_cli_for_ci.sh b/build-support/bin/install_aws_cli_for_ci.sh index 0e732f009ec..fe0f4cf0e89 100755 --- a/build-support/bin/install_aws_cli_for_ci.sh +++ b/build-support/bin/install_aws_cli_for_ci.sh @@ -19,11 +19,12 @@ if [[ ! -x "${AWS_CLI_BIN}" ]]; then TMPDIR=$(mktemp -d) pushd "${TMPDIR}" - curl --fail "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" - unzip awscliv2.zip + + curl --fail "https://s3.amazonaws.com/aws-cli/awscli-bundle.zip" -o "awscli-bundle.zip" + unzip awscli-bundle.zip # NB: We must run this with python3 because it defaults to `python`, which refers to Python 2 in Linux GitHub # Actions CI job and is no longer supported. - python3 ./aws/install --install-dir "${AWS_CLI_ROOT}" + python3 ./awscli-bundle/install --install-dir "${AWS_CLI_ROOT}" popd