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

Commit b2fa20b

Browse files
committed
update travis to use newest releases
1 parent 5eb1148 commit b2fa20b

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
@@ -1,23 +1,23 @@
11
language: rust
22

33
before_install:
4-
- wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.0.7.tgz
5-
- tar xvf mongodb-linux-x86_64-3.0.7.tgz
6-
- mv mongodb-linux-x86_64-3.0.7 3.0.7
7-
- wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.2.0.tgz
8-
- tar xvf mongodb-linux-x86_64-3.2.0.tgz
9-
- mv mongodb-linux-x86_64-3.2.0 3.2.0
4+
- wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.0.10.tgz
5+
- tar xvf mongodb-linux-x86_64-3.0.10.tgz
6+
- mv mongodb-linux-x86_64-3.0.10 3.0.10
7+
- wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.2.4.tgz
8+
- tar xvf mongodb-linux-x86_64-3.2.4.tgz
9+
- mv mongodb-linux-x86_64-3.2.0 3.2.4
1010

1111
env:
1212
- RUST_TEST_THREADS=1
1313

1414
script:
1515
- mkdir -p ./data/db ./data/test ./data/db2 ./data/test2
16-
- 3.0.7/bin/mongod --fork --nopreallocj --dbpath ./data/db --syslog --port 27017
17-
- 3.0.7/bin/mongod --fork --nopreallocj --dbpath ./data/test --syslog --port 27018
16+
- 3.0.10/bin/mongod --fork --nopreallocj --dbpath ./data/db --syslog --port 27017
17+
- 3.0.10/bin/mongod --fork --nopreallocj --dbpath ./data/test --syslog --port 27018
1818
- cargo build --verbose
1919
- cargo test v3_0 --verbose
2020
- killall mongod
21-
- 3.2.0/bin/mongod --fork --nopreallocj --dbpath ./data/db2 --syslog --port 27017
22-
- 3.2.0/bin/mongod --fork --nopreallocj --dbpath ./data/test2 --syslog --port 27018
21+
- 3.2.4/bin/mongod --fork --nopreallocj --dbpath ./data/db2 --syslog --port 27017
22+
- 3.2.4/bin/mongod --fork --nopreallocj --dbpath ./data/test2 --syslog --port 27018
2323
- cargo test v3_2 --verbose

0 commit comments

Comments
 (0)