mirror of
https://github.com/oceanprotocol-archive/squid-js.git
synced 2024-02-02 15:31:51 +01:00
61 lines
1.8 KiB
YAML
61 lines
1.8 KiB
YAML
dist: xenial
|
|
sudo: required
|
|
language: node_js
|
|
node_js:
|
|
- '12'
|
|
|
|
services:
|
|
- docker
|
|
|
|
cache: npm
|
|
|
|
matrix:
|
|
fast_finish: true
|
|
|
|
before_install:
|
|
- npm install -g npm
|
|
- npm install -g codacy-coverage release-it greenkeeper-lockfile ganache-cli@~6.5.1
|
|
- curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./cc-test-reporter
|
|
- chmod +x ./cc-test-reporter
|
|
|
|
before_script:
|
|
- greenkeeper-lockfile-update
|
|
- ganache-cli --port 18545 > ganache-cli.log &
|
|
- git clone https://github.com/oceanprotocol/barge
|
|
- cd barge
|
|
- export AQUARIUS_VERSION=v1.0.7
|
|
- export BRIZO_VERSION=v0.9.0
|
|
- export KEEPER_VERSION=v0.13.2
|
|
- export EVENTS_HANDLER_VERSION=v0.4.4
|
|
- export KEEPER_OWNER_ROLE_ADDRESS="0xe2DD09d719Da89e5a3D0F2549c7E24566e947260"
|
|
- rm -rf "${HOME}/.ocean/keeper-contracts/artifacts"
|
|
- bash -x start_ocean.sh --no-commons --no-dashboard 2>&1 > start_ocean.log &
|
|
- cd ..
|
|
|
|
script:
|
|
- npm run lint
|
|
- ./scripts/keeper.sh
|
|
- export ETH_PORT=18545; npm run test:cover
|
|
- npm run build
|
|
- npm run doc
|
|
- npm run test:integration:cover
|
|
|
|
after_script:
|
|
- npm run report-codacy
|
|
- ./cc-test-reporter format-coverage -t lcov -o coverage/codeclimate.unit.json coverage/unit/lcov.info # Format unit test coverage
|
|
- ./cc-test-reporter format-coverage -t lcov -o coverage/codeclimate.integration.json coverage/integration/lcov.info # Format integration test coverage
|
|
- ./cc-test-reporter sum-coverage coverage/codeclimate.*.json -p 2 # Sum both coverage parts into coverage/codeclimate.json
|
|
- if [[ "$TRAVIS_TEST_RESULT" == 0 ]]; then ./cc-test-reporter upload-coverage; fi # Upload coverage/codeclimate.json
|
|
- greenkeeper-lockfile-upload
|
|
|
|
notifications:
|
|
email: false
|
|
|
|
deploy:
|
|
- provider: npm
|
|
email: 'devops@oceanprotocol.com'
|
|
api_key: ${NPM_TOKEN}
|
|
skip_cleanup: true
|
|
on:
|
|
tags: true
|