Skip to content

Commit cc5a3d8

Browse files
committed
more fixes
1 parent e835eda commit cc5a3d8

File tree

3 files changed

+3
-14
lines changed

3 files changed

+3
-14
lines changed

.evergreen/build-nextest-archive.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ add_conditional_features
1212

1313
if [[ "$ARCHIVE_IN_USE_ENCRYPTION" = true ]]; then
1414
FEATURE_FLAGS+=("in-use-encryption" "azure-kms" "text-indexes-unstable" "aws-auth")
15+
.evergreen/install-dependencies.sh libmongocrypt
1516
fi
1617

1718
cargo nextest archive --workspace $(features_option) --archive-file nextest-archive.tar.zst

.evergreen/config.yml

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1350,7 +1350,6 @@ tasks:
13501350

13511351
- name: build-nextest-archive
13521352
commands:
1353-
- func: "optional install libmongocrypt"
13541353
- command: subprocess.exec
13551354
type: setup
13561355
params:
@@ -1364,9 +1363,9 @@ tasks:
13641363
- ZSTD
13651364
- ZLIB
13661365
- SNAPPY
1367-
- ARCHIVE_IN_USE_ENCRYPTION
13681366
- MONGOCRYPT_LIB_DIR
13691367
- LD_LIBRARY_PATH
1368+
- ARCHIVE_IN_USE_ENCRYPTION
13701369
- command: s3.put
13711370
type: setup
13721371
params:
@@ -1613,16 +1612,6 @@ functions:
16131612
${PREPARE_SHELL}
16141613
.evergreen/install-dependencies.sh libmongocrypt
16151614
1616-
"optional install libmongocrypt":
1617-
command: shell.exec
1618-
params:
1619-
working_dir: src
1620-
script: |
1621-
${PREPARE_SHELL}
1622-
if [[ "${ARCHIVE_IN_USE_ENCRYPTION}" == "true" ]]; then
1623-
.evergreen/install-dependencies.sh libmongocrypt
1624-
fi
1625-
16261615
"install junit dependencies":
16271616
command: shell.exec
16281617
params:

.evergreen/install-dependencies.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@ for arg; do
3232

3333
# This file is not created by default on Windows
3434
echo 'export PATH="$PATH:${CARGO_HOME}/bin"' >>${CARGO_HOME}/env
35-
echo "export CARGO_NET_GIT_FETCH_WITH_CLI=true" >>${CARGO_HOME}/env
36-
35+
3736
source .evergreen/env.sh
3837
rustup toolchain install nightly -c rustfmt
3938
elif [ $arg == "junit-dependencies" ]; then

0 commit comments

Comments
 (0)