We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbfc4cf commit 9f78333Copy full SHA for 9f78333
.travis.yml
@@ -1,12 +1,30 @@
1
sudo: false
2
+
3
language: node_js
4
5
+env:
6
+ - CXX=g++-4.8
7
8
node_js:
9
- '0.10'
10
- '0.12'
11
- '4'
12
13
+addons:
14
+ apt:
15
+ sources:
16
+ - ubuntu-toolchain-r-test
17
+ packages:
18
+ - g++-4.8
19
20
services:
21
- mongodb
22
- redis
23
24
+before_install:
25
+ - $CXX --version
26
27
script: make test-cov
28
29
after_success: cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
30
0 commit comments