File tree Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Expand file tree Collapse file tree 2 files changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -330,7 +330,7 @@ functions:
330
330
params :
331
331
script : |
332
332
${PREPARE_SHELL}
333
- MONGODB_VERSION=${VERSION} PROJECT_DIR =${PROJECT_DIR } CONFIG=${CONFIG} TOPOLOGY=${TOPOLOGY} sh ${PROJECT_DIRECTORY}/.evergreen/run-orchestration.sh
333
+ MONGODB_VERSION=${VERSION} PROJECT_DIRECTORY =${PROJECT_DIRECTORY } CONFIG=${CONFIG} TOPOLOGY=${TOPOLOGY} sh ${PROJECT_DIRECTORY}/.evergreen/run-orchestration.sh
334
334
# run-orchestration generates expansion file with the MONGODB_URI for the cluster
335
335
- command : expansions.update
336
336
params :
@@ -560,7 +560,7 @@ buildvariants:
560
560
561
561
- matrix_name : " tests-os-requires-40"
562
562
matrix_spec : {"os-requires-40": "*", "versions": "*", "php-versions": "*" }
563
- display_name : " ${php-versions} ${ os-requires-40}: ${ versions}"
563
+ display_name : " ${os-requires-40}: MongoDB ${versions} with ${php- versions}"
564
564
tasks :
565
565
- name : " test-standalone"
566
566
- name : " test-replicaset"
Original file line number Diff line number Diff line change @@ -26,7 +26,21 @@ download_and_extract "$MONGODB_DOWNLOAD_URL" "$EXTRACT"
26
26
DL_END=$( date +%s)
27
27
MO_START=$( date +%s)
28
28
29
- export ORCHESTRATION_FILE=" $PROJECT_DIRECTORY /scripts/presets/travis/${TOPOLOGY} "
29
+ ORCHESTRATION_FILE=" basic"
30
+ if [ " $AUTH " = " auth" ]; then
31
+ ORCHESTRATION_FILE=" auth"
32
+ fi
33
+
34
+ if [ " $SSL " != " nossl" ]; then
35
+ ORCHESTRATION_FILE=" ${ORCHESTRATION_FILE} -ssl"
36
+ fi
37
+
38
+ # Storage engine config files do not exist for different topology, auth, or ssl modes.
39
+ if [ ! -z " $STORAGE_ENGINE " ]; then
40
+ ORCHESTRATION_FILE=" $STORAGE_ENGINE "
41
+ fi
42
+
43
+ export ORCHESTRATION_FILE=" $PROJECT_DIRECTORY /scripts/presets/travis/${TOPOLOGY} s/${ORCHESTRATION_FILE} .json"
30
44
export ORCHESTRATION_URL=" http://localhost:8889/v1/${TOPOLOGY} s"
31
45
32
46
# Start mongo-orchestration
You can’t perform that action at this time.
0 commit comments