Skip to content
This repository was archived by the owner on Oct 18, 2021. It is now read-only.

Commit 0bbf0bc

Browse files
committed
update travis to use 3.0.12 and 3.2.9
1 parent 4398cfb commit 0bbf0bc

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.travis.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,23 +3,23 @@ language: rust
33
cache: cargo
44

55
before_install:
6-
- wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.0.10.tgz
7-
- tar xvf mongodb-linux-x86_64-3.0.10.tgz
8-
- mv mongodb-linux-x86_64-3.0.10 3.0.10
9-
- wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.2.4.tgz
10-
- tar xvf mongodb-linux-x86_64-3.2.4.tgz
11-
- mv mongodb-linux-x86_64-3.2.4 3.2.4
6+
- wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.0.12.tgz
7+
- tar xvf mongodb-linux-x86_64-3.0.12.tgz
8+
- mv mongodb-linux-x86_64-3.0.12 3.0.12
9+
- wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.2.9.tgz
10+
- tar xvf mongodb-linux-x86_64-3.2.9.tgz
11+
- mv mongodb-linux-x86_64-3.2.9 3.2.9
1212

1313
env:
1414
- RUST_TEST_THREADS=1
1515

1616
script:
1717
- mkdir -p ./data/db ./data/test ./data/db2 ./data/test2
18-
- 3.0.10/bin/mongod --fork --nopreallocj --dbpath ./data/db --syslog --port 27017
19-
- 3.0.10/bin/mongod --fork --nopreallocj --dbpath ./data/test --syslog --port 27018
18+
- 3.0.12/bin/mongod --fork --nopreallocj --dbpath ./data/db --syslog --port 27017
19+
- 3.0.12/bin/mongod --fork --nopreallocj --dbpath ./data/test --syslog --port 27018
2020
- cargo build --verbose
2121
- cargo test v3_0 --verbose
2222
- killall mongod
23-
- 3.2.4/bin/mongod --fork --nopreallocj --dbpath ./data/db2 --syslog --port 27017
24-
- 3.2.4/bin/mongod --fork --nopreallocj --dbpath ./data/test2 --syslog --port 27018
23+
- 3.2.9/bin/mongod --fork --nopreallocj --dbpath ./data/db2 --syslog --port 27017
24+
- 3.2.9/bin/mongod --fork --nopreallocj --dbpath ./data/test2 --syslog --port 27018
2525
- cargo test v3_2 --verbose

0 commit comments

Comments
 (0)