Skip to content

Temporarily disable VS 2015 tasks for releases/v3.11 #1377

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 8, 2025
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/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export MONGOCXX_TEST_TLS_CA_FILE="${DRIVERS_TOOLS:?}/.evergreen/x509gen/ca.pem"

if [ "$(uname -m)" == "ppc64le" ]; then
echo "Skipping CSFLE test setup (CDRIVER-4246/CXX-2423)"
elif [[ "${distro_id:?}" =~ windows-64-vs2015-* ]]; then
elif [[ "${distro_id:?}" =~ windows64-vsMulti-* ]]; then
# Python: ImportError: DLL load failed while importing _rust: The specified procedure could not be found.
echo "Skipping CSFLE test setup (CXX-2628)"
else
Expand Down
13 changes: 8 additions & 5 deletions .mci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ functions:
script: |-
set -o errexit
echo "Preparing CSFLE venv environment..."
if [[ "${distro_id}" =~ windows-64-vs2015-* ]]; then
if [[ "${distro_id}" =~ windows64-vsMulti-* ]]; then
# Python: ImportError: DLL load failed while importing _rust: The specified procedure could not be found.
echo "Preparing CSFLE venv environment... skipped."
exit 0
Expand All @@ -445,7 +445,7 @@ functions:
script: |-
set -o errexit
echo "Starting mock KMS servers..."
if [[ "${distro_id}" =~ windows-64-vs2015-* ]]; then
if [[ "${distro_id}" =~ windows64-vsMulti-* ]]; then
# Python: ImportError: DLL load failed while importing _rust: The specified procedure could not be found.
echo "Starting mock KMS servers... skipped."
exit 0
Expand Down Expand Up @@ -2196,40 +2196,43 @@ buildvariants:
- name: test_versioned_api_accept_version_two

- name: windows-2k8-release
disable: true # DEVPROD-16074
display_name: "Windows (VS 2015) Release (MongoDB 4.2)"
expansions:
build_type: "Release"
mongodb_version: "4.2"
generator: Visual Studio 14 2015
platform: x64
run_on:
- windows-64-vs2015-compile
- windows64-vsMulti-small
tasks:
- name: compile_without_tests
- name: uninstall_check_windows

- name: windows-2k8-debug
disable: true # DEVPROD-16074
display_name: "Windows (VS 2015) Debug Static (MongoDB 4.2)"
expansions:
build_type: "Debug"
mongodb_version: "4.2"
generator: Visual Studio 14 2015
platform: x64
run_on:
- windows-64-vs2015-compile
- windows64-vsMulti-small
tasks:
- name: compile_without_tests
- name: uninstall_check_windows

- name: windows-msvc2015-debug
disable: true # DEVPROD-16074
display_name: "Windows (VS 2015) Debug (MongoDB 4.2)"
expansions:
build_type: "Debug"
generator: Visual Studio 14 2015
platform: x64
mongodb_version: "4.2"
run_on:
- windows-64-vs2015-compile
- windows64-vsMulti-small
tasks:
- name: compile_without_tests
- name: uninstall_check_windows
Expand Down