Skip to content

Commit 265e647

Browse files
committed
Merge pull request #958
2 parents c5562a3 + 1436648 commit 265e647

File tree

1 file changed

+14
-7
lines changed

1 file changed

+14
-7
lines changed

.travis.yml

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ env:
1111
global:
1212
- TEST_PHP_ARGS="-q -s output.txt -g XFAIL,FAIL,BORK,WARN,LEAK,SKIP -x --show-diff"
1313
- REPORT_EXIT_STATUS=1
14-
- SERVER_VERSION=4.0.0
14+
- SERVER_DISTRO=ubuntu1604
15+
- SERVER_VERSION=4.0.6
1516
- DEPLOYMENT=STANDALONE
1617

1718
matrix:
@@ -22,6 +23,8 @@ matrix:
2223
- TEST_PHP_ARGS="-q -s output.txt -x --show-diff"
2324
- php: 5.5
2425
dist: trusty
26+
env:
27+
- SERVER_DISTRO=ubuntu1404
2528
- php: 5.6
2629
- php: 7.0
2730
- php: 7.1
@@ -49,32 +52,36 @@ matrix:
4952
env:
5053
- DEPLOYMENT=REPLICASET_AUTH
5154
- php: 7.1
55+
dist: trusty
5256
env:
57+
- SERVER_DISTRO=ubuntu1404
5358
- SERVER_VERSION=3.0.15
5459
- DEPLOYMENT=REPLICASET_OLD
5560
- php: 7.1
61+
dist: trusty
5662
env:
63+
- SERVER_DISTRO=ubuntu1404
5764
- SERVER_VERSION=3.0.15
5865
- DEPLOYMENT=STANDALONE_OLD
5966
- php: 7.1
6067
env:
61-
- SERVER_VERSION=3.2.20
68+
- SERVER_VERSION=3.2.22
6269
- DEPLOYMENT=STANDALONE_OLD
6370
- php: 7.1
6471
env:
65-
- SERVER_VERSION=3.4.15
72+
- SERVER_VERSION=3.4.19
6673
- DEPLOYMENT=STANDALONE_OLD
6774
- php: 7.1
6875
env:
69-
- SERVER_VERSION=3.6.5
76+
- SERVER_VERSION=3.6.10
7077

7178
before_install:
7279
- openssl aes-256-cbc -K $encrypted_b354efda2943_key -iv $encrypted_b354efda2943_iv -in .travis.scripts/atlas-uris.txt.enc -out .travis.scripts/atlas-uris.txt -d || true
7380
- pip install "mongo-orchestration>=0.6.7,<1.0" --user `whoami`
7481
- .travis.scripts/before_install.sh
75-
- wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-ubuntu1404-${SERVER_VERSION}.tgz
76-
- tar zxf mongodb-linux-x86_64-ubuntu1404-${SERVER_VERSION}.tgz
77-
- export PATH=${PWD}/mongodb-linux-x86_64-ubuntu1404-${SERVER_VERSION}/bin:${PATH}
82+
- export SERVER_FILENAME=mongodb-linux-x86_64-${SERVER_DISTRO}-${SERVER_VERSION}
83+
- wget -qO- http://fastdl.mongodb.org/linux/${SERVER_FILENAME}.tgz | tar xz
84+
- export PATH=${PWD}/${SERVER_FILENAME}/bin:${PATH}
7885
- mongod --version
7986
- mongo-orchestration --version
8087
- export MO_PATH=`python -c 'import mongo_orchestration; from os import path;

0 commit comments

Comments
 (0)