1
0
mirror of https://github.com/oceanprotocol/docs.git synced 2024-11-02 08:20:22 +01:00
docs/.travis.yml

35 lines
789 B
YAML
Raw Normal View History

2018-11-07 12:24:53 +01:00
language: node_js
node_js: node
# will run `npm install` automatically here
2019-03-11 13:39:53 +01:00
dist: xenial
# Deploying uses awscli and it uses Python.
# Xenial on Travis comes with Python 2 & 3 installed but 2 is default.
# Ensure pip3 is installed and upgraded.
2019-03-11 13:39:53 +01:00
before_install:
- sudo apt-get -qq update
- sudo apt-get install python3-pip
- sudo -H pip3 install --upgrade pip
2019-03-11 13:39:53 +01:00
2018-11-07 12:24:53 +01:00
script:
2018-11-10 00:31:47 +01:00
- npm test
- 'if [ "$TRAVIS_SECURE_ENV_VARS" = "true" ]; then npm run build; fi'
2018-11-07 12:24:53 +01:00
# Try to ensure Python 3 and pip3 get used for deployment.
# Note that "alias" commands do not work in .travis.yml
2018-11-16 11:12:28 +01:00
after_success:
- pyenv global 3.6
- pip3 install --user awscli
2018-11-16 11:19:43 +01:00
- export PATH=$PATH:$HOME/.local/bin
2018-11-16 11:12:28 +01:00
- npm run deploy
2018-11-07 12:24:53 +01:00
notifications:
2018-11-10 00:31:47 +01:00
email: false
2018-11-07 12:24:53 +01:00
cache:
2018-11-10 00:31:47 +01:00
directories:
- node_modules
- public