TravisCI: change dist to xenial
- Change distribution to `xenial` - Remove custom mongodb 4.0 installation since xenial ships with 4.0 - Increase wait time from 5 to 15 seconds
This commit is contained in:
parent
9d34fc0231
commit
8102c42888
2 changed files with 2 additions and 2 deletions
|
|
@ -1,8 +1,8 @@
|
||||||
language: clojure
|
language: clojure
|
||||||
sudo: required
|
sudo: required
|
||||||
lein: lein
|
lein: lein
|
||||||
|
dist: xenial
|
||||||
before_script:
|
before_script:
|
||||||
- ./bin/ci/install_mongodb.sh
|
|
||||||
- mongod --version
|
- mongod --version
|
||||||
- ./bin/ci/before_script.sh
|
- ./bin/ci/before_script.sh
|
||||||
script: lein do clean, javac, test
|
script: lein do clean, javac, test
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
# MongoDB seems to need some time to boot first. MK.
|
# MongoDB seems to need some time to boot first. MK.
|
||||||
sleep 5
|
sleep 15
|
||||||
|
|
||||||
# MongoDB Java driver won't run authentication twice on the same DB instance,
|
# MongoDB Java driver won't run authentication twice on the same DB instance,
|
||||||
# so we need to use multiple DBs.
|
# so we need to use multiple DBs.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue