Skip to content

Commit

Permalink
Use jdk8 by default in shell scripts invoked by CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jyemin committed Dec 8, 2020
1 parent 0c00878 commit 847ae15
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .evergreen/run-connectivity-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ set -o errexit # Exit the script with error if any of the commands fail
# Support arguments:
# Pass as many MongoDB URIS as arguments to this script as required

JDK=${JDK:-jdk}
JDK=${JDK:-jdk8}

############################################
# Main Program #
Expand Down
2 changes: 1 addition & 1 deletion .evergreen/run-gssapi-auth-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ set -o errexit # Exit the script with error if any of the commands fail
# KEYTAB_BASE64 The BASE64-encoded keytab
# PROJECT_DIRECTORY The project directory

JDK=${JDK:-jdk}
JDK=${JDK:-jdk8}

############################################
# Main Program #
Expand Down
2 changes: 1 addition & 1 deletion .evergreen/run-plain-auth-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ set -o errexit # Exit the script with error if any of the commands fail
# JDK Set the version of java to be used. Java versions can be set from the java toolchain /opt/java
# "jdk5", "jdk6", "jdk7", "jdk8", "jdk9"

JDK=${JDK:-jdk}
JDK=${JDK:-jdk8}

############################################
# Main Program #
Expand Down
2 changes: 1 addition & 1 deletion .evergreen/run-socket-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ set -o errexit # Exit the script with error if any of the commands fail

AUTH=${AUTH:-noauth}
MONGODB_URI=${MONGODB_URI:-}
JDK=${JDK:-jdk}
JDK=${JDK:-jdk8}
TOPOLOGY=${TOPOLOGY:-server}
COMPRESSOR=${COMPRESSOR:-}

Expand Down
2 changes: 1 addition & 1 deletion .evergreen/run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ set -o errexit # Exit the script with error if any of the commands fail
AUTH=${AUTH:-noauth}
SSL=${SSL:-nossl}
MONGODB_URI=${MONGODB_URI:-}
JDK=${JDK:-jdk}
JDK=${JDK:-jdk8}
TOPOLOGY=${TOPOLOGY:-server}
COMPRESSOR=${COMPRESSOR:-}
SLOW_TESTS_ONLY=${SLOW_TESTS_ONLY:-false}
Expand Down

0 comments on commit 847ae15

Please sign in to comment.