2015-07-22 13:06:14 +01:00
|
|
|
sudo: false
|
2014-03-31 13:31:31 +01:00
|
|
|
language: node_js
|
2015-09-08 15:32:57 -04:00
|
|
|
env:
|
|
|
|
- CXX="g++-4.8"
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
packages:
|
|
|
|
- g++-4.8
|
|
|
|
- gcc-4.8
|
2014-03-31 13:31:31 +01:00
|
|
|
node_js:
|
2017-06-05 08:50:37 +01:00
|
|
|
- "8"
|
2016-04-29 09:59:53 +01:00
|
|
|
- "6"
|
2015-10-03 09:15:11 +01:00
|
|
|
- "4"
|
2014-07-01 12:45:52 +01:00
|
|
|
script:
|
2014-09-08 14:02:53 +01:00
|
|
|
- istanbul cover ./node_modules/.bin/grunt --report lcovonly && istanbul report text && ( cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js || true ) && rm -rf coverage
|
2014-07-01 12:45:52 +01:00
|
|
|
before_script:
|
|
|
|
- npm install -g istanbul
|
2014-07-01 14:29:05 +01:00
|
|
|
- npm install coveralls
|