From 18a8a5e9c37d0f876b0395a6d42c9d89ed25d971 Mon Sep 17 00:00:00 2001 From: Dom Dwyer Date: Fri, 21 Apr 2017 17:45:57 +0100 Subject: [PATCH] Run integration tests against MongoDB 3.2.12 --- .travis.yml | 3 +++ harness/daemons/.env | 4 +--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index f5c0c33a3..f489c96ac 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,6 +19,9 @@ env: - GO=1.6 MONGODB=x86_64-3.2.3-nojournal - GO=1.7 MONGODB=x86_64-3.2.3-nojournal - GO=1.8.x MONGODB=x86_64-3.2.3-nojournal + - GO=1.6 MONGODB=x86_64-3.2.12 + - GO=1.7 MONGODB=x86_64-3.2.12 + - GO=1.8.x MONGODB=x86_64-3.2.12 install: - eval "$(gimme $GO)" diff --git a/harness/daemons/.env b/harness/daemons/.env index 96ee89e94..5b9e0767c 100644 --- a/harness/daemons/.env +++ b/harness/daemons/.env @@ -37,14 +37,12 @@ COMMONCOPTS=" $COMMONDOPTS " COMMONSOPTS=" - --chunkSize 1 --bind_ip=127.0.0.1 " if versionAtLeast 3 2; then # 3.2 doesn't like --nojournal on config servers. - #COMMONCOPTS="$(echo "$COMMONCOPTS" | sed '/--nojournal/d')" - # Using a hacked version of MongoDB 3.2 for now. + COMMONCOPTS="$(echo "$COMMONCOPTS" | sed '/--nojournal/d')" # Go back to MMAPv1 so it's not super sluggish. :-( COMMONDOPTSNOIP="--storageEngine=mmapv1 $COMMONDOPTSNOIP"