Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .evergreen/generated_configs/legacy-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10287,7 +10287,7 @@ buildvariants:
- .versioned-api .8.0
- name: testazurekms-variant
display_name: Azure KMS
run_on: debian11-latest-small
run_on: debian11-small
tasks:
- testazurekms_task_group
- testazurekms-fail-task
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ def _create_variant():
return Variant(
name='testazurekms-variant',
display_name='Azure KMS',
# Azure Virtual Machine created is Debian 10.
run_on='debian11-latest-small',
# Azure Virtual Machine created is Debian 11.
run_on='debian11-small', # TODO: switch to 'debian11-latest-small' after DEVPROD-23011 fixed.
tasks=['testazurekms_task_group', 'testazurekms-fail-task'],
batchtime=20160,
) # Use a batchtime of 14 days as suggested by the CSFLE test README
Expand Down
10 changes: 10 additions & 0 deletions .evergreen/scripts/compile-test-azurekms.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ set -o nounset
ROOT=$(pwd)
INSTALL_DIR=$ROOT/install

if [[ "${distro_id:?}" == "debian11-small" ]]; then
# Temporary workaround for lack of uv on `debian11`. TODO: remove after DEVPROD-23011 is resolved.
uv_dir="$(mktemp -d)"
python3 -m virtualenv "${uv_dir:?}"
# shellcheck source=/dev/null
(. "${uv_dir:?}/bin/activate" && python -m pip install uv)
PATH="${uv_dir:?}/bin:${PATH:-}"
command -V uv >/dev/null
fi

. .evergreen/scripts/install-build-tools.sh
install_build_tools
export CMAKE_GENERATOR="Ninja"
Expand Down