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
|
|
|
|
matrix:
|
|
|
|
allow_failures:
|
2015-11-14 21:32:28 +00:00
|
|
|
- node_js: "5"
|
2016-04-29 09:59:53 +01:00
|
|
|
- node_js: "6"
|
2014-03-31 13:31:31 +01:00
|
|
|
node_js:
|
2016-04-29 09:59:53 +01:00
|
|
|
- "6"
|
2015-11-14 21:32:28 +00:00
|
|
|
- "5"
|
2015-10-03 09:15:11 +01:00
|
|
|
- "4"
|
2015-02-07 19:57:58 +00:00
|
|
|
- "0.12"
|
2014-03-31 13:31:31 +01:00
|
|
|
- "0.10"
|
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
|