commons/.travis.yml

48 lines
1.4 KiB
YAML
Raw Normal View History

2019-04-24 13:31:17 +02:00
dist: xenial
2019-03-07 14:56:07 +01:00
language: node_js
2019-04-24 13:31:17 +02:00
node_js:
- '11'
2019-03-07 14:56:07 +01:00
2019-05-17 12:14:02 +02:00
addons:
apt:
packages:
# for Cypress
- libgconf-2-4
2019-04-30 12:21:43 +02:00
before_install:
- npm install -g npm
- npm install -g codacy-coverage truffle ganache-cli
2019-04-30 12:21:43 +02:00
2019-03-24 02:10:00 +01:00
script:
2019-04-01 12:20:42 +02:00
# - ./scripts/install.sh # runs automatically with npm ci
# run E2E tests against these values
2019-06-25 16:07:55 +02:00
- export REACT_APP_NODE_URI="https://nile.dev-ocean.com"
- export REACT_APP_AQUARIUS_URI="https://aquarius.marketplace.dev-ocean.com"
- export REACT_APP_BRIZO_URI="https://brizo.marketplace.dev-ocean.com"
- export REACT_APP_SECRET_STORE_URI="https://secret-store.marketplace.dev-ocean.com"
- export REACT_APP_FAUCET_URI="https://faucet.nile.dev-ocean.com"
2019-06-25 16:30:06 +02:00
- export REACT_APP_BRIZO_ADDRESS="0x4aaab179035dc57b35e2ce066919048686f82972"
2019-06-25 16:44:24 +02:00
- export CYPRESS_NODE_URI=$REACT_APP_NODE_URI
2019-06-21 14:58:24 +02:00
- export CYPRESS_SEEDPHRASE="taxi music thumb unique chat sand crew more leg another off lamp"
2019-06-25 16:07:55 +02:00
- export CYPRESS_CONSUME_ASSET="http://localhost:3000/asset/did:op:8014d305dcb44b42a5355791a2f016a654a61184456a4d178dc6e5913deb3a5c"
2019-03-24 02:10:00 +01:00
- ./scripts/test.sh
2019-04-30 12:21:43 +02:00
- ./scripts/coverage.sh
2019-03-24 02:18:53 +01:00
- ./scripts/build.sh
2019-03-07 14:56:07 +01:00
notifications:
email: false
2019-05-17 12:14:02 +02:00
cache:
npm: true
directories:
# cache folder with Cypress binary
- ~/.cache
2019-04-08 16:41:59 +02:00
deploy:
- provider: script
skip_cleanup: true
script: bash -ex ./scripts/deploy_on_k8s.sh
on:
tags: true
all_branches: true