Skip to content

Commit 2e03abf

Browse files
authored
Fix Evergreen config issues (#690)
1 parent 2b946da commit 2e03abf

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.evergreen/config.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,11 +176,12 @@ functions:
176176
silent: true
177177
working_dir: "src"
178178
script: |
179-
# DO NOT ECHO WITH XTRACE (which PREPARE_SHELL does)
179+
${PREPARE_SHELL}
180+
set +o xtrace
180181
SWIFT_VERSION=${SWIFT_VERSION} ATLAS_REPL='${ATLAS_REPL}' ATLAS_SHRD='${ATLAS_SHRD}' ATLAS_FREE='${ATLAS_FREE}' ATLAS_TLS11='${ATLAS_TLS11}' ATLAS_TLS12='${ATLAS_TLS12}' \
181182
ATLAS_REPL_SRV='${ATLAS_REPL_SRV}' ATLAS_SHRD_SRV='${ATLAS_SHRD_SRV}' ATLAS_FREE_SRV='${ATLAS_FREE_SRV}' ATLAS_TLS11_SRV='${ATLAS_TLS11_SRV}' ATLAS_TLS12_SRV='${ATLAS_TLS12_SRV}' \
182183
ATLAS_SERVERLESS='${ATLAS_SERVERLESS}' ATLAS_SERVERLESS_SRV='${ATLAS_SERVERLESS_SRV}' \
183-
sh ${PROJECT_DIRECTORY}/.evergreen/run-atlas-tests.sh
184+
${PROJECT_DIRECTORY}/.evergreen/run-atlas-tests.sh
184185
185186
"run serverless tests":
186187
- command: shell.exec
@@ -198,7 +199,7 @@ functions:
198199
SINGLE_MONGOS_LB_URI="${SINGLE_ATLASPROXY_SERVERLESS_URI}" \
199200
MULTI_MONGOS_LB_URI="${MULTI_ATLASPROXY_SERVERLESS_URI}" \
200201
SWIFT_VERSION="${SWIFT_VERSION}" \
201-
sh ${PROJECT_DIRECTORY}/.evergreen/run-serverless-tests.sh
202+
${PROJECT_DIRECTORY}/.evergreen/run-serverless-tests.sh
202203
203204
"run ocsp test":
204205
- command: shell.exec

.evergreen/run-atlas-tests.sh

100644100755
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/sh
1+
#!/bin/bash
22
set -o errexit # Exit the script with error if any of the commands fail
33

44
# variables

.evergreen/run-serverless-tests.sh

100644100755
File mode changed.

0 commit comments

Comments
 (0)