We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea5be89 commit 2c4caaeCopy full SHA for 2c4caae
user/build-stages/share-files-s3.md
@@ -11,14 +11,17 @@ This example has 2 build stages:
11
Here's what the `.travis.yml` config could look like:
12
13
```yaml
14
+dist: xenial
15
+
16
env:
17
global:
18
# include $HOME/.local/bin for `aws`
19
- PATH=$HOME/.local/bin:$PATH
20
21
before_install:
- # set up awscli packages
- - pip install --user awscli
22
+ - pyenv global 3.7.1
23
+ - pip install -U pip
24
+ - pip install awscli
25
- mkdir -p ~/$TRAVIS_BUILD_NUMBER
26
- aws s3 sync s3://travis-build-stages-shared-storage-test/$TRAVIS_BUILD_NUMBER ~/$TRAVIS_BUILD_NUMBER
27
0 commit comments