-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
39 lines (39 loc) · 1.36 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
language: node_js
node_js:
- 6
matrix:
fast_finish: true
allow_failures:
- node_js: 5.12.0
before_install:
- cd src
before_script:
- npm install -g gulp-cli node-gyp
- npm install -g truffle
- npm install -g ganache-cli
- gem install sass
- cd LetterContract
- rm -rf build
- truffle compile
- cd ..
script:
- nyc npm test && nyc report --reporter=text-lcov | coveralls
after_success: npm run coverage
services: mongodb
cache:
directories:
- node_modules
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
notifications:
slack:
secure: hVsz2CR2YYLH5ULFymSRWviphQXnLmdWC06aQ+ZEGueGXt8B8wrDr73c34DmgYh059cfiZ31HVxA2wnILBj6KY1eiB23v5cxZ/hwC9B0586YPC1p7q5m8rpldwoW76A8eTR2ENatsky3/DU0kk5Mo0s1w+WOdKGClXQosyhLyCfl+UAbL5hPjNKYrdIAuaF2muf+yJWJC68y7PL/5YBQ+Ct8wFRwptwpOstEz/piLGtMeIuX0zuCgj6fpbISbymqCKPLF3si3m+Ru6F5hC/rVTYRSy1wKx3yb30rpC8GvkwS80X8brWolkJSr51YMOqbth7gzRc+n+EI9F2MtRCDiB0RxUmnB0XynTgbPvkkT8F0vIMrFi8YlKzZBLKkt8DYnSfrKdkaVBb6MmFAH97sKdi4h9rS2G1KQwfrujJi6Qo0O3NGE0bX21aogkp/K1S2Hwjn+c8WR9tFqJGD0wPBw0hb7mnAI3YML9Imdg2l/7yrPgRGE+EVz3GwuuluFs2ISKuqRI2hOfegBV7CSGOrQ/LS+5hml+H55eVs60wLnfNsMEuxbe9e+aJ8M87gOTa71LanuFcdCsv4LEU6CUhW10mSYWnRSSR0vol0aO/MBlAOvn+dQImTngzMUPHVniR8BRDLE6fJopbh+zI+9kPoo6YySZpi7MQ9iJlk4aqs/HM=
on_success: change
on_failure: always
on_pull_requests: false