Skip to content

Commit 847ae15

Browse files
committed
Use jdk8 by default in shell scripts invoked by CI
1 parent 0c00878 commit 847ae15

5 files changed

+5
-5
lines changed

.evergreen/run-connectivity-tests.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ set -o errexit # Exit the script with error if any of the commands fail
99
# Support arguments:
1010
# Pass as many MongoDB URIS as arguments to this script as required
1111

12-
JDK=${JDK:-jdk}
12+
JDK=${JDK:-jdk8}
1313

1414
############################################
1515
# Main Program #

.evergreen/run-gssapi-auth-test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ set -o errexit # Exit the script with error if any of the commands fail
1212
# KEYTAB_BASE64 The BASE64-encoded keytab
1313
# PROJECT_DIRECTORY The project directory
1414

15-
JDK=${JDK:-jdk}
15+
JDK=${JDK:-jdk8}
1616

1717
############################################
1818
# Main Program #

.evergreen/run-plain-auth-test.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ set -o errexit # Exit the script with error if any of the commands fail
88
# JDK Set the version of java to be used. Java versions can be set from the java toolchain /opt/java
99
# "jdk5", "jdk6", "jdk7", "jdk8", "jdk9"
1010

11-
JDK=${JDK:-jdk}
11+
JDK=${JDK:-jdk8}
1212

1313
############################################
1414
# Main Program #

.evergreen/run-socket-tests.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ set -o errexit # Exit the script with error if any of the commands fail
1414

1515
AUTH=${AUTH:-noauth}
1616
MONGODB_URI=${MONGODB_URI:-}
17-
JDK=${JDK:-jdk}
17+
JDK=${JDK:-jdk8}
1818
TOPOLOGY=${TOPOLOGY:-server}
1919
COMPRESSOR=${COMPRESSOR:-}
2020

.evergreen/run-tests.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ set -o errexit # Exit the script with error if any of the commands fail
1919
AUTH=${AUTH:-noauth}
2020
SSL=${SSL:-nossl}
2121
MONGODB_URI=${MONGODB_URI:-}
22-
JDK=${JDK:-jdk}
22+
JDK=${JDK:-jdk8}
2323
TOPOLOGY=${TOPOLOGY:-server}
2424
COMPRESSOR=${COMPRESSOR:-}
2525
SLOW_TESTS_ONLY=${SLOW_TESTS_ONLY:-false}

0 commit comments

Comments
 (0)