From 8102c42888ed797cb1b77c0c4dce57e2199c02dd Mon Sep 17 00:00:00 2001 From: Chris Broome Date: Tue, 4 Dec 2018 22:33:34 -0500 Subject: [PATCH] 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 --- .travis.yml | 2 +- bin/ci/before_script.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index d9e866d..62d76e3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,8 @@ language: clojure sudo: required lein: lein +dist: xenial before_script: - - ./bin/ci/install_mongodb.sh - mongod --version - ./bin/ci/before_script.sh script: lein do clean, javac, test diff --git a/bin/ci/before_script.sh b/bin/ci/before_script.sh index 711d6dd..77f1a97 100755 --- a/bin/ci/before_script.sh +++ b/bin/ci/before_script.sh @@ -1,7 +1,7 @@ #!/bin/sh # 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, # so we need to use multiple DBs.