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 f4aea0f commit 73803d9Copy full SHA for 73803d9
.travis.yml
@@ -7,13 +7,19 @@ branches:
7
only:
8
- master
9
10
+env:
11
+ - CXX=g++-4.8
12
+
13
services: mongodb
14
15
addons:
16
apt:
17
sources:
- - mongodb-3.0-precise
18
+ - mongodb-3.0-precise
19
+ - ubuntu-toolchain-r-test
20
packages:
- - mongodb-org-server
21
+ - mongodb-org-server
22
+ - g++-4.8
23
24
script: npm test && ./run_integration.sh
25
after_script: cat ./coverage/coverage-final.json | ./node_modules/codecov.io/bin/codecov.io.js && rm -rf ./coverage
run_integration.sh
@@ -6,6 +6,6 @@ npm install
6
node server.js &
PID=$!
npm test
-C=$!
+C=$?
kill -9 $PID
exit $C
0 commit comments