Skip to content

Commit b491206

Browse files
committed
Use jdk8 by default in shell scripts invoked by CI
1 parent 939a8fc commit b491206

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.evergreen/run-connectivity-tests.sh

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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-mmapv1-storage-test.sh

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

10-
JDK=${JDK:-jdk}
10+
JDK=${JDK:-jdk8}
1111

1212
############################################
1313
# Main Program #

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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ set -o errexit # Exit the script with error if any of the commands fail
2020
AUTH=${AUTH:-noauth}
2121
SSL=${SSL:-nossl}
2222
MONGODB_URI=${MONGODB_URI:-}
23-
JDK=${JDK:-jdk}
23+
JDK=${JDK:-jdk8}
2424
TOPOLOGY=${TOPOLOGY:-server}
2525
COMPRESSOR=${COMPRESSOR:-}
2626
STREAM_TYPE=${STREAM_TYPE:-nio2}

0 commit comments

Comments
 (0)