We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5842239 commit e5505d4Copy full SHA for e5505d4
.evergreen/prepare-shell.sh
@@ -30,8 +30,11 @@ export TMPDIR="$MONGO_ORCHESTRATION_HOME/db"
30
export PATH="$MONGODB_BINARIES:$PATH"
31
32
# Note the evergreen option on git.get_project recurse_submodules does not work, so do it here.
33
+# We ignore errors in case we are running in a container where git doesn't trust the tmp directory.
34
+set +e
35
git submodule init
36
git submodule update
37
+set -e
38
39
ls -la $DRIVERS_TOOLS
40
.evergreen/run-alpine-fle-tests.sh
@@ -9,5 +9,7 @@ set -o xtrace
9
export npm_config_cache=$(pwd)/.cache
10
npm install
11
12
+ls -la $DRIVERS_TOOLS
13
+
14
ALPINE=true \
15
npm run check:csfle
0 commit comments