2015-07-22 14:06:14 +02:00
|
|
|
sudo: false
|
2014-03-31 14:31:31 +02:00
|
|
|
language: node_js
|
2015-09-08 21:32:57 +02:00
|
|
|
env:
|
|
|
|
- CXX="g++-4.8"
|
|
|
|
addons:
|
|
|
|
apt:
|
|
|
|
sources:
|
|
|
|
- ubuntu-toolchain-r-test
|
|
|
|
packages:
|
|
|
|
- g++-4.8
|
|
|
|
- gcc-4.8
|
|
|
|
matrix:
|
|
|
|
allow_failures:
|
2016-10-06 14:31:59 +02:00
|
|
|
- node_js: "7"
|
2014-03-31 14:31:31 +02:00
|
|
|
node_js:
|
2016-10-06 14:31:59 +02:00
|
|
|
- "7"
|
2016-04-29 10:59:53 +02:00
|
|
|
- "6"
|
2015-10-03 10:15:11 +02:00
|
|
|
- "4"
|
2014-07-01 13:45:52 +02:00
|
|
|
script:
|
2014-09-08 15:02:53 +02: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 13:45:52 +02:00
|
|
|
before_script:
|
|
|
|
- npm install -g istanbul
|
2014-07-01 15:29:05 +02:00
|
|
|
- npm install coveralls
|