Skip to content

Commit 6ebd2f1

Browse files
committed
Merge pull request #605
2 parents 9d50aa3 + b1d2cec commit 6ebd2f1

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

.travis.yml

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,33 +15,38 @@ cache:
1515
env:
1616
global:
1717
- DRIVER_VERSION=1.6.0alpha1
18-
- SERVER_VERSION=4.0.1
18+
- SERVER_DISTRO=ubuntu1604
19+
- SERVER_VERSION=4.0.6
1920
- DEPLOYMENT=STANDALONE
2021

2122
matrix:
2223
fast_finish: true
2324
include:
2425
- php: 5.5
2526
dist: trusty
27+
env:
28+
- SERVER_DISTRO=ubuntu1404
2629
- php: 5.6
2730
- php: 7.0
2831
- php: 7.1
2932
- php: 7.2
3033
- php: 7.0
34+
dist: trusty
3135
env:
36+
- SERVER_DISTRO=ubuntu1404
3237
- SERVER_VERSION=3.0.15
3338
- DEPLOYMENT=STANDALONE_OLD
3439
- php: 7.0
3540
env:
36-
- SERVER_VERSION=3.2.20
41+
- SERVER_VERSION=3.2.22
3742
- DEPLOYMENT=STANDALONE_OLD
3843
- php: 7.0
3944
env:
40-
- SERVER_VERSION=3.4.15
45+
- SERVER_VERSION=3.4.19
4146
- DEPLOYMENT=STANDALONE_OLD
4247
- php: 7.0
4348
env:
44-
- SERVER_VERSION=3.6.5
49+
- SERVER_VERSION=3.6.10
4550
- php: 7.2
4651
env:
4752
- DEPLOYMENT=STANDALONE_AUTH
@@ -57,9 +62,9 @@ matrix:
5762

5863
before_install:
5964
- pip install "mongo-orchestration>=0.6.7,<1.0" --user `whoami`
60-
- wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu1404-${SERVER_VERSION}.tgz
61-
- tar zxf mongodb-linux-x86_64-ubuntu1404-${SERVER_VERSION}.tgz
62-
- export PATH=${PWD}/mongodb-linux-x86_64-ubuntu1404-${SERVER_VERSION}/bin/:${PATH}
65+
- export SERVER_FILENAME=mongodb-linux-x86_64-${SERVER_DISTRO}-${SERVER_VERSION}
66+
- wget -qO- http://fastdl.mongodb.org/linux/${SERVER_FILENAME}.tgz | tar xz
67+
- export PATH=${PWD}/${SERVER_FILENAME}/bin:${PATH}
6368
- mongod --version
6469
- mongo-orchestration --version
6570
- export MO_PATH=`python -c 'import mongo_orchestration; from os import path; print(path.dirname(mongo_orchestration.__file__));'`

0 commit comments

Comments
 (0)