From 9b8af0608f0817caabbe15ec25c9ebedbb670245 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Mon, 20 May 2019 13:16:16 -0700 Subject: [PATCH] Manually install AWS CLI --- .azure-pipelines/steps/run.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.azure-pipelines/steps/run.yml b/.azure-pipelines/steps/run.yml index 05ceb66cdbad..fa1afd2d634f 100644 --- a/.azure-pipelines/steps/run.yml +++ b/.azure-pipelines/steps/run.yml @@ -7,6 +7,17 @@ # Check travis config for `gdb --batch` command to print all crash logs steps: + +# Ensure the `aws` CLI is installed so we can deploy later on, cache docker +# images, etc. +- bash: | + set -e + pip install setuptools + pip install awscli + displayName: Install awscli + +- bash: aws s3 help +- bash: exit 1 - checkout: self fetchDepth: 2