-
Notifications
You must be signed in to change notification settings - Fork 457
CDRIVER-6075 fix and update EVG task coverage on MacOS distros #2088
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
+115
−196
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…oved_servers tasks" This reverts commit 69a465e.
kevinAlbs
reviewed
Aug 15, 2025
kevinAlbs
approved these changes
Aug 18, 2025
This was referenced Aug 18, 2025
Merged
eramongodb
added a commit
to eramongodb/mongo-c-driver
that referenced
this pull request
Oct 22, 2025
…odb#2088) * CDRIVER-6075 fix and update EVG task coverage on MacOS distros * CDRIVER-6079 skip /scram/cache_invalidation on macos-14-arm64
eramongodb
added a commit
that referenced
this pull request
Oct 22, 2025
* Fix unused test_framework_skip_if_not_single_version_5 warning * CDRIVER-5990 skip auth tests on zSeries (#1996) zSeries hosts are unable to connect to test server. See: DEVPROD-16954 * CDRIVER-6071 replace build-and-test-with-toolchain with openssl-compat (#2082) * Remove build-and-test-with-toolchain task * Add openssl-downloader.sh * CDRIVER-5995: unskip relevant auth tests * Fix and update run-auth-tests.sh * Fix and update run-aws-tests.sh * Fix and update run-ocsp-test.sh * Migrate OpenSSL compatibility checks into openssl-compat matrix * Disable failing OCSP darwinssl tasks * Add verification of shared vs. static linkage of OpenSSL * Remove obsolete BYPASS_FIND_CMAKE branches * Support forwarding extra CMake flags to compile_libmongocrypt * Add reference to CDRIVER-3759 * CDRIVER-6075 fix and update EVG task coverage on MacOS distros (#2088) * CDRIVER-6075 fix and update EVG task coverage on MacOS distros * CDRIVER-6079 skip /scram/cache_invalidation on macos-14-arm64 * CDRIVER-5987 remove serverless testing (#2116) * CDRIVER-6065 remove atlas data lake testing (#2117) * DRIVERS-3279 check for new "too-large" error code (#2106) * Address -Wuninitialized-const-pointer with Clang 21 (#2155) --------- Co-authored-by: Kevin Albertson <[email protected]> Co-authored-by: Connor MacDonald <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Resolves CDRIVER-6075.
Per DevProd's EVG Distro Guidelines for MacOS:
CDRIVER-6075 (this PR) announces deprecation targeting the 2.2.0 release in advance of CDRIVER-6076 targeting the 2.3.0 release (per Client Libraries policy). However, this PR applies EVG configuration updates in advance to address ongoing MacOS 11 task failures caused by inconsistent and sometimes ancient
uvversion being provided by the system which DET scripts do not expect (this seems to be a regression sometime after August 1...?).C standard compatibility coverage is also extended to MacOS 14 arm64, specifically for better Apple Clang libc++ coverage. The resource-limited MacOS 14 x86_64 tasks are updated+minimized to test against "minimum" (available) and "latest" server versions only. The MacOS tasks are updated to use "replica" topology by default for better test suite coverage, as "server" (single) is likely not providing as much value (+ there is plenty of equivalent single topology coverage on other distros).
This PR attempted to extend coverage to sharded topologies, but encountered too many unexpected task failures, prompting CDRIVER-6078. This PR also defers investigating
/scram/cache_invalidationtask failures by adding a "skip if macos" condition, prompting CDRIVER-6079.