Manually install AWS CLI

This commit is contained in:
Alex Crichton 2019-05-20 13:16:16 -07:00
parent 751597f0c7
commit 9b8af0608f
1 changed files with 11 additions and 0 deletions

View File

@ -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