Skip to content

Commit 6ba562e

Browse files
committed
Evergreen: Support new java toolchain feature
JAVA-4357
1 parent cc061ee commit 6ba562e

21 files changed

+89
-109
lines changed

.evergreen/.evg.yml

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ functions:
3232
# Applies the subitted patch, if any
3333
# Deprecated. Should be removed. But still needed for certain agents (ZAP)
3434
- command: git.apply_patch
35-
# Make an evergreen exapanstion file with dynamic values
35+
# Make an evergreen expansion file with dynamic values
3636
- command: shell.exec
3737
params:
3838
working_dir: "src"
@@ -296,7 +296,7 @@ functions:
296296
export AWS_DEFAULT_REGION=us-east-1
297297
. ${DRIVERS_TOOLS}/.evergreen/csfle/set-temp-creds.sh
298298
AUTH="${AUTH}" SSL="${SSL}" MONGODB_URI="${MONGODB_URI}" SAFE_FOR_MULTI_MONGOS="${SAFE_FOR_MULTI_MONGOS}" TOPOLOGY="${TOPOLOGY}" \
299-
COMPRESSOR="${COMPRESSOR}" JDK="${JDK}" \
299+
COMPRESSOR="${COMPRESSOR}" JAVA_VERSION="${JAVA_VERSION}" \
300300
AWS_ACCESS_KEY_ID=${aws_access_key_id} AWS_SECRET_ACCESS_KEY=${aws_secret_access_key} \
301301
AWS_TEMP_ACCESS_KEY_ID=$CSFLE_AWS_TEMP_ACCESS_KEY_ID \
302302
AWS_TEMP_SECRET_ACCESS_KEY=$CSFLE_AWS_TEMP_SECRET_ACCESS_KEY \
@@ -313,7 +313,7 @@ functions:
313313
working_dir: "src"
314314
script: |
315315
${PREPARE_SHELL}
316-
AUTH="${AUTH}" SSL="${SSL}" JDK="${JDK}" \
316+
AUTH="${AUTH}" SSL="${SSL}" JAVA_VERSION="${JAVA_VERSION}" \
317317
SINGLE_MONGOS_LB_URI="${SINGLE_MONGOS_LB_URI}" \
318318
MULTI_MONGOS_LB_URI="${MULTI_MONGOS_LB_URI}" \
319319
.evergreen/run-load-balancer-tests.sh
@@ -325,7 +325,7 @@ functions:
325325
working_dir: "src"
326326
script: |
327327
${PREPARE_SHELL}
328-
JDK="${JDK}" \
328+
JAVA_VERSION="${JAVA_VERSION}" \
329329
SINGLE_ATLASPROXY_SERVERLESS_URI="${SINGLE_ATLASPROXY_SERVERLESS_URI}" \
330330
MULTI_ATLASPROXY_SERVERLESS_URI="${MULTI_ATLASPROXY_SERVERLESS_URI}" \
331331
SERVERLESS_ATLAS_USER="${SERVERLESS_ATLAS_USER}" \
@@ -348,7 +348,7 @@ functions:
348348
working_dir: "src"
349349
script: |
350350
${PREPARE_SHELL}
351-
AUTH="${AUTH}" SSL="${SSL}" MONGODB_URI="${MONGODB_URI}" TOPOLOGY="${TOPOLOGY}" COMPRESSOR="${COMPRESSOR}" JDK="${JDK}" SLOW_TESTS_ONLY=true .evergreen/run-tests.sh
351+
AUTH="${AUTH}" SSL="${SSL}" MONGODB_URI="${MONGODB_URI}" TOPOLOGY="${TOPOLOGY}" COMPRESSOR="${COMPRESSOR}" JAVA_VERSION="${JAVA_VERSION}" SLOW_TESTS_ONLY=true .evergreen/run-tests.sh
352352
353353
"run scala tests":
354354
- command: shell.exec
@@ -357,7 +357,7 @@ functions:
357357
working_dir: "src"
358358
script: |
359359
${PREPARE_SHELL}
360-
SCALA="${SCALA}" AUTH="${AUTH}" SSL="${SSL}" MONGODB_URI="${MONGODB_URI}" SAFE_FOR_MULTI_MONGOS="${SAFE_FOR_MULTI_MONGOS}" TOPOLOGY="${TOPOLOGY}" JDK="${JDK}" .evergreen/run-scala-tests.sh
360+
SCALA="${SCALA}" AUTH="${AUTH}" SSL="${SSL}" MONGODB_URI="${MONGODB_URI}" SAFE_FOR_MULTI_MONGOS="${SAFE_FOR_MULTI_MONGOS}" TOPOLOGY="${TOPOLOGY}" JAVA_VERSION="${JAVA_VERSION}" .evergreen/run-scala-tests.sh
361361
362362
"run socket tests":
363363
- command: shell.exec
@@ -366,7 +366,7 @@ functions:
366366
working_dir: "src"
367367
script: |
368368
${PREPARE_SHELL}
369-
AUTH="${AUTH}" MONGODB_URI="${MONGODB_URI}" TOPOLOGY="${TOPOLOGY}" COMPRESSOR="${COMPRESSOR}" JDK="${JDK}" .evergreen/run-socket-tests.sh
369+
AUTH="${AUTH}" MONGODB_URI="${MONGODB_URI}" TOPOLOGY="${TOPOLOGY}" COMPRESSOR="${COMPRESSOR}" JAVA_VERSION="${JAVA_VERSION}" .evergreen/run-socket-tests.sh
370370
371371
"run netty tests":
372372
- command: shell.exec
@@ -375,7 +375,7 @@ functions:
375375
working_dir: "src"
376376
script: |
377377
${PREPARE_SHELL}
378-
STREAM_TYPE="netty" AUTH="${AUTH}" SSL="${SSL}" NETTY_SSL_PROVIDER="${NETTY_SSL_PROVIDER}" MONGODB_URI="${MONGODB_URI}" TOPOLOGY="${TOPOLOGY}" COMPRESSOR="${COMPRESSOR}" JDK="${JDK}" .evergreen/run-tests.sh
378+
STREAM_TYPE="netty" AUTH="${AUTH}" SSL="${SSL}" NETTY_SSL_PROVIDER="${NETTY_SSL_PROVIDER}" MONGODB_URI="${MONGODB_URI}" TOPOLOGY="${TOPOLOGY}" COMPRESSOR="${COMPRESSOR}" JAVA_VERSION="${JAVA_VERSION}" .evergreen/run-tests.sh
379379
380380
"run plain auth test":
381381
- command: shell.exec
@@ -385,7 +385,7 @@ functions:
385385
working_dir: "src"
386386
script: |
387387
# DO NOT ECHO WITH XTRACE (which PREPARE_SHELL does)
388-
JDK="jdk8" MONGODB_URI="${plain_auth_mongodb_uri}" .evergreen/run-plain-auth-test.sh
388+
JAVA_VERSION="8" MONGODB_URI="${plain_auth_mongodb_uri}" .evergreen/run-plain-auth-test.sh
389389
390390
"add aws auth variables to file":
391391
- command: shell.exec
@@ -437,7 +437,7 @@ functions:
437437
PASS=$(urlencode ${iam_auth_ecs_secret_access_key})
438438
MONGODB_URI="mongodb://$USER:$PASS@localhost"
439439
EOF
440-
JDK=${JDK} PROJECT_DIRECTORY=${PROJECT_DIRECTORY} .evergreen/run-mongodb-aws-test.sh
440+
JAVA_VERSION=${JAVA_VERSION} PROJECT_DIRECTORY=${PROJECT_DIRECTORY} .evergreen/run-mongodb-aws-test.sh
441441
442442
"run aws auth test with assume role credentials":
443443
- command: shell.exec
@@ -466,7 +466,7 @@ functions:
466466
SESSION_TOKEN=$(urlencode $SESSION_TOKEN)
467467
MONGODB_URI="mongodb://$USER:$PASS@localhost"
468468
EOF
469-
JDK=${JDK} PROJECT_DIRECTORY=${PROJECT_DIRECTORY} DRIVERS_TOOLS=${DRIVERS_TOOLS} .evergreen/run-mongodb-aws-test.sh
469+
JAVA_VERSION=${JAVA_VERSION} PROJECT_DIRECTORY=${PROJECT_DIRECTORY} DRIVERS_TOOLS=${DRIVERS_TOOLS} .evergreen/run-mongodb-aws-test.sh
470470
471471
"run aws auth test with aws EC2 credentials":
472472
- command: shell.exec
@@ -484,7 +484,7 @@ functions:
484484
working_dir: "src"
485485
script: |
486486
${PREPARE_SHELL}
487-
JDK=${JDK} .evergreen/run-mongodb-aws-test.sh
487+
JAVA_VERSION=${JAVA_VERSION} .evergreen/run-mongodb-aws-test.sh
488488
489489
"run aws auth test with aws credentials as environment variables":
490490
- command: shell.exec
@@ -504,7 +504,7 @@ functions:
504504
working_dir: "src"
505505
script: |
506506
${PREPARE_SHELL}
507-
JDK=${JDK} .evergreen/run-mongodb-aws-test.sh
507+
JAVA_VERSION=${JAVA_VERSION} .evergreen/run-mongodb-aws-test.sh
508508
509509
"run aws auth test with aws credentials and session token as environment variables":
510510
- command: shell.exec
@@ -525,7 +525,7 @@ functions:
525525
working_dir: "src"
526526
script: |
527527
${PREPARE_SHELL}
528-
JDK=${JDK} .evergreen/run-mongodb-aws-test.sh
528+
JAVA_VERSION=${JAVA_VERSION} .evergreen/run-mongodb-aws-test.sh
529529
530530
"run aws ECS auth test":
531531
- command: shell.exec
@@ -551,7 +551,7 @@ functions:
551551
working_dir: "src"
552552
script: |
553553
${PREPARE_SHELL}
554-
JDK=${JDK} .evergreen/run-atlas-data-lake-test.sh
554+
JAVA_VERSION=${JAVA_VERSION} .evergreen/run-atlas-data-lake-test.sh
555555
556556
"run-ocsp-test":
557557
- command: shell.exec
@@ -563,7 +563,7 @@ functions:
563563
CA_FILE="$DRIVERS_TOOLS/.evergreen/ocsp/${OCSP_ALGORITHM}/ca.pem" \
564564
OCSP_TLS_SHOULD_SUCCEED="${OCSP_TLS_SHOULD_SUCCEED}" \
565565
OCSP_MUST_STAPLE="${OCSP_MUST_STAPLE}" \
566-
JDK="${JDK}" \
566+
JAVA_VERSION="${JAVA_VERSION}" \
567567
sh ${PROJECT_DIRECTORY}/.evergreen/run-ocsp-test.sh
568568
569569
"run-valid-ocsp-server-ca-responder":
@@ -650,7 +650,7 @@ functions:
650650
working_dir: "src"
651651
script: |
652652
# DO NOT ECHO WITH XTRACE (which PREPARE_SHELL does)
653-
PROJECT_DIRECTORY=${PROJECT_DIRECTORY} JDK=${JDK} MONGODB_URI=${gssapi_auth_mongodb_uri} KDC=${gssapi_auth_kdc} REALM=${gssapi_auth_realm} KEYTAB_BASE64=${gssapi_auth_keytab_base64} .evergreen/run-gssapi-auth-test.sh
653+
PROJECT_DIRECTORY=${PROJECT_DIRECTORY} JAVA_VERSION=${JAVA_VERSION} MONGODB_URI=${gssapi_auth_mongodb_uri} KDC=${gssapi_auth_kdc} REALM=${gssapi_auth_realm} KEYTAB_BASE64=${gssapi_auth_keytab_base64} .evergreen/run-gssapi-auth-test.sh
654654
655655
"run mmapv1 storage test":
656656
- command: shell.exec
@@ -660,7 +660,7 @@ functions:
660660
working_dir: "src"
661661
script: |
662662
${PREPARE_SHELL}
663-
PROJECT_DIRECTORY=${PROJECT_DIRECTORY} JDK=${JDK} TOPOLOGY=${TOPOLOGY} STORAGE_ENGINE=${STORAGE_ENGINE} MONGODB_URI="${MONGODB_URI}" .evergreen/run-mmapv1-storage-test.sh
663+
PROJECT_DIRECTORY=${PROJECT_DIRECTORY} JAVA_VERSION=${JAVA_VERSION} TOPOLOGY=${TOPOLOGY} STORAGE_ENGINE=${STORAGE_ENGINE} MONGODB_URI="${MONGODB_URI}" .evergreen/run-mmapv1-storage-test.sh
664664
665665
"run atlas test":
666666
- command: shell.exec
@@ -671,7 +671,7 @@ functions:
671671
script: |
672672
# DO NOT ECHO WITH XTRACE (which PREPARE_SHELL does)
673673
# The connection strings are pipe-delimited
674-
JDK="jdk8" \
674+
JAVA_VERSION="8" \
675675
MONGODB_URIS="${atlas_free_tier_uri}|${atlas_replica_set_uri}|${atlas_sharded_uri}|${atlas_tls_v11_uri}|${atlas_tls_v12_uri}|${atlas_free_tier_uri_srv}|${atlas_replica_set_uri_srv}|${atlas_sharded_uri_srv}|${atlas_tls_v11_uri_srv}|${atlas_tls_v12_uri_srv}|${atlas_serverless_uri}|${atlas_serverless_uri_srv}" \
676676
.evergreen/run-connectivity-tests.sh
677677
@@ -1491,15 +1491,15 @@ axes:
14911491
- id: "jdk17"
14921492
display_name: JDK17
14931493
variables:
1494-
JDK: "jdk17"
1494+
JAVA_VERSION: "17"
14951495
- id: "jdk11"
14961496
display_name: JDK11
14971497
variables:
1498-
JDK: "jdk11"
1498+
JAVA_VERSION: "11"
14991499
- id: "jdk8"
15001500
display_name: JDK8
15011501
variables:
1502-
JDK: "jdk8"
1502+
JAVA_VERSION: "8"
15031503

15041504
- id: scala
15051505
display_name: SCALA

.evergreen/compile.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,9 @@ set -o errexit # Exit the script with error if any of the commands fail
66
############################################
77
# Main Program #
88
############################################
9+
source "${BASH_SOURCE%/*}/javaConfig.bash"
910

10-
echo "Compiling java driver with jdk11"
11+
echo "Compiling java driver"
1112

12-
# We always compile with the latest version of java
13-
export JAVA_HOME="/opt/java/jdk11"
1413
./gradlew -version
15-
./gradlew -PjdkHome=/opt/java/jdk17 -PxmlReports.enabled=true --info -x test -x integrationTest clean check jar testClasses docs
14+
./gradlew -PxmlReports.enabled=true --info -x test -x integrationTest clean check jar testClasses docs

.evergreen/javaConfig.bash

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Java configurations for evergreen
2+
# Defaults to Java 11
3+
4+
export JDK8="/opt/java/jdk8"
5+
export JDK11="/opt/java/jdk11"
6+
export JDK17="/opt/java/jdk17"
7+
export JAVA_HOME=$JDK11
8+
9+
export JAVA_VERSION=${JDK:-11}
10+
11+
echo "Java Configs:"
12+
echo "Java Home: ${JAVA_HOME}"
13+
echo "Java test version: ${JAVA_VERSION}"

.evergreen/publish.sh

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,23 +7,22 @@ set -o errexit # Exit the script with error if any of the commands fail
77
############################################
88
# Main Program #
99
############################################
10+
source "${BASH_SOURCE%/*}/javaConfig.bash"
11+
1012
RELEASE=${RELEASE:false}
1113

1214
export ORG_GRADLE_PROJECT_nexusUsername=${NEXUS_USERNAME}
1315
export ORG_GRADLE_PROJECT_nexusPassword=${NEXUS_PASSWORD}
1416
export ORG_GRADLE_PROJECT_signingKey="${SIGNING_KEY}"
1517
export ORG_GRADLE_PROJECT_signingPassword=${SIGNING_PASSWORD}
1618

17-
echo "Publishing snapshot with jdk11"
18-
export JAVA_HOME="/opt/java/jdk11"
19-
2019
if [ "$RELEASE" == "true" ]; then
2120
TASK="publishArchives"
2221
else
2322
TASK="publishSnapshots"
2423
fi
2524

26-
SYSTEM_PROPERTIES="-PjdkHome=/opt/java/jdk17 -Dorg.gradle.internal.publish.checksums.insecure=true -Dorg.gradle.internal.http.connectionTimeout=120000 -Dorg.gradle.internal.http.socketTimeout=120000"
25+
SYSTEM_PROPERTIES="-Dorg.gradle.internal.publish.checksums.insecure=true -Dorg.gradle.internal.http.connectionTimeout=120000 -Dorg.gradle.internal.http.socketTimeout=120000"
2726

2827
./gradlew -version
2928
./gradlew ${SYSTEM_PROPERTIES} --stacktrace --info ${TASK}

.evergreen/run-atlas-data-lake-test.sh

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,21 +7,19 @@ 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", "jdk11"
99

10-
JDK=${JDK:-jdk11}
11-
1210
############################################
1311
# Main Program #
1412
############################################
13+
source "${BASH_SOURCE%/*}/javaConfig.bash"
1514

1615
echo "Running Atlas Data Lake driver tests"
1716

18-
export JAVA_HOME="/opt/java/${JDK}"
19-
2017
# show test output
2118
set -x
2219

2320
DATA_LAKE_URI="mongodb://mhuser:pencil@localhost"
2421

25-
echo "Running Atlas Data Lake tests with ${JDK}"
22+
echo "Running Atlas Data Lake tests with Java ${JAVA_VERSION}"
2623
./gradlew -version
27-
./gradlew -PjdkHome=${JAVA_HOME} -Dorg.mongodb.test.data.lake=true -Dorg.mongodb.test.uri=${DATA_LAKE_URI} --info driver-sync:test --tests AtlasDataLake*Test
24+
./gradlew -PjavaVersion=${JAVA_VERSION} -Dorg.mongodb.test.data.lake=true -Dorg.mongodb.test.uri=${DATA_LAKE_URI} \
25+
--info driver-sync:test --tests AtlasDataLake*Test

.evergreen/run-connectivity-tests.sh

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,14 @@ set -o errexit
99
# Support arguments:
1010
# Pass as many MongoDB URIS as arguments to this script as required
1111

12-
JDK=${JDK:-jdk8}
13-
1412
############################################
1513
# Main Program #
1614
############################################
15+
source "${BASH_SOURCE%/*}/javaConfig.bash"
1716

18-
echo "Running connectivity tests with ${JDK}"
19-
20-
export JAVA_HOME="/opt/java/jdk11"
17+
echo "Running connectivity tests with Java ${JAVA_VERSION}"
2118

22-
./gradlew -PjdkHome=/opt/java/${JDK} -Dorg.mongodb.test.connectivity.uris="${MONGODB_URIS}" --info --continue \
19+
./gradlew -PjavaVersion=${JAVA_VERSION} -Dorg.mongodb.test.connectivity.uris="${MONGODB_URIS}" --info --continue \
2320
driver-sync:test --tests ConnectivityTest \
2421
driver-legacy:test --tests ConnectivityTest \
2522
driver-reactive-streams:test --tests ConnectivityTest

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

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,10 @@ 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:-jdk8}
16-
1715
############################################
1816
# Main Program #
1917
############################################
18+
source "${BASH_SOURCE%/*}/javaConfig.bash"
2019

2120
echo "Running GSSAPI authentication tests"
2221

@@ -31,13 +30,9 @@ com.sun.security.jgss.krb5.initiate {
3130
};
3231
EOF
3332

34-
echo "Compiling java driver with jdk11"
35-
36-
export JAVA_HOME="/opt/java/jdk11"
37-
38-
echo "Running tests with ${JDK}"
33+
echo "Running tests with Java ${JAVA_VERSION}"
3934
./gradlew -version
40-
./gradlew -PjdkHome=/opt/java/${JDK} --stacktrace --info \
35+
./gradlew -PjavaVersion=${JAVA_VERSION} --stacktrace --info \
4136
-Dorg.mongodb.test.uri=${MONGODB_URI} \
4237
-Pgssapi.enabled=true -Psun.security.krb5.debug=true -Pauth.login.config=file://${PROJECT_DIRECTORY}/.evergreen/java.login.drivers.config \
4338
-Pkrb5.kdc=${KDC} -Pkrb5.realm=${REALM} -Psun.security.krb5.debug=true \

.evergreen/run-kms-tls-tests.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,9 @@ set -o errexit # Exit the script with error if any of the commands fail
1010
############################################
1111
# Main Program #
1212
############################################
13-
13+
source "${BASH_SOURCE%/*}/javaConfig.bash"
1414
echo "Running KMS TLS tests"
1515

16-
export JAVA_HOME="/opt/java/jdk11"
17-
1816
cp ${JAVA_HOME}/lib/security/cacerts mongo-truststore
1917
${JAVA_HOME}/bin/keytool -importcert -trustcacerts -file ${DRIVERS_TOOLS}/.evergreen/x509gen/ca.pem -keystore mongo-truststore -storepass changeit -storetype JKS -noprompt
2018

.evergreen/run-load-balancer-tests.sh

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,11 @@ set -o errexit # Exit the script with error if any of the commands fail
1313
AUTH=${AUTH:-noauth}
1414
SSL=${SSL:-nossl}
1515
MONGODB_URI=${MONGODB_URI:-}
16-
JDK=${JDK:-jdk8}
17-
18-
export JAVA_HOME="/opt/java/jdk11"
1916

2017
############################################
2118
# Main Program #
2219
############################################
20+
source "${BASH_SOURCE%/*}/javaConfig.bash"
2321

2422
if [ "$SSL" != "nossl" ]; then
2523
# We generate the keystore and truststore on every run with the certs in the drivers-tools repo
@@ -38,15 +36,15 @@ fi
3836

3937
echo "Running $AUTH tests over $SSL and connecting to $SINGLE_MONGOS_LB_URI"
4038

41-
echo "Running tests with ${JDK}"
39+
echo "Running tests with Java ${JAVA_VERSION}"
4240
./gradlew -version
4341

4442
# Disabling errexit so that both gradle command will run.
4543
# Then we exit with non-zero if either of them exited with non-zero
4644

4745
set +o errexit
4846

49-
./gradlew -PjdkHome=/opt/java/${JDK} \
47+
./gradlew -PjavaVersion=${JAVA_VERSION} \
5048
-Dorg.mongodb.test.uri=${SINGLE_MONGOS_LB_URI} \
5149
-Dorg.mongodb.test.multi.mongos.uri=${MULTI_MONGOS_LB_URI} \
5250
${GRADLE_EXTRA_VARS} --stacktrace --info --continue driver-sync:test \
@@ -61,7 +59,7 @@ set +o errexit
6159
first=$?
6260
echo $first
6361

64-
./gradlew -PjdkHome=/opt/java/${JDK} \
62+
./gradlew -PjavaVersion=${JAVA_VERSION} \
6563
-Dorg.mongodb.test.uri=${SINGLE_MONGOS_LB_URI} \
6664
-Dorg.mongodb.test.multi.mongos.uri=${MULTI_MONGOS_LB_URI} \
6765
${GRADLE_EXTRA_VARS} --stacktrace --info --continue driver-reactive-stream:test \
@@ -76,7 +74,7 @@ echo $first
7674
second=$?
7775
echo $second
7876

79-
./gradlew -PjdkHome=/opt/java/${JDK} \
77+
./gradlew -PjavaVersion=${JAVA_VERSION} \
8078
-Dorg.mongodb.test.uri=${SINGLE_MONGOS_LB_URI} \
8179
-Dorg.mongodb.test.multi.mongos.uri=${MULTI_MONGOS_LB_URI} \
8280
${GRADLE_EXTRA_VARS} --stacktrace --info --continue driver-core:test \

0 commit comments

Comments
 (0)