We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f3ae83 commit 0c342afCopy full SHA for 0c342af
1 file changed
.travis.yml
@@ -1,22 +1,33 @@
1
language: node_js
2
sudo: false
3
node_js:
4
+ - 0.12
5
+ - 4
6
+ - 6
7
- 8
8
services:
9
- redis-server
- - mongodb
10
script:
11
- npm run coverage
12
after_success:
13
- npm run publish-coverage
14
env:
- - CXX=g++-4.8
15
+ global:
16
+ - CC=gcc-4.8
17
+ - CXX=g++-4.8
18
+ - MONGODB_VERSION="3.4.9"
19
addons:
20
apt:
21
sources:
22
- ubuntu-toolchain-r-test
23
packages:
24
+ - gcc-4.8
25
- g++-4.8
26
- libzmq3-dev
27
before_install:
28
+ - wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-$MONGODB_VERSION.tgz
29
+ - tar xfz mongodb-linux-x86_64-$MONGODB_VERSION.tgz
30
+ - export PATH=`pwd`/mongodb-linux-x86_64-$MONGODB_VERSION/bin:$PATH
31
+ - mkdir -p data/db
32
+ - mongod --dbpath=data/db > /dev/null &
33
- sleep 5
0 commit comments