diff --git a/.evergreen/config_generator/components/funcs/test.py b/.evergreen/config_generator/components/funcs/test.py index 3592971eb9..d93cc9e346 100644 --- a/.evergreen/config_generator/components/funcs/test.py +++ b/.evergreen/config_generator/components/funcs/test.py @@ -11,6 +11,10 @@ class Test(Function): name = 'test' commands = bash_exec( command_type=EvgCommandType.TEST, + env={ + 'CC': '${cc_compiler}', + 'CXX': '${cxx_compiler}', + }, include_expansions_in_env=[ 'ASAN_SYMBOLIZER_PATH', 'build_type', @@ -24,15 +28,13 @@ class Test(Function): 'cse_gcp_privatekey', 'disable_slow_tests', 'distro_id', - 'example_projects_cc', - 'example_projects_cxx', - 'example_projects_cxx_standard', 'example_projects_cxxflags', 'example_projects_ldflags', 'generator', 'MONGOCXX_TEST_TOPOLOGY', 'MONGODB_API_VERSION', 'platform', + 'REQUIRED_CXX_STANDARD', 'TEST_WITH_ASAN', 'TEST_WITH_CSFLE', 'TEST_WITH_UBSAN', @@ -41,10 +43,6 @@ class Test(Function): 'USE_STATIC_LIBS', 'VALGRIND_INSTALL_DIR', ], - env={ - 'CC': '${cc_compiler}', - 'CXX': '${cxx_compiler}', - }, working_dir='mongo-cxx-driver', script='.evergreen/scripts/test.sh', ) diff --git a/.evergreen/config_generator/components/integration.py b/.evergreen/config_generator/components/integration.py index f72b75c7e7..0a6484aaf8 100644 --- a/.evergreen/config_generator/components/integration.py +++ b/.evergreen/config_generator/components/integration.py @@ -50,7 +50,8 @@ WINDOWS_MATRIX = [ # Windows x86_64 (min-max-latest). # Windows x86_64: 4.2+. - ('windows-vsCurrent', 'vs2022x64', ['Debug'], ['shared'], [11, 17], [None], ['plain', 'csfle'], ['4.2', '8.0', 'latest'], ['single', 'replica', 'sharded']), + ('windows-vsCurrent', 'vs2022x64', ['Debug'], ['shared'], [11, 17], [None], ['plain', 'csfle'], ['4.2', '8.0', 'latest'], ['single', 'replica', 'sharded']), + ('windows-2022-latest', 'gcc', ['Debug'], ['shared'], [11, 17], [None], ['plain' ], ['4.2', '8.0', 'latest'], ['single', 'replica', 'sharded']), ] MONGOCRYPTD_MATRIX = [ @@ -126,9 +127,6 @@ def tasks(): updates += [KeyValueParam(key='build_type', value=build_type)] updates += [KeyValueParam(key=key, value=value) for key, value in compiler_to_vars(compiler).items()] - if distro.os_type == 'windows': - test_vars |= {'example_projects_cxx_standard': 17} - if build_type == 'Debug' and distro.os in ['ubuntu2204', 'ubuntu2404']: updates += [KeyValueParam(key='ENABLE_CODE_COVERAGE', value='ON')] @@ -138,10 +136,7 @@ def tasks(): if cxx_standard is not None: compile_vars |= {'REQUIRED_CXX_STANDARD': cxx_standard} - test_vars |= { - 'example_projects_cxx_standard': cxx_standard, - 'REQUIRED_CXX_STANDARD': cxx_standard, - } + test_vars |= {'REQUIRED_CXX_STANDARD': cxx_standard} commands = [expansions_update(updates=updates)] if updates else [] commands += [ diff --git a/.evergreen/config_generator/components/sanitizers.py b/.evergreen/config_generator/components/sanitizers.py index 15b055ac6e..15065f374c 100644 --- a/.evergreen/config_generator/components/sanitizers.py +++ b/.evergreen/config_generator/components/sanitizers.py @@ -61,8 +61,6 @@ def tasks(): 'ASAN_SYMBOLIZER_PATH': '/opt/mongodbtoolchain/v4/bin/llvm-symbolizer', 'TEST_WITH_CSFLE': 'ON', 'MONGOCXX_TEST_TOPOLOGY': topology, - 'example_projects_cc': cc_compiler, - 'example_projects_cxx': cxx_compiler, } if link_type == 'static': diff --git a/.evergreen/config_generator/components/versioned_api.py b/.evergreen/config_generator/components/versioned_api.py index 0fdd384743..ffcadce8cc 100644 --- a/.evergreen/config_generator/components/versioned_api.py +++ b/.evergreen/config_generator/components/versioned_api.py @@ -66,9 +66,6 @@ def tasks(): compile_vars = {'ENABLE_TESTS': 'ON'} test_vars |= {'MONGOCXX_TEST_TOPOLOGY': 'single'} - if distro.os_type == 'windows': - test_vars |= {'example_projects_cxx_standard': 17} - res.append( EvgTask( name=name, diff --git a/.evergreen/config_generator/etc/distros.py b/.evergreen/config_generator/etc/distros.py index 3a6e64b8f8..152b96ce33 100644 --- a/.evergreen/config_generator/etc/distros.py +++ b/.evergreen/config_generator/etc/distros.py @@ -12,7 +12,6 @@ class Distro(BaseModel): * os: Name of the operating system. * os_type: One of Linux, MacOS, or Windows. * os_ver: Version of the operating system. - * vs_ver: Version of Visual Studio available. * size: Size of tasks the distro is designed to handle. * arch: Target architecture. """ @@ -21,18 +20,6 @@ class Distro(BaseModel): os: str | None = None os_type: Literal['linux', 'macos', 'windows'] | None = None os_ver: str | None = None - vs_ver: ( - Literal[ - '2015', - '2017', - '2019', - '2022', - 'vsCurrent', - 'vsCurrent2', - 'vsMulti', - ] - | None - ) = None size: Literal['small', 'large'] | None = None arch: Literal['arm64', 'power8', 'zseries'] | None = None @@ -100,7 +87,8 @@ def ls_distro(name, **kwargs): ] WINDOWS_DISTROS = [ - *ls_distro(name='windows-vsCurrent', os='windows', os_type='windows', vs_ver='vsCurrent'), + *ls_distro(name='windows-vsCurrent', os='windows', os_type='windows'), + *ls_distro(name='windows-2022-latest', os='windows', os_type='windows'), ] # See: https://evergreen.mongodb.com/distros diff --git a/.evergreen/generated_configs/functions.yml b/.evergreen/generated_configs/functions.yml index 45e16761b6..00b3889547 100644 --- a/.evergreen/generated_configs/functions.yml +++ b/.evergreen/generated_configs/functions.yml @@ -553,15 +553,13 @@ functions: - cse_gcp_privatekey - disable_slow_tests - distro_id - - example_projects_cc - - example_projects_cxx - - example_projects_cxx_standard - example_projects_cxxflags - example_projects_ldflags - generator - MONGOCXX_TEST_TOPOLOGY - MONGODB_API_VERSION - platform + - REQUIRED_CXX_STANDARD - TEST_WITH_ASAN - TEST_WITH_CSFLE - TEST_WITH_UBSAN diff --git a/.evergreen/generated_configs/tasks.yml b/.evergreen/generated_configs/tasks.yml index e57460c152..59d23ff060 100644 --- a/.evergreen/generated_configs/tasks.yml +++ b/.evergreen/generated_configs/tasks.yml @@ -2229,7 +2229,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-macos-14-arm64-debug-shared-cxx11-6.0-sharded run_on: macos-14-arm64 tags: [integration, macos-14-arm64, macos, debug, shared, cxx11, "6.0", sharded] @@ -2255,7 +2254,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-macos-14-arm64-debug-shared-cxx11-6.0-single run_on: macos-14-arm64 tags: [integration, macos-14-arm64, macos, debug, shared, cxx11, "6.0", single] @@ -2280,7 +2278,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-macos-14-arm64-debug-shared-cxx11-8.0-replica run_on: macos-14-arm64 tags: [integration, macos-14-arm64, macos, debug, shared, cxx11, "8.0", replica] @@ -2306,7 +2303,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-macos-14-arm64-debug-shared-cxx11-8.0-sharded run_on: macos-14-arm64 tags: [integration, macos-14-arm64, macos, debug, shared, cxx11, "8.0", sharded] @@ -2332,7 +2328,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-macos-14-arm64-debug-shared-cxx11-8.0-single run_on: macos-14-arm64 tags: [integration, macos-14-arm64, macos, debug, shared, cxx11, "8.0", single] @@ -2357,7 +2352,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-macos-14-arm64-debug-shared-cxx11-csfle-6.0-replica run_on: macos-14-arm64 tags: [integration, macos-14-arm64, macos, debug, shared, cxx11, csfle, "6.0", replica] @@ -2384,7 +2378,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-macos-14-arm64-debug-shared-cxx11-csfle-6.0-sharded run_on: macos-14-arm64 tags: [integration, macos-14-arm64, macos, debug, shared, cxx11, csfle, "6.0", sharded] @@ -2411,7 +2404,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-macos-14-arm64-debug-shared-cxx11-csfle-6.0-single run_on: macos-14-arm64 tags: [integration, macos-14-arm64, macos, debug, shared, cxx11, csfle, "6.0", single] @@ -2437,7 +2429,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-macos-14-arm64-debug-shared-cxx11-csfle-8.0-replica run_on: macos-14-arm64 tags: [integration, macos-14-arm64, macos, debug, shared, cxx11, csfle, "8.0", replica] @@ -2464,7 +2455,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-macos-14-arm64-debug-shared-cxx11-csfle-8.0-sharded run_on: macos-14-arm64 tags: [integration, macos-14-arm64, macos, debug, shared, cxx11, csfle, "8.0", sharded] @@ -2491,7 +2481,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-macos-14-arm64-debug-shared-cxx11-csfle-8.0-single run_on: macos-14-arm64 tags: [integration, macos-14-arm64, macos, debug, shared, cxx11, csfle, "8.0", single] @@ -2517,7 +2506,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-macos-14-arm64-debug-shared-cxx11-csfle-latest-replica run_on: macos-14-arm64 tags: [integration, macos-14-arm64, macos, debug, shared, cxx11, csfle, latest, replica] @@ -2544,7 +2532,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-macos-14-arm64-debug-shared-cxx11-csfle-latest-replica-mongocryptd run_on: macos-14-arm64 tags: [integration, macos-14-arm64, macos, debug, shared, cxx11, csfle, latest, replica, mongocryptd] @@ -2571,7 +2558,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 use_mongocryptd: true - name: integration-macos-14-arm64-debug-shared-cxx11-csfle-latest-sharded run_on: macos-14-arm64 @@ -2599,7 +2585,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-macos-14-arm64-debug-shared-cxx11-csfle-latest-single run_on: macos-14-arm64 tags: [integration, macos-14-arm64, macos, debug, shared, cxx11, csfle, latest, single] @@ -2625,7 +2610,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-macos-14-arm64-debug-shared-cxx11-latest-replica run_on: macos-14-arm64 tags: [integration, macos-14-arm64, macos, debug, shared, cxx11, latest, replica] @@ -2651,7 +2635,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-macos-14-arm64-debug-shared-cxx11-latest-sharded run_on: macos-14-arm64 tags: [integration, macos-14-arm64, macos, debug, shared, cxx11, latest, sharded] @@ -2677,7 +2660,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-macos-14-arm64-debug-shared-cxx11-latest-single run_on: macos-14-arm64 tags: [integration, macos-14-arm64, macos, debug, shared, cxx11, latest, single] @@ -2702,7 +2684,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-macos-14-arm64-debug-shared-cxx17-6.0-replica run_on: macos-14-arm64 tags: [integration, macos-14-arm64, macos, debug, shared, cxx17, "6.0", replica] @@ -2728,7 +2709,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-macos-14-arm64-debug-shared-cxx17-6.0-sharded run_on: macos-14-arm64 tags: [integration, macos-14-arm64, macos, debug, shared, cxx17, "6.0", sharded] @@ -2754,7 +2734,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-macos-14-arm64-debug-shared-cxx17-6.0-single run_on: macos-14-arm64 tags: [integration, macos-14-arm64, macos, debug, shared, cxx17, "6.0", single] @@ -2779,7 +2758,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-macos-14-arm64-debug-shared-cxx17-8.0-replica run_on: macos-14-arm64 tags: [integration, macos-14-arm64, macos, debug, shared, cxx17, "8.0", replica] @@ -2805,7 +2783,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-macos-14-arm64-debug-shared-cxx17-8.0-sharded run_on: macos-14-arm64 tags: [integration, macos-14-arm64, macos, debug, shared, cxx17, "8.0", sharded] @@ -2831,7 +2808,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-macos-14-arm64-debug-shared-cxx17-8.0-single run_on: macos-14-arm64 tags: [integration, macos-14-arm64, macos, debug, shared, cxx17, "8.0", single] @@ -2856,7 +2832,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-macos-14-arm64-debug-shared-cxx17-csfle-6.0-replica run_on: macos-14-arm64 tags: [integration, macos-14-arm64, macos, debug, shared, cxx17, csfle, "6.0", replica] @@ -2883,7 +2858,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-macos-14-arm64-debug-shared-cxx17-csfle-6.0-sharded run_on: macos-14-arm64 tags: [integration, macos-14-arm64, macos, debug, shared, cxx17, csfle, "6.0", sharded] @@ -2910,7 +2884,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-macos-14-arm64-debug-shared-cxx17-csfle-6.0-single run_on: macos-14-arm64 tags: [integration, macos-14-arm64, macos, debug, shared, cxx17, csfle, "6.0", single] @@ -2936,7 +2909,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-macos-14-arm64-debug-shared-cxx17-csfle-8.0-replica run_on: macos-14-arm64 tags: [integration, macos-14-arm64, macos, debug, shared, cxx17, csfle, "8.0", replica] @@ -2963,7 +2935,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-macos-14-arm64-debug-shared-cxx17-csfle-8.0-sharded run_on: macos-14-arm64 tags: [integration, macos-14-arm64, macos, debug, shared, cxx17, csfle, "8.0", sharded] @@ -2990,7 +2961,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-macos-14-arm64-debug-shared-cxx17-csfle-8.0-single run_on: macos-14-arm64 tags: [integration, macos-14-arm64, macos, debug, shared, cxx17, csfle, "8.0", single] @@ -3016,7 +2986,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-macos-14-arm64-debug-shared-cxx17-csfle-latest-replica run_on: macos-14-arm64 tags: [integration, macos-14-arm64, macos, debug, shared, cxx17, csfle, latest, replica] @@ -3043,7 +3012,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-macos-14-arm64-debug-shared-cxx17-csfle-latest-sharded run_on: macos-14-arm64 tags: [integration, macos-14-arm64, macos, debug, shared, cxx17, csfle, latest, sharded] @@ -3070,7 +3038,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-macos-14-arm64-debug-shared-cxx17-csfle-latest-single run_on: macos-14-arm64 tags: [integration, macos-14-arm64, macos, debug, shared, cxx17, csfle, latest, single] @@ -3096,7 +3063,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-macos-14-arm64-debug-shared-cxx17-latest-replica run_on: macos-14-arm64 tags: [integration, macos-14-arm64, macos, debug, shared, cxx17, latest, replica] @@ -3122,7 +3088,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-macos-14-arm64-debug-shared-cxx17-latest-sharded run_on: macos-14-arm64 tags: [integration, macos-14-arm64, macos, debug, shared, cxx17, latest, sharded] @@ -3148,7 +3113,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-macos-14-arm64-debug-shared-cxx17-latest-single run_on: macos-14-arm64 tags: [integration, macos-14-arm64, macos, debug, shared, cxx17, latest, single] @@ -3173,7 +3137,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-macos-14-debug-shared-cxx11-4.2-replica run_on: macos-14 tags: [integration, macos-14, macos, debug, shared, cxx11, "4.2", replica] @@ -3199,7 +3162,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-macos-14-debug-shared-cxx11-4.2-sharded run_on: macos-14 tags: [integration, macos-14, macos, debug, shared, cxx11, "4.2", sharded] @@ -3225,7 +3187,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-macos-14-debug-shared-cxx11-4.2-single run_on: macos-14 tags: [integration, macos-14, macos, debug, shared, cxx11, "4.2", single] @@ -3250,7 +3211,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-macos-14-debug-shared-cxx11-8.0-replica run_on: macos-14 tags: [integration, macos-14, macos, debug, shared, cxx11, "8.0", replica] @@ -3276,7 +3236,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-macos-14-debug-shared-cxx11-8.0-sharded run_on: macos-14 tags: [integration, macos-14, macos, debug, shared, cxx11, "8.0", sharded] @@ -3302,7 +3261,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-macos-14-debug-shared-cxx11-8.0-single run_on: macos-14 tags: [integration, macos-14, macos, debug, shared, cxx11, "8.0", single] @@ -3327,7 +3285,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-macos-14-debug-shared-cxx11-csfle-4.2-replica run_on: macos-14 tags: [integration, macos-14, macos, debug, shared, cxx11, csfle, "4.2", replica] @@ -3354,7 +3311,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-macos-14-debug-shared-cxx11-csfle-4.2-sharded run_on: macos-14 tags: [integration, macos-14, macos, debug, shared, cxx11, csfle, "4.2", sharded] @@ -3381,7 +3337,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-macos-14-debug-shared-cxx11-csfle-4.2-single run_on: macos-14 tags: [integration, macos-14, macos, debug, shared, cxx11, csfle, "4.2", single] @@ -3407,7 +3362,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-macos-14-debug-shared-cxx11-csfle-8.0-replica run_on: macos-14 tags: [integration, macos-14, macos, debug, shared, cxx11, csfle, "8.0", replica] @@ -3434,7 +3388,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-macos-14-debug-shared-cxx11-csfle-8.0-sharded run_on: macos-14 tags: [integration, macos-14, macos, debug, shared, cxx11, csfle, "8.0", sharded] @@ -3461,7 +3414,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-macos-14-debug-shared-cxx11-csfle-8.0-single run_on: macos-14 tags: [integration, macos-14, macos, debug, shared, cxx11, csfle, "8.0", single] @@ -3487,7 +3439,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-macos-14-debug-shared-cxx11-csfle-latest-replica run_on: macos-14 tags: [integration, macos-14, macos, debug, shared, cxx11, csfle, latest, replica] @@ -3514,7 +3465,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-macos-14-debug-shared-cxx11-csfle-latest-replica-mongocryptd run_on: macos-14 tags: [integration, macos-14, macos, debug, shared, cxx11, csfle, latest, replica, mongocryptd] @@ -3541,7 +3491,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 use_mongocryptd: true - name: integration-macos-14-debug-shared-cxx11-csfle-latest-sharded run_on: macos-14 @@ -3569,7 +3518,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-macos-14-debug-shared-cxx11-csfle-latest-single run_on: macos-14 tags: [integration, macos-14, macos, debug, shared, cxx11, csfle, latest, single] @@ -3595,7 +3543,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-macos-14-debug-shared-cxx11-latest-replica run_on: macos-14 tags: [integration, macos-14, macos, debug, shared, cxx11, latest, replica] @@ -3621,7 +3568,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-macos-14-debug-shared-cxx11-latest-sharded run_on: macos-14 tags: [integration, macos-14, macos, debug, shared, cxx11, latest, sharded] @@ -3647,7 +3593,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-macos-14-debug-shared-cxx11-latest-single run_on: macos-14 tags: [integration, macos-14, macos, debug, shared, cxx11, latest, single] @@ -3672,7 +3617,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-4.4-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, "4.4", replica] @@ -3698,7 +3642,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-4.4-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, "4.4", sharded] @@ -3724,7 +3667,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-4.4-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, "4.4", single] @@ -3749,7 +3691,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-5.0-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, "5.0", replica] @@ -3775,7 +3716,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-5.0-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, "5.0", sharded] @@ -3801,7 +3741,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-5.0-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, "5.0", single] @@ -3826,7 +3765,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-6.0-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, "6.0", replica] @@ -3852,7 +3790,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-6.0-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, "6.0", sharded] @@ -3878,7 +3815,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-6.0-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, "6.0", single] @@ -3903,7 +3839,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-7.0-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, "7.0", replica] @@ -3929,7 +3864,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-7.0-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, "7.0", sharded] @@ -3955,7 +3889,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-7.0-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, "7.0", single] @@ -3980,7 +3913,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-8.0-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, "8.0", replica] @@ -4006,7 +3938,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-8.0-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, "8.0", sharded] @@ -4032,7 +3963,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-8.0-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, "8.0", single] @@ -4057,7 +3987,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-csfle-4.4-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, csfle, "4.4", replica] @@ -4084,7 +4013,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-csfle-4.4-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, csfle, "4.4", sharded] @@ -4111,7 +4039,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-csfle-4.4-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, csfle, "4.4", single] @@ -4137,7 +4064,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-csfle-5.0-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, csfle, "5.0", replica] @@ -4164,7 +4090,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-csfle-5.0-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, csfle, "5.0", sharded] @@ -4191,7 +4116,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-csfle-5.0-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, csfle, "5.0", single] @@ -4217,7 +4141,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-csfle-6.0-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, csfle, "6.0", replica] @@ -4244,7 +4167,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-csfle-6.0-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, csfle, "6.0", sharded] @@ -4271,7 +4193,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-csfle-6.0-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, csfle, "6.0", single] @@ -4297,7 +4218,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-csfle-7.0-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, csfle, "7.0", replica] @@ -4324,7 +4244,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-csfle-7.0-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, csfle, "7.0", sharded] @@ -4351,7 +4270,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-csfle-7.0-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, csfle, "7.0", single] @@ -4377,7 +4295,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-csfle-8.0-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, csfle, "8.0", replica] @@ -4404,7 +4321,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-csfle-8.0-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, csfle, "8.0", sharded] @@ -4431,7 +4347,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-csfle-8.0-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, csfle, "8.0", single] @@ -4457,7 +4372,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-csfle-latest-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, csfle, latest, replica] @@ -4484,7 +4398,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-csfle-latest-replica-mongocryptd run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, csfle, latest, replica, mongocryptd] @@ -4511,7 +4424,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 use_mongocryptd: true - name: integration-rhel8-arm64-latest-debug-shared-cxx11-csfle-latest-sharded run_on: rhel8-arm64-latest-large @@ -4539,7 +4451,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-csfle-latest-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, csfle, latest, single] @@ -4565,7 +4476,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-latest-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, latest, replica] @@ -4591,7 +4501,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-latest-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, latest, sharded] @@ -4617,7 +4526,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx11-latest-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx11, latest, single] @@ -4642,7 +4550,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-4.4-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, "4.4", replica] @@ -4668,7 +4575,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-4.4-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, "4.4", sharded] @@ -4694,7 +4600,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-4.4-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, "4.4", single] @@ -4719,7 +4624,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-5.0-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, "5.0", replica] @@ -4745,7 +4649,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-5.0-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, "5.0", sharded] @@ -4771,7 +4674,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-5.0-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, "5.0", single] @@ -4796,7 +4698,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-6.0-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, "6.0", replica] @@ -4822,7 +4723,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-6.0-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, "6.0", sharded] @@ -4848,7 +4748,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-6.0-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, "6.0", single] @@ -4873,7 +4772,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-7.0-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, "7.0", replica] @@ -4899,7 +4797,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-7.0-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, "7.0", sharded] @@ -4925,7 +4822,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-7.0-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, "7.0", single] @@ -4950,7 +4846,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-8.0-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, "8.0", replica] @@ -4976,7 +4871,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-8.0-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, "8.0", sharded] @@ -5002,7 +4896,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-8.0-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, "8.0", single] @@ -5027,7 +4920,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-csfle-4.4-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, csfle, "4.4", replica] @@ -5054,7 +4946,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-csfle-4.4-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, csfle, "4.4", sharded] @@ -5081,7 +4972,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-csfle-4.4-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, csfle, "4.4", single] @@ -5107,7 +4997,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-csfle-5.0-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, csfle, "5.0", replica] @@ -5134,7 +5023,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-csfle-5.0-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, csfle, "5.0", sharded] @@ -5161,7 +5049,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-csfle-5.0-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, csfle, "5.0", single] @@ -5187,7 +5074,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-csfle-6.0-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, csfle, "6.0", replica] @@ -5214,7 +5100,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-csfle-6.0-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, csfle, "6.0", sharded] @@ -5241,7 +5126,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-csfle-6.0-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, csfle, "6.0", single] @@ -5267,7 +5151,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-csfle-7.0-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, csfle, "7.0", replica] @@ -5294,7 +5177,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-csfle-7.0-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, csfle, "7.0", sharded] @@ -5321,7 +5203,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-csfle-7.0-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, csfle, "7.0", single] @@ -5347,7 +5228,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-csfle-8.0-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, csfle, "8.0", replica] @@ -5374,7 +5254,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-csfle-8.0-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, csfle, "8.0", sharded] @@ -5401,7 +5280,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-csfle-8.0-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, csfle, "8.0", single] @@ -5427,7 +5305,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-csfle-latest-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, csfle, latest, replica] @@ -5454,7 +5331,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-csfle-latest-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, csfle, latest, sharded] @@ -5481,7 +5357,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-csfle-latest-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, csfle, latest, single] @@ -5507,7 +5382,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-latest-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, latest, replica] @@ -5533,7 +5407,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-latest-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, latest, sharded] @@ -5559,7 +5432,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-shared-cxx17-latest-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, shared, cxx17, latest, single] @@ -5584,7 +5456,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx11-4.4-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, "4.4", replica] @@ -5612,7 +5483,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx11-4.4-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, "4.4", sharded] @@ -5640,7 +5510,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx11-4.4-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, "4.4", single] @@ -5667,7 +5536,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx11-5.0-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, "5.0", replica] @@ -5695,7 +5563,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx11-5.0-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, "5.0", sharded] @@ -5723,7 +5590,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx11-5.0-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, "5.0", single] @@ -5750,7 +5616,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx11-6.0-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, "6.0", replica] @@ -5778,7 +5643,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx11-6.0-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, "6.0", sharded] @@ -5806,7 +5670,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx11-6.0-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, "6.0", single] @@ -5833,7 +5696,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx11-7.0-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, "7.0", replica] @@ -5861,7 +5723,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx11-7.0-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, "7.0", sharded] @@ -5889,7 +5750,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx11-7.0-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, "7.0", single] @@ -5916,7 +5776,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx11-8.0-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, "8.0", replica] @@ -5944,7 +5803,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx11-8.0-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, "8.0", sharded] @@ -5972,7 +5830,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx11-8.0-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, "8.0", single] @@ -5999,7 +5856,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx11-csfle-4.4-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, csfle, "4.4", replica] @@ -6028,7 +5884,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx11-csfle-4.4-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, csfle, "4.4", sharded] @@ -6057,7 +5912,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx11-csfle-4.4-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, csfle, "4.4", single] @@ -6085,7 +5939,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx11-csfle-5.0-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, csfle, "5.0", replica] @@ -6114,7 +5967,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx11-csfle-5.0-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, csfle, "5.0", sharded] @@ -6143,7 +5995,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx11-csfle-5.0-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, csfle, "5.0", single] @@ -6171,7 +6022,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx11-csfle-6.0-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, csfle, "6.0", replica] @@ -6200,7 +6050,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx11-csfle-6.0-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, csfle, "6.0", sharded] @@ -6229,7 +6078,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx11-csfle-6.0-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, csfle, "6.0", single] @@ -6257,7 +6105,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx11-csfle-7.0-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, csfle, "7.0", replica] @@ -6286,7 +6133,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx11-csfle-7.0-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, csfle, "7.0", sharded] @@ -6315,7 +6161,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx11-csfle-7.0-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, csfle, "7.0", single] @@ -6343,7 +6188,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx11-csfle-8.0-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, csfle, "8.0", replica] @@ -6372,7 +6216,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx11-csfle-8.0-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, csfle, "8.0", sharded] @@ -6401,7 +6244,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx11-csfle-8.0-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, csfle, "8.0", single] @@ -6429,7 +6271,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx11-csfle-latest-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, csfle, latest, replica] @@ -6458,7 +6299,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx11-csfle-latest-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, csfle, latest, sharded] @@ -6487,7 +6327,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx11-csfle-latest-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, csfle, latest, single] @@ -6515,7 +6354,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx11-latest-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, latest, replica] @@ -6543,7 +6381,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx11-latest-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, latest, sharded] @@ -6571,7 +6408,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx11-latest-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx11, latest, single] @@ -6598,7 +6434,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel8-arm64-latest-debug-static-cxx17-4.4-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, "4.4", replica] @@ -6626,7 +6461,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx17-4.4-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, "4.4", sharded] @@ -6654,7 +6488,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx17-4.4-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, "4.4", single] @@ -6681,7 +6514,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx17-5.0-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, "5.0", replica] @@ -6709,7 +6541,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx17-5.0-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, "5.0", sharded] @@ -6737,7 +6568,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx17-5.0-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, "5.0", single] @@ -6764,7 +6594,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx17-6.0-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, "6.0", replica] @@ -6792,7 +6621,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx17-6.0-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, "6.0", sharded] @@ -6820,7 +6648,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx17-6.0-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, "6.0", single] @@ -6847,7 +6674,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx17-7.0-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, "7.0", replica] @@ -6875,7 +6701,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx17-7.0-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, "7.0", sharded] @@ -6903,7 +6728,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx17-7.0-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, "7.0", single] @@ -6930,7 +6754,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx17-8.0-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, "8.0", replica] @@ -6958,7 +6781,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx17-8.0-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, "8.0", sharded] @@ -6986,7 +6808,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx17-8.0-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, "8.0", single] @@ -7013,7 +6834,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx17-csfle-4.4-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, csfle, "4.4", replica] @@ -7042,7 +6862,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx17-csfle-4.4-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, csfle, "4.4", sharded] @@ -7071,7 +6890,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx17-csfle-4.4-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, csfle, "4.4", single] @@ -7099,7 +6917,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx17-csfle-5.0-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, csfle, "5.0", replica] @@ -7128,7 +6945,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx17-csfle-5.0-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, csfle, "5.0", sharded] @@ -7157,7 +6973,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx17-csfle-5.0-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, csfle, "5.0", single] @@ -7185,7 +7000,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx17-csfle-6.0-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, csfle, "6.0", replica] @@ -7214,7 +7028,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx17-csfle-6.0-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, csfle, "6.0", sharded] @@ -7243,7 +7056,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx17-csfle-6.0-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, csfle, "6.0", single] @@ -7271,7 +7083,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx17-csfle-7.0-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, csfle, "7.0", replica] @@ -7300,7 +7111,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx17-csfle-7.0-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, csfle, "7.0", sharded] @@ -7329,7 +7139,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx17-csfle-7.0-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, csfle, "7.0", single] @@ -7357,7 +7166,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx17-csfle-8.0-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, csfle, "8.0", replica] @@ -7386,7 +7194,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx17-csfle-8.0-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, csfle, "8.0", sharded] @@ -7415,7 +7222,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx17-csfle-8.0-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, csfle, "8.0", single] @@ -7443,7 +7249,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx17-csfle-latest-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, csfle, latest, replica] @@ -7472,7 +7277,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx17-csfle-latest-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, csfle, latest, sharded] @@ -7501,7 +7305,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx17-csfle-latest-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, csfle, latest, single] @@ -7529,7 +7332,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx17-latest-replica run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, latest, replica] @@ -7557,7 +7359,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx17-latest-sharded run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, latest, sharded] @@ -7585,7 +7386,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-arm64-latest-debug-static-cxx17-latest-single run_on: rhel8-arm64-latest-large tags: [integration, rhel8-arm64-latest, linux, debug, static, cxx17, latest, single] @@ -7612,7 +7412,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel8-power-debug-shared-cxx11-csfle-latest-replica run_on: rhel8-power-large tags: [integration, rhel8-power, linux, debug, shared, cxx11, csfle, latest, replica] @@ -7640,7 +7439,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel8-power-debug-shared-cxx11-csfle-latest-replica-mongocryptd run_on: rhel8-power-large tags: [integration, rhel8-power, linux, debug, shared, cxx11, csfle, latest, replica, mongocryptd] @@ -7668,7 +7466,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 use_mongocryptd: true - name: integration-rhel8-zseries-debug-shared-cxx11-csfle-latest-replica run_on: rhel8-zseries-large @@ -7697,7 +7494,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel8-zseries-debug-shared-cxx11-csfle-latest-replica-mongocryptd run_on: rhel8-zseries-large tags: [integration, rhel8-zseries, linux, debug, shared, cxx11, csfle, latest, replica, mongocryptd] @@ -7725,7 +7521,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 use_mongocryptd: true - name: integration-rhel80-debug-shared-cxx11-4.2-replica run_on: rhel80-large @@ -7752,7 +7547,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-4.2-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, "4.2", sharded] @@ -7778,7 +7572,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-4.2-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, "4.2", single] @@ -7803,7 +7596,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-4.4-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, "4.4", replica] @@ -7829,7 +7621,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-4.4-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, "4.4", sharded] @@ -7855,7 +7646,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-4.4-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, "4.4", single] @@ -7880,7 +7670,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-5.0-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, "5.0", replica] @@ -7906,7 +7695,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-5.0-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, "5.0", sharded] @@ -7932,7 +7720,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-5.0-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, "5.0", single] @@ -7957,7 +7744,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-6.0-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, "6.0", replica] @@ -7983,7 +7769,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-6.0-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, "6.0", sharded] @@ -8009,7 +7794,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-6.0-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, "6.0", single] @@ -8034,7 +7818,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-7.0-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, "7.0", replica] @@ -8060,7 +7843,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-7.0-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, "7.0", sharded] @@ -8086,7 +7868,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-7.0-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, "7.0", single] @@ -8111,7 +7892,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-8.0-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, "8.0", replica] @@ -8137,7 +7917,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-8.0-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, "8.0", sharded] @@ -8163,7 +7942,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-8.0-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, "8.0", single] @@ -8188,7 +7966,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-csfle-4.2-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, csfle, "4.2", replica] @@ -8215,7 +7992,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-csfle-4.2-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, csfle, "4.2", sharded] @@ -8242,7 +8018,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-csfle-4.2-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, csfle, "4.2", single] @@ -8268,7 +8043,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-csfle-4.4-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, csfle, "4.4", replica] @@ -8295,7 +8069,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-csfle-4.4-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, csfle, "4.4", sharded] @@ -8322,7 +8095,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-csfle-4.4-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, csfle, "4.4", single] @@ -8348,7 +8120,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-csfle-5.0-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, csfle, "5.0", replica] @@ -8375,7 +8146,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-csfle-5.0-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, csfle, "5.0", sharded] @@ -8402,7 +8172,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-csfle-5.0-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, csfle, "5.0", single] @@ -8428,7 +8197,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-csfle-6.0-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, csfle, "6.0", replica] @@ -8455,7 +8223,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-csfle-6.0-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, csfle, "6.0", sharded] @@ -8482,7 +8249,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-csfle-6.0-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, csfle, "6.0", single] @@ -8508,7 +8274,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-csfle-7.0-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, csfle, "7.0", replica] @@ -8535,7 +8300,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-csfle-7.0-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, csfle, "7.0", sharded] @@ -8562,7 +8326,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-csfle-7.0-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, csfle, "7.0", single] @@ -8588,7 +8351,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-csfle-8.0-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, csfle, "8.0", replica] @@ -8615,7 +8377,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-csfle-8.0-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, csfle, "8.0", sharded] @@ -8642,7 +8403,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-csfle-8.0-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, csfle, "8.0", single] @@ -8668,7 +8428,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-csfle-latest-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, csfle, latest, replica] @@ -8695,7 +8454,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-csfle-latest-replica-mongocryptd run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, csfle, latest, replica, mongocryptd] @@ -8722,7 +8480,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 use_mongocryptd: true - name: integration-rhel80-debug-shared-cxx11-csfle-latest-sharded run_on: rhel80-large @@ -8750,7 +8507,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-csfle-latest-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, csfle, latest, single] @@ -8776,7 +8532,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-latest-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, latest, replica] @@ -8802,7 +8557,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-latest-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, latest, sharded] @@ -8828,7 +8582,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx11-latest-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx11, latest, single] @@ -8853,7 +8606,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-shared-cxx17-4.2-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, "4.2", replica] @@ -8879,7 +8631,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-4.2-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, "4.2", sharded] @@ -8905,7 +8656,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-4.2-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, "4.2", single] @@ -8930,7 +8680,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-4.4-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, "4.4", replica] @@ -8956,7 +8705,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-4.4-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, "4.4", sharded] @@ -8982,7 +8730,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-4.4-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, "4.4", single] @@ -9007,7 +8754,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-5.0-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, "5.0", replica] @@ -9033,7 +8779,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-5.0-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, "5.0", sharded] @@ -9059,7 +8804,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-5.0-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, "5.0", single] @@ -9084,7 +8828,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-6.0-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, "6.0", replica] @@ -9110,7 +8853,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-6.0-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, "6.0", sharded] @@ -9136,7 +8878,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-6.0-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, "6.0", single] @@ -9161,7 +8902,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-7.0-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, "7.0", replica] @@ -9187,7 +8927,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-7.0-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, "7.0", sharded] @@ -9213,7 +8952,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-7.0-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, "7.0", single] @@ -9238,7 +8976,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-8.0-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, "8.0", replica] @@ -9264,7 +9001,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-8.0-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, "8.0", sharded] @@ -9290,7 +9026,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-8.0-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, "8.0", single] @@ -9315,7 +9050,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-csfle-4.2-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, csfle, "4.2", replica] @@ -9342,7 +9076,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-csfle-4.2-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, csfle, "4.2", sharded] @@ -9369,7 +9102,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-csfle-4.2-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, csfle, "4.2", single] @@ -9395,7 +9127,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-csfle-4.4-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, csfle, "4.4", replica] @@ -9422,7 +9153,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-csfle-4.4-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, csfle, "4.4", sharded] @@ -9449,7 +9179,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-csfle-4.4-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, csfle, "4.4", single] @@ -9475,7 +9204,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-csfle-5.0-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, csfle, "5.0", replica] @@ -9502,7 +9230,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-csfle-5.0-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, csfle, "5.0", sharded] @@ -9529,7 +9256,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-csfle-5.0-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, csfle, "5.0", single] @@ -9555,7 +9281,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-csfle-6.0-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, csfle, "6.0", replica] @@ -9582,7 +9307,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-csfle-6.0-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, csfle, "6.0", sharded] @@ -9609,7 +9333,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-csfle-6.0-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, csfle, "6.0", single] @@ -9635,7 +9358,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-csfle-7.0-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, csfle, "7.0", replica] @@ -9662,7 +9384,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-csfle-7.0-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, csfle, "7.0", sharded] @@ -9689,7 +9410,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-csfle-7.0-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, csfle, "7.0", single] @@ -9715,7 +9435,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-csfle-8.0-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, csfle, "8.0", replica] @@ -9742,7 +9461,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-csfle-8.0-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, csfle, "8.0", sharded] @@ -9769,7 +9487,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-csfle-8.0-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, csfle, "8.0", single] @@ -9795,7 +9512,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-csfle-latest-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, csfle, latest, replica] @@ -9822,7 +9538,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-csfle-latest-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, csfle, latest, sharded] @@ -9849,7 +9564,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-csfle-latest-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, csfle, latest, single] @@ -9875,7 +9589,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-latest-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, latest, replica] @@ -9901,7 +9614,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-latest-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, latest, sharded] @@ -9927,7 +9639,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-shared-cxx17-latest-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, shared, cxx17, latest, single] @@ -9952,7 +9663,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx11-4.2-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, "4.2", replica] @@ -9980,7 +9690,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-4.2-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, "4.2", sharded] @@ -10008,7 +9717,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-4.2-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, "4.2", single] @@ -10035,7 +9743,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-4.4-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, "4.4", replica] @@ -10063,7 +9770,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-4.4-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, "4.4", sharded] @@ -10091,7 +9797,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-4.4-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, "4.4", single] @@ -10118,7 +9823,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-5.0-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, "5.0", replica] @@ -10146,7 +9850,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-5.0-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, "5.0", sharded] @@ -10174,7 +9877,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-5.0-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, "5.0", single] @@ -10201,7 +9903,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-6.0-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, "6.0", replica] @@ -10229,7 +9930,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-6.0-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, "6.0", sharded] @@ -10257,7 +9957,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-6.0-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, "6.0", single] @@ -10284,7 +9983,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-7.0-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, "7.0", replica] @@ -10312,7 +10010,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-7.0-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, "7.0", sharded] @@ -10340,7 +10037,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-7.0-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, "7.0", single] @@ -10367,7 +10063,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-8.0-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, "8.0", replica] @@ -10395,7 +10090,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-8.0-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, "8.0", sharded] @@ -10423,7 +10117,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-8.0-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, "8.0", single] @@ -10450,7 +10143,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-csfle-4.2-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, csfle, "4.2", replica] @@ -10479,7 +10171,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-csfle-4.2-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, csfle, "4.2", sharded] @@ -10508,7 +10199,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-csfle-4.2-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, csfle, "4.2", single] @@ -10536,7 +10226,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-csfle-4.4-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, csfle, "4.4", replica] @@ -10565,7 +10254,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-csfle-4.4-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, csfle, "4.4", sharded] @@ -10594,7 +10282,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-csfle-4.4-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, csfle, "4.4", single] @@ -10622,7 +10309,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-csfle-5.0-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, csfle, "5.0", replica] @@ -10651,7 +10337,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-csfle-5.0-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, csfle, "5.0", sharded] @@ -10680,7 +10365,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-csfle-5.0-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, csfle, "5.0", single] @@ -10708,7 +10392,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-csfle-6.0-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, csfle, "6.0", replica] @@ -10737,7 +10420,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-csfle-6.0-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, csfle, "6.0", sharded] @@ -10766,7 +10448,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-csfle-6.0-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, csfle, "6.0", single] @@ -10794,7 +10475,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-csfle-7.0-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, csfle, "7.0", replica] @@ -10823,7 +10503,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-csfle-7.0-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, csfle, "7.0", sharded] @@ -10852,7 +10531,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-csfle-7.0-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, csfle, "7.0", single] @@ -10880,7 +10558,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-csfle-8.0-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, csfle, "8.0", replica] @@ -10909,7 +10586,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-csfle-8.0-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, csfle, "8.0", sharded] @@ -10938,7 +10614,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-csfle-8.0-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, csfle, "8.0", single] @@ -10966,7 +10641,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-csfle-latest-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, csfle, latest, replica] @@ -10995,7 +10669,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-csfle-latest-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, csfle, latest, sharded] @@ -11024,7 +10697,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-csfle-latest-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, csfle, latest, single] @@ -11052,7 +10724,6 @@ tasks: REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-latest-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, latest, replica] @@ -11080,7 +10751,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-latest-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, latest, sharded] @@ -11108,7 +10778,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx11-latest-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx11, latest, single] @@ -11135,7 +10804,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 11 - name: integration-rhel80-debug-static-cxx17-4.2-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, "4.2", replica] @@ -11163,7 +10831,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-4.2-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, "4.2", sharded] @@ -11191,7 +10858,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-4.2-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, "4.2", single] @@ -11218,7 +10884,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-4.4-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, "4.4", replica] @@ -11246,7 +10911,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-4.4-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, "4.4", sharded] @@ -11274,7 +10938,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-4.4-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, "4.4", single] @@ -11301,7 +10964,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-5.0-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, "5.0", replica] @@ -11329,7 +10991,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-5.0-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, "5.0", sharded] @@ -11357,7 +11018,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-5.0-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, "5.0", single] @@ -11384,7 +11044,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-6.0-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, "6.0", replica] @@ -11412,7 +11071,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-6.0-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, "6.0", sharded] @@ -11440,7 +11098,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-6.0-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, "6.0", single] @@ -11467,7 +11124,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-7.0-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, "7.0", replica] @@ -11495,7 +11151,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-7.0-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, "7.0", sharded] @@ -11523,7 +11178,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-7.0-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, "7.0", single] @@ -11550,7 +11204,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-8.0-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, "8.0", replica] @@ -11578,7 +11231,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-8.0-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, "8.0", sharded] @@ -11606,7 +11258,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-8.0-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, "8.0", single] @@ -11633,7 +11284,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-csfle-4.2-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, csfle, "4.2", replica] @@ -11662,7 +11312,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-csfle-4.2-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, csfle, "4.2", sharded] @@ -11691,7 +11340,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-csfle-4.2-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, csfle, "4.2", single] @@ -11719,7 +11367,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-csfle-4.4-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, csfle, "4.4", replica] @@ -11748,7 +11395,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-csfle-4.4-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, csfle, "4.4", sharded] @@ -11777,7 +11423,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-csfle-4.4-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, csfle, "4.4", single] @@ -11805,7 +11450,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-csfle-5.0-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, csfle, "5.0", replica] @@ -11834,7 +11478,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-csfle-5.0-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, csfle, "5.0", sharded] @@ -11863,7 +11506,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-csfle-5.0-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, csfle, "5.0", single] @@ -11891,7 +11533,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-csfle-6.0-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, csfle, "6.0", replica] @@ -11920,7 +11561,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-csfle-6.0-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, csfle, "6.0", sharded] @@ -11949,7 +11589,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-csfle-6.0-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, csfle, "6.0", single] @@ -11977,7 +11616,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-csfle-7.0-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, csfle, "7.0", replica] @@ -12006,7 +11644,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-csfle-7.0-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, csfle, "7.0", sharded] @@ -12035,7 +11672,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-csfle-7.0-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, csfle, "7.0", single] @@ -12063,7 +11699,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-csfle-8.0-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, csfle, "8.0", replica] @@ -12092,7 +11727,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-csfle-8.0-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, csfle, "8.0", sharded] @@ -12121,7 +11755,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-csfle-8.0-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, csfle, "8.0", single] @@ -12149,7 +11782,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-csfle-latest-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, csfle, latest, replica] @@ -12178,7 +11810,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-csfle-latest-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, csfle, latest, sharded] @@ -12207,7 +11838,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-csfle-latest-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, csfle, latest, single] @@ -12235,7 +11865,6 @@ tasks: REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-latest-replica run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, latest, replica] @@ -12263,7 +11892,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-latest-sharded run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, latest, sharded] @@ -12291,7 +11919,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-rhel80-debug-static-cxx17-latest-single run_on: rhel80-large tags: [integration, rhel80, linux, debug, static, cxx17, latest, single] @@ -12318,7 +11945,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 USE_STATIC_LIBS: 1 - example_projects_cxx_standard: 17 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx11-4.2-replica run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx11, "4.2", replica] @@ -12346,7 +11972,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx11-4.2-sharded run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx11, "4.2", sharded] @@ -12374,7 +11999,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx11-4.2-single run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx11, "4.2", single] @@ -12401,7 +12025,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx11-8.0-replica run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx11, "8.0", replica] @@ -12429,7 +12052,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx11-8.0-sharded run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx11, "8.0", sharded] @@ -12457,7 +12079,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx11-8.0-single run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx11, "8.0", single] @@ -12484,7 +12105,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx11-csfle-4.2-replica run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx11, csfle, "4.2", replica] @@ -12513,7 +12133,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx11-csfle-4.2-sharded run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx11, csfle, "4.2", sharded] @@ -12542,7 +12161,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx11-csfle-4.2-single run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx11, csfle, "4.2", single] @@ -12570,7 +12188,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx11-csfle-8.0-replica run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx11, csfle, "8.0", replica] @@ -12599,7 +12216,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx11-csfle-8.0-sharded run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx11, csfle, "8.0", sharded] @@ -12628,7 +12244,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx11-csfle-8.0-single run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx11, csfle, "8.0", single] @@ -12656,7 +12271,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx11-csfle-latest-replica run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx11, csfle, latest, replica] @@ -12685,7 +12299,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx11-csfle-latest-replica-mongocryptd run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx11, csfle, latest, replica, mongocryptd] @@ -12714,7 +12327,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 use_mongocryptd: true - name: integration-windows-2019-vs2022-x64-debug-shared-cxx11-csfle-latest-sharded run_on: windows-vsCurrent-large @@ -12744,7 +12356,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx11-csfle-latest-single run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx11, csfle, latest, single] @@ -12772,7 +12383,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 11 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx11-latest-replica run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx11, latest, replica] @@ -12800,7 +12410,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx11-latest-sharded run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx11, latest, sharded] @@ -12828,7 +12437,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx11-latest-single run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx11, latest, single] @@ -12855,7 +12463,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 11 - example_projects_cxx_standard: 11 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx17-4.2-replica run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx17, "4.2", replica] @@ -12883,7 +12490,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx17-4.2-sharded run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx17, "4.2", sharded] @@ -12911,7 +12517,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx17-4.2-single run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx17, "4.2", single] @@ -12938,7 +12543,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx17-8.0-replica run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx17, "8.0", replica] @@ -12966,7 +12570,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx17-8.0-sharded run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx17, "8.0", sharded] @@ -12994,7 +12597,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx17-8.0-single run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx17, "8.0", single] @@ -13021,7 +12623,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx17-csfle-4.2-replica run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx17, csfle, "4.2", replica] @@ -13050,7 +12651,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx17-csfle-4.2-sharded run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx17, csfle, "4.2", sharded] @@ -13079,7 +12679,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx17-csfle-4.2-single run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx17, csfle, "4.2", single] @@ -13107,7 +12706,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx17-csfle-8.0-replica run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx17, csfle, "8.0", replica] @@ -13136,7 +12734,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx17-csfle-8.0-sharded run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx17, csfle, "8.0", sharded] @@ -13165,7 +12762,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx17-csfle-8.0-single run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx17, csfle, "8.0", single] @@ -13193,7 +12789,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx17-csfle-latest-replica run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx17, csfle, latest, replica] @@ -13222,7 +12817,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx17-csfle-latest-sharded run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx17, csfle, latest, sharded] @@ -13251,7 +12845,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx17-csfle-latest-single run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx17, csfle, latest, single] @@ -13279,7 +12872,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 TEST_WITH_CSFLE: "ON" - example_projects_cxx_standard: 17 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx17-latest-replica run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx17, latest, replica] @@ -13307,7 +12899,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: replica REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx17-latest-sharded run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx17, latest, sharded] @@ -13335,7 +12926,6 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: sharded REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 - name: integration-windows-2019-vs2022-x64-debug-shared-cxx17-latest-single run_on: windows-vsCurrent-large tags: [integration, windows-vsCurrent, windows, debug, shared, cxx17, latest, single] @@ -13362,7 +12952,486 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single REQUIRED_CXX_STANDARD: 17 - example_projects_cxx_standard: 17 + - name: integration-windows-2022-latest-gcc-debug-shared-cxx11-4.2-replica + run_on: windows-2022-latest-large + tags: [integration, windows-2022-latest, windows, debug, shared, cxx11, "4.2", replica] + commands: + - command: expansions.update + params: + updates: + - { key: build_type, value: Debug } + - { key: cc_compiler, value: gcc } + - { key: cxx_compiler, value: g++ } + - func: setup + - func: start_mongod + vars: + TOPOLOGY: replica_set + mongodb_version: "4.2" + - func: install_c_driver + - func: compile + vars: + ENABLE_TESTS: "ON" + REQUIRED_CXX_STANDARD: 11 + RUN_DISTCHECK: 1 + - func: fetch-det + - func: run_kms_servers + - func: test + vars: + MONGOCXX_TEST_TOPOLOGY: replica + REQUIRED_CXX_STANDARD: 11 + - name: integration-windows-2022-latest-gcc-debug-shared-cxx11-4.2-sharded + run_on: windows-2022-latest-large + tags: [integration, windows-2022-latest, windows, debug, shared, cxx11, "4.2", sharded] + commands: + - command: expansions.update + params: + updates: + - { key: build_type, value: Debug } + - { key: cc_compiler, value: gcc } + - { key: cxx_compiler, value: g++ } + - func: setup + - func: start_mongod + vars: + TOPOLOGY: sharded_cluster + mongodb_version: "4.2" + - func: install_c_driver + - func: compile + vars: + ENABLE_TESTS: "ON" + REQUIRED_CXX_STANDARD: 11 + RUN_DISTCHECK: 1 + - func: fetch-det + - func: run_kms_servers + - func: test + vars: + MONGOCXX_TEST_TOPOLOGY: sharded + REQUIRED_CXX_STANDARD: 11 + - name: integration-windows-2022-latest-gcc-debug-shared-cxx11-4.2-single + run_on: windows-2022-latest-large + tags: [integration, windows-2022-latest, windows, debug, shared, cxx11, "4.2", single] + commands: + - command: expansions.update + params: + updates: + - { key: build_type, value: Debug } + - { key: cc_compiler, value: gcc } + - { key: cxx_compiler, value: g++ } + - func: setup + - func: start_mongod + vars: + mongodb_version: "4.2" + - func: install_c_driver + - func: compile + vars: + ENABLE_TESTS: "ON" + REQUIRED_CXX_STANDARD: 11 + RUN_DISTCHECK: 1 + - func: fetch-det + - func: run_kms_servers + - func: test + vars: + MONGOCXX_TEST_TOPOLOGY: single + REQUIRED_CXX_STANDARD: 11 + - name: integration-windows-2022-latest-gcc-debug-shared-cxx11-8.0-replica + run_on: windows-2022-latest-large + tags: [integration, windows-2022-latest, windows, debug, shared, cxx11, "8.0", replica] + commands: + - command: expansions.update + params: + updates: + - { key: build_type, value: Debug } + - { key: cc_compiler, value: gcc } + - { key: cxx_compiler, value: g++ } + - func: setup + - func: start_mongod + vars: + TOPOLOGY: replica_set + mongodb_version: "8.0" + - func: install_c_driver + - func: compile + vars: + ENABLE_TESTS: "ON" + REQUIRED_CXX_STANDARD: 11 + RUN_DISTCHECK: 1 + - func: fetch-det + - func: run_kms_servers + - func: test + vars: + MONGOCXX_TEST_TOPOLOGY: replica + REQUIRED_CXX_STANDARD: 11 + - name: integration-windows-2022-latest-gcc-debug-shared-cxx11-8.0-sharded + run_on: windows-2022-latest-large + tags: [integration, windows-2022-latest, windows, debug, shared, cxx11, "8.0", sharded] + commands: + - command: expansions.update + params: + updates: + - { key: build_type, value: Debug } + - { key: cc_compiler, value: gcc } + - { key: cxx_compiler, value: g++ } + - func: setup + - func: start_mongod + vars: + TOPOLOGY: sharded_cluster + mongodb_version: "8.0" + - func: install_c_driver + - func: compile + vars: + ENABLE_TESTS: "ON" + REQUIRED_CXX_STANDARD: 11 + RUN_DISTCHECK: 1 + - func: fetch-det + - func: run_kms_servers + - func: test + vars: + MONGOCXX_TEST_TOPOLOGY: sharded + REQUIRED_CXX_STANDARD: 11 + - name: integration-windows-2022-latest-gcc-debug-shared-cxx11-8.0-single + run_on: windows-2022-latest-large + tags: [integration, windows-2022-latest, windows, debug, shared, cxx11, "8.0", single] + commands: + - command: expansions.update + params: + updates: + - { key: build_type, value: Debug } + - { key: cc_compiler, value: gcc } + - { key: cxx_compiler, value: g++ } + - func: setup + - func: start_mongod + vars: + mongodb_version: "8.0" + - func: install_c_driver + - func: compile + vars: + ENABLE_TESTS: "ON" + REQUIRED_CXX_STANDARD: 11 + RUN_DISTCHECK: 1 + - func: fetch-det + - func: run_kms_servers + - func: test + vars: + MONGOCXX_TEST_TOPOLOGY: single + REQUIRED_CXX_STANDARD: 11 + - name: integration-windows-2022-latest-gcc-debug-shared-cxx11-latest-replica + run_on: windows-2022-latest-large + tags: [integration, windows-2022-latest, windows, debug, shared, cxx11, latest, replica] + commands: + - command: expansions.update + params: + updates: + - { key: build_type, value: Debug } + - { key: cc_compiler, value: gcc } + - { key: cxx_compiler, value: g++ } + - func: setup + - func: start_mongod + vars: + TOPOLOGY: replica_set + mongodb_version: latest + - func: install_c_driver + - func: compile + vars: + ENABLE_TESTS: "ON" + REQUIRED_CXX_STANDARD: 11 + RUN_DISTCHECK: 1 + - func: fetch-det + - func: run_kms_servers + - func: test + vars: + MONGOCXX_TEST_TOPOLOGY: replica + REQUIRED_CXX_STANDARD: 11 + - name: integration-windows-2022-latest-gcc-debug-shared-cxx11-latest-sharded + run_on: windows-2022-latest-large + tags: [integration, windows-2022-latest, windows, debug, shared, cxx11, latest, sharded] + commands: + - command: expansions.update + params: + updates: + - { key: build_type, value: Debug } + - { key: cc_compiler, value: gcc } + - { key: cxx_compiler, value: g++ } + - func: setup + - func: start_mongod + vars: + TOPOLOGY: sharded_cluster + mongodb_version: latest + - func: install_c_driver + - func: compile + vars: + ENABLE_TESTS: "ON" + REQUIRED_CXX_STANDARD: 11 + RUN_DISTCHECK: 1 + - func: fetch-det + - func: run_kms_servers + - func: test + vars: + MONGOCXX_TEST_TOPOLOGY: sharded + REQUIRED_CXX_STANDARD: 11 + - name: integration-windows-2022-latest-gcc-debug-shared-cxx11-latest-single + run_on: windows-2022-latest-large + tags: [integration, windows-2022-latest, windows, debug, shared, cxx11, latest, single] + commands: + - command: expansions.update + params: + updates: + - { key: build_type, value: Debug } + - { key: cc_compiler, value: gcc } + - { key: cxx_compiler, value: g++ } + - func: setup + - func: start_mongod + vars: + mongodb_version: latest + - func: install_c_driver + - func: compile + vars: + ENABLE_TESTS: "ON" + REQUIRED_CXX_STANDARD: 11 + RUN_DISTCHECK: 1 + - func: fetch-det + - func: run_kms_servers + - func: test + vars: + MONGOCXX_TEST_TOPOLOGY: single + REQUIRED_CXX_STANDARD: 11 + - name: integration-windows-2022-latest-gcc-debug-shared-cxx17-4.2-replica + run_on: windows-2022-latest-large + tags: [integration, windows-2022-latest, windows, debug, shared, cxx17, "4.2", replica] + commands: + - command: expansions.update + params: + updates: + - { key: build_type, value: Debug } + - { key: cc_compiler, value: gcc } + - { key: cxx_compiler, value: g++ } + - func: setup + - func: start_mongod + vars: + TOPOLOGY: replica_set + mongodb_version: "4.2" + - func: install_c_driver + - func: compile + vars: + ENABLE_TESTS: "ON" + REQUIRED_CXX_STANDARD: 17 + RUN_DISTCHECK: 1 + - func: fetch-det + - func: run_kms_servers + - func: test + vars: + MONGOCXX_TEST_TOPOLOGY: replica + REQUIRED_CXX_STANDARD: 17 + - name: integration-windows-2022-latest-gcc-debug-shared-cxx17-4.2-sharded + run_on: windows-2022-latest-large + tags: [integration, windows-2022-latest, windows, debug, shared, cxx17, "4.2", sharded] + commands: + - command: expansions.update + params: + updates: + - { key: build_type, value: Debug } + - { key: cc_compiler, value: gcc } + - { key: cxx_compiler, value: g++ } + - func: setup + - func: start_mongod + vars: + TOPOLOGY: sharded_cluster + mongodb_version: "4.2" + - func: install_c_driver + - func: compile + vars: + ENABLE_TESTS: "ON" + REQUIRED_CXX_STANDARD: 17 + RUN_DISTCHECK: 1 + - func: fetch-det + - func: run_kms_servers + - func: test + vars: + MONGOCXX_TEST_TOPOLOGY: sharded + REQUIRED_CXX_STANDARD: 17 + - name: integration-windows-2022-latest-gcc-debug-shared-cxx17-4.2-single + run_on: windows-2022-latest-large + tags: [integration, windows-2022-latest, windows, debug, shared, cxx17, "4.2", single] + commands: + - command: expansions.update + params: + updates: + - { key: build_type, value: Debug } + - { key: cc_compiler, value: gcc } + - { key: cxx_compiler, value: g++ } + - func: setup + - func: start_mongod + vars: + mongodb_version: "4.2" + - func: install_c_driver + - func: compile + vars: + ENABLE_TESTS: "ON" + REQUIRED_CXX_STANDARD: 17 + RUN_DISTCHECK: 1 + - func: fetch-det + - func: run_kms_servers + - func: test + vars: + MONGOCXX_TEST_TOPOLOGY: single + REQUIRED_CXX_STANDARD: 17 + - name: integration-windows-2022-latest-gcc-debug-shared-cxx17-8.0-replica + run_on: windows-2022-latest-large + tags: [integration, windows-2022-latest, windows, debug, shared, cxx17, "8.0", replica] + commands: + - command: expansions.update + params: + updates: + - { key: build_type, value: Debug } + - { key: cc_compiler, value: gcc } + - { key: cxx_compiler, value: g++ } + - func: setup + - func: start_mongod + vars: + TOPOLOGY: replica_set + mongodb_version: "8.0" + - func: install_c_driver + - func: compile + vars: + ENABLE_TESTS: "ON" + REQUIRED_CXX_STANDARD: 17 + RUN_DISTCHECK: 1 + - func: fetch-det + - func: run_kms_servers + - func: test + vars: + MONGOCXX_TEST_TOPOLOGY: replica + REQUIRED_CXX_STANDARD: 17 + - name: integration-windows-2022-latest-gcc-debug-shared-cxx17-8.0-sharded + run_on: windows-2022-latest-large + tags: [integration, windows-2022-latest, windows, debug, shared, cxx17, "8.0", sharded] + commands: + - command: expansions.update + params: + updates: + - { key: build_type, value: Debug } + - { key: cc_compiler, value: gcc } + - { key: cxx_compiler, value: g++ } + - func: setup + - func: start_mongod + vars: + TOPOLOGY: sharded_cluster + mongodb_version: "8.0" + - func: install_c_driver + - func: compile + vars: + ENABLE_TESTS: "ON" + REQUIRED_CXX_STANDARD: 17 + RUN_DISTCHECK: 1 + - func: fetch-det + - func: run_kms_servers + - func: test + vars: + MONGOCXX_TEST_TOPOLOGY: sharded + REQUIRED_CXX_STANDARD: 17 + - name: integration-windows-2022-latest-gcc-debug-shared-cxx17-8.0-single + run_on: windows-2022-latest-large + tags: [integration, windows-2022-latest, windows, debug, shared, cxx17, "8.0", single] + commands: + - command: expansions.update + params: + updates: + - { key: build_type, value: Debug } + - { key: cc_compiler, value: gcc } + - { key: cxx_compiler, value: g++ } + - func: setup + - func: start_mongod + vars: + mongodb_version: "8.0" + - func: install_c_driver + - func: compile + vars: + ENABLE_TESTS: "ON" + REQUIRED_CXX_STANDARD: 17 + RUN_DISTCHECK: 1 + - func: fetch-det + - func: run_kms_servers + - func: test + vars: + MONGOCXX_TEST_TOPOLOGY: single + REQUIRED_CXX_STANDARD: 17 + - name: integration-windows-2022-latest-gcc-debug-shared-cxx17-latest-replica + run_on: windows-2022-latest-large + tags: [integration, windows-2022-latest, windows, debug, shared, cxx17, latest, replica] + commands: + - command: expansions.update + params: + updates: + - { key: build_type, value: Debug } + - { key: cc_compiler, value: gcc } + - { key: cxx_compiler, value: g++ } + - func: setup + - func: start_mongod + vars: + TOPOLOGY: replica_set + mongodb_version: latest + - func: install_c_driver + - func: compile + vars: + ENABLE_TESTS: "ON" + REQUIRED_CXX_STANDARD: 17 + RUN_DISTCHECK: 1 + - func: fetch-det + - func: run_kms_servers + - func: test + vars: + MONGOCXX_TEST_TOPOLOGY: replica + REQUIRED_CXX_STANDARD: 17 + - name: integration-windows-2022-latest-gcc-debug-shared-cxx17-latest-sharded + run_on: windows-2022-latest-large + tags: [integration, windows-2022-latest, windows, debug, shared, cxx17, latest, sharded] + commands: + - command: expansions.update + params: + updates: + - { key: build_type, value: Debug } + - { key: cc_compiler, value: gcc } + - { key: cxx_compiler, value: g++ } + - func: setup + - func: start_mongod + vars: + TOPOLOGY: sharded_cluster + mongodb_version: latest + - func: install_c_driver + - func: compile + vars: + ENABLE_TESTS: "ON" + REQUIRED_CXX_STANDARD: 17 + RUN_DISTCHECK: 1 + - func: fetch-det + - func: run_kms_servers + - func: test + vars: + MONGOCXX_TEST_TOPOLOGY: sharded + REQUIRED_CXX_STANDARD: 17 + - name: integration-windows-2022-latest-gcc-debug-shared-cxx17-latest-single + run_on: windows-2022-latest-large + tags: [integration, windows-2022-latest, windows, debug, shared, cxx17, latest, single] + commands: + - command: expansions.update + params: + updates: + - { key: build_type, value: Debug } + - { key: cc_compiler, value: gcc } + - { key: cxx_compiler, value: g++ } + - func: setup + - func: start_mongod + vars: + mongodb_version: latest + - func: install_c_driver + - func: compile + vars: + ENABLE_TESTS: "ON" + REQUIRED_CXX_STANDARD: 17 + RUN_DISTCHECK: 1 + - func: fetch-det + - func: run_kms_servers + - func: test + vars: + MONGOCXX_TEST_TOPOLOGY: single + REQUIRED_CXX_STANDARD: 17 - name: lint run_on: rhel80-small tags: [lint] @@ -13457,8 +13526,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica TEST_WITH_ASAN: "ON" TEST_WITH_CSFLE: "ON" - example_projects_cc: /opt/mongodbtoolchain/v4/bin/clang - example_projects_cxx: /opt/mongodbtoolchain/v4/bin/clang++ example_projects_cxxflags: -fsanitize=address -fno-omit-frame-pointer example_projects_ldflags: -fsanitize=address - name: sanitizers-asan-rhel80-clang-static-4.2-sharded @@ -13490,8 +13557,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded TEST_WITH_ASAN: "ON" TEST_WITH_CSFLE: "ON" - example_projects_cc: /opt/mongodbtoolchain/v4/bin/clang - example_projects_cxx: /opt/mongodbtoolchain/v4/bin/clang++ example_projects_cxxflags: -fsanitize=address -fno-omit-frame-pointer example_projects_ldflags: -fsanitize=address - name: sanitizers-asan-rhel80-clang-static-4.2-single @@ -13522,8 +13587,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single TEST_WITH_ASAN: "ON" TEST_WITH_CSFLE: "ON" - example_projects_cc: /opt/mongodbtoolchain/v4/bin/clang - example_projects_cxx: /opt/mongodbtoolchain/v4/bin/clang++ example_projects_cxxflags: -fsanitize=address -fno-omit-frame-pointer example_projects_ldflags: -fsanitize=address - name: sanitizers-asan-rhel80-clang-static-8.0-replica @@ -13555,8 +13618,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica TEST_WITH_ASAN: "ON" TEST_WITH_CSFLE: "ON" - example_projects_cc: /opt/mongodbtoolchain/v4/bin/clang - example_projects_cxx: /opt/mongodbtoolchain/v4/bin/clang++ example_projects_cxxflags: -fsanitize=address -fno-omit-frame-pointer example_projects_ldflags: -fsanitize=address - name: sanitizers-asan-rhel80-clang-static-8.0-sharded @@ -13588,8 +13649,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded TEST_WITH_ASAN: "ON" TEST_WITH_CSFLE: "ON" - example_projects_cc: /opt/mongodbtoolchain/v4/bin/clang - example_projects_cxx: /opt/mongodbtoolchain/v4/bin/clang++ example_projects_cxxflags: -fsanitize=address -fno-omit-frame-pointer example_projects_ldflags: -fsanitize=address - name: sanitizers-asan-rhel80-clang-static-8.0-single @@ -13620,8 +13679,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single TEST_WITH_ASAN: "ON" TEST_WITH_CSFLE: "ON" - example_projects_cc: /opt/mongodbtoolchain/v4/bin/clang - example_projects_cxx: /opt/mongodbtoolchain/v4/bin/clang++ example_projects_cxxflags: -fsanitize=address -fno-omit-frame-pointer example_projects_ldflags: -fsanitize=address - name: sanitizers-asan-rhel80-clang-static-latest-replica @@ -13653,8 +13710,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica TEST_WITH_ASAN: "ON" TEST_WITH_CSFLE: "ON" - example_projects_cc: /opt/mongodbtoolchain/v4/bin/clang - example_projects_cxx: /opt/mongodbtoolchain/v4/bin/clang++ example_projects_cxxflags: -fsanitize=address -fno-omit-frame-pointer example_projects_ldflags: -fsanitize=address - name: sanitizers-asan-rhel80-clang-static-latest-sharded @@ -13686,8 +13741,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded TEST_WITH_ASAN: "ON" TEST_WITH_CSFLE: "ON" - example_projects_cc: /opt/mongodbtoolchain/v4/bin/clang - example_projects_cxx: /opt/mongodbtoolchain/v4/bin/clang++ example_projects_cxxflags: -fsanitize=address -fno-omit-frame-pointer example_projects_ldflags: -fsanitize=address - name: sanitizers-asan-rhel80-clang-static-latest-single @@ -13718,8 +13771,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single TEST_WITH_ASAN: "ON" TEST_WITH_CSFLE: "ON" - example_projects_cc: /opt/mongodbtoolchain/v4/bin/clang - example_projects_cxx: /opt/mongodbtoolchain/v4/bin/clang++ example_projects_cxxflags: -fsanitize=address -fno-omit-frame-pointer example_projects_ldflags: -fsanitize=address - name: sanitizers-ubsan-rhel80-clang-static-4.2-replica @@ -13751,8 +13802,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica TEST_WITH_CSFLE: "ON" TEST_WITH_UBSAN: "ON" - example_projects_cc: /opt/mongodbtoolchain/v4/bin/clang - example_projects_cxx: /opt/mongodbtoolchain/v4/bin/clang++ example_projects_cxxflags: -fsanitize=undefined -fno-sanitize-recover=undefined -fno-omit-frame-pointer example_projects_ldflags: -fsanitize=undefined -fno-sanitize-recover=undefined -static-libsan - name: sanitizers-ubsan-rhel80-clang-static-4.2-sharded @@ -13784,8 +13833,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded TEST_WITH_CSFLE: "ON" TEST_WITH_UBSAN: "ON" - example_projects_cc: /opt/mongodbtoolchain/v4/bin/clang - example_projects_cxx: /opt/mongodbtoolchain/v4/bin/clang++ example_projects_cxxflags: -fsanitize=undefined -fno-sanitize-recover=undefined -fno-omit-frame-pointer example_projects_ldflags: -fsanitize=undefined -fno-sanitize-recover=undefined -static-libsan - name: sanitizers-ubsan-rhel80-clang-static-4.2-single @@ -13816,8 +13863,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single TEST_WITH_CSFLE: "ON" TEST_WITH_UBSAN: "ON" - example_projects_cc: /opt/mongodbtoolchain/v4/bin/clang - example_projects_cxx: /opt/mongodbtoolchain/v4/bin/clang++ example_projects_cxxflags: -fsanitize=undefined -fno-sanitize-recover=undefined -fno-omit-frame-pointer example_projects_ldflags: -fsanitize=undefined -fno-sanitize-recover=undefined -static-libsan - name: sanitizers-ubsan-rhel80-clang-static-8.0-replica @@ -13849,8 +13894,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica TEST_WITH_CSFLE: "ON" TEST_WITH_UBSAN: "ON" - example_projects_cc: /opt/mongodbtoolchain/v4/bin/clang - example_projects_cxx: /opt/mongodbtoolchain/v4/bin/clang++ example_projects_cxxflags: -fsanitize=undefined -fno-sanitize-recover=undefined -fno-omit-frame-pointer example_projects_ldflags: -fsanitize=undefined -fno-sanitize-recover=undefined -static-libsan - name: sanitizers-ubsan-rhel80-clang-static-8.0-sharded @@ -13882,8 +13925,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded TEST_WITH_CSFLE: "ON" TEST_WITH_UBSAN: "ON" - example_projects_cc: /opt/mongodbtoolchain/v4/bin/clang - example_projects_cxx: /opt/mongodbtoolchain/v4/bin/clang++ example_projects_cxxflags: -fsanitize=undefined -fno-sanitize-recover=undefined -fno-omit-frame-pointer example_projects_ldflags: -fsanitize=undefined -fno-sanitize-recover=undefined -static-libsan - name: sanitizers-ubsan-rhel80-clang-static-8.0-single @@ -13914,8 +13955,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single TEST_WITH_CSFLE: "ON" TEST_WITH_UBSAN: "ON" - example_projects_cc: /opt/mongodbtoolchain/v4/bin/clang - example_projects_cxx: /opt/mongodbtoolchain/v4/bin/clang++ example_projects_cxxflags: -fsanitize=undefined -fno-sanitize-recover=undefined -fno-omit-frame-pointer example_projects_ldflags: -fsanitize=undefined -fno-sanitize-recover=undefined -static-libsan - name: sanitizers-ubsan-rhel80-clang-static-latest-replica @@ -13947,8 +13986,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: replica TEST_WITH_CSFLE: "ON" TEST_WITH_UBSAN: "ON" - example_projects_cc: /opt/mongodbtoolchain/v4/bin/clang - example_projects_cxx: /opt/mongodbtoolchain/v4/bin/clang++ example_projects_cxxflags: -fsanitize=undefined -fno-sanitize-recover=undefined -fno-omit-frame-pointer example_projects_ldflags: -fsanitize=undefined -fno-sanitize-recover=undefined -static-libsan - name: sanitizers-ubsan-rhel80-clang-static-latest-sharded @@ -13980,8 +14017,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: sharded TEST_WITH_CSFLE: "ON" TEST_WITH_UBSAN: "ON" - example_projects_cc: /opt/mongodbtoolchain/v4/bin/clang - example_projects_cxx: /opt/mongodbtoolchain/v4/bin/clang++ example_projects_cxxflags: -fsanitize=undefined -fno-sanitize-recover=undefined -fno-omit-frame-pointer example_projects_ldflags: -fsanitize=undefined -fno-sanitize-recover=undefined -static-libsan - name: sanitizers-ubsan-rhel80-clang-static-latest-single @@ -14012,8 +14047,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single TEST_WITH_CSFLE: "ON" TEST_WITH_UBSAN: "ON" - example_projects_cc: /opt/mongodbtoolchain/v4/bin/clang - example_projects_cxx: /opt/mongodbtoolchain/v4/bin/clang++ example_projects_cxxflags: -fsanitize=undefined -fno-sanitize-recover=undefined -fno-omit-frame-pointer example_projects_ldflags: -fsanitize=undefined -fno-sanitize-recover=undefined -static-libsan - name: sbom @@ -14547,7 +14580,6 @@ tasks: MONGOCXX_TEST_TOPOLOGY: single MONGODB_API_VERSION: 1 build_type: Debug - example_projects_cxx_standard: 17 generator: Visual Studio 17 2022 platform: x64 - name: versioned-api-two-accepted-macos-14-arm64-debug-shared @@ -14615,6 +14647,5 @@ tasks: vars: MONGOCXX_TEST_TOPOLOGY: single build_type: Debug - example_projects_cxx_standard: 17 generator: Visual Studio 17 2022 platform: x64 diff --git a/.evergreen/scripts/cmake-compat-check.sh b/.evergreen/scripts/cmake-compat-check.sh index caf3db9a86..af8cdb38b6 100755 --- a/.evergreen/scripts/cmake-compat-check.sh +++ b/.evergreen/scripts/cmake-compat-check.sh @@ -72,7 +72,7 @@ printf " - %s\n" "${cmake_flags[@]:?}" echo "Importing C++ Driver via find_package()..." { cat >|CMakeLists.txt <|CMakeLists.txt <./build/VERSION_CURRENT @@ -91,35 +103,6 @@ if [[ -z "$(find "${mongoc_prefix:?}" -name 'bson-config.h')" ]]; then cmake_flags+=("-DCMAKE_DISABLE_FIND_PACKAGE_mongoc-1.0=ON") fi -_RUN_DISTCHECK="" -case "${OSTYPE:?}" in -cygwin) - case "${generator:-}" in - *2015* | *2017* | *2019* | *2022*) - # MSBuild parallelism. - export UseMultiToolTask=true - export EnforceProcessCountAcrossBuilds=true - ;; - *) - echo "missing explicit CMake Generator on Windows distro" 1>&2 - exit 1 - ;; - esac - ;; -darwin* | linux*) - : "${generator:="Ninja"}" - - # If enabled, limit distcheck to Unix-like systems only. - _RUN_DISTCHECK="${RUN_DISTCHECK:-}" - ;; -*) - echo "unrecognized operating system ${OSTYPE:?}" 1>&2 - exit 1 - ;; -esac -export CMAKE_GENERATOR="${generator:?}" -export CMAKE_GENERATOR_PLATFORM="${platform:-}" - if [[ -n "${REQUIRED_CXX_STANDARD:-}" ]]; then echo "Checking requested C++ standard is supported..." pushd "$(mktemp -d)" @@ -168,20 +151,23 @@ cxx_flags=() case "${OSTYPE:?}" in cygwin) - # Most compiler flags are not applicable to builds on Windows distros. - - # Replace `/Zi`, which is incompatible with ccache, with `/Z7` while preserving other default debug flags. - cmake_flags+=( - "-DCMAKE_MSVC_DEBUG_INFORMATION_FORMAT=Embedded" - ) + if [[ "${generator:-}" == Visual\ Studio\ * ]]; then + # Replace `/Zi`, which is incompatible with ccache, with `/Z7` while preserving other default debug flags. + cmake_flags+=( + "-DCMAKE_MSVC_DEBUG_INFORMATION_FORMAT=Embedded" + ) - # Ensure default MSVC flags are preserved despite explicit compiler flags. - cc_flags+=(/DWIN32 /D_WINDOWS) - cxx_flags+=(/DWIN32 /D_WINDOWS /GR /EHsc) - if [[ "${build_type:?}" == "debug" ]]; then - cxx_flags+=(/Ob0 /Od /RTC1) + # Ensure default MSVC flags are preserved despite explicit compiler flags. + cc_flags+=(/DWIN32 /D_WINDOWS) + cxx_flags+=(/DWIN32 /D_WINDOWS /GR /EHsc) + if [[ "${build_type:?}" == "debug" ]]; then + cxx_flags+=(/Ob0 /Od /RTC1) + else + cxx_flags+=(/O2 /Ob2 /DNDEBUG) + fi else - cxx_flags+=(/O2 /Ob2 /DNDEBUG) + cc_flags+=("${cc_flags_init[@]}") + cxx_flags+=("${cxx_flags_init[@]}") fi ;; darwin*) diff --git a/.evergreen/scripts/install-c-driver.sh b/.evergreen/scripts/install-c-driver.sh index ff74ae6fb1..af5faf384d 100755 --- a/.evergreen/scripts/install-c-driver.sh +++ b/.evergreen/scripts/install-c-driver.sh @@ -35,29 +35,81 @@ install_build_tools # Default CMake generator to use if not already provided. declare CMAKE_GENERATOR CMAKE_GENERATOR_PLATFORM -if [[ "${OSTYPE:?}" == "cygwin" ]]; then - # MSBuild task-based parallelism (VS 2019 16.3 and newer). - export UseMultiToolTask=true - export EnforceProcessCountAcrossBuilds=true - # MSBuild inter-project parallelism via CMake (3.26 and newer). - export CMAKE_BUILD_PARALLEL_LEVEL - CMAKE_BUILD_PARALLEL_LEVEL="$(nproc)" # /maxcpucount - - CMAKE_GENERATOR="${generator:-"Visual Studio 14 2015"}" - CMAKE_GENERATOR_PLATFORM="${platform:-"x64"}" -else - CMAKE_GENERATOR="Ninja" - CMAKE_GENERATOR_PLATFORM="${platform:-""}" -fi -export CMAKE_GENERATOR CMAKE_GENERATOR_PLATFORM +case "${OSTYPE:?}" in +cygwin) + if [[ "${generator:-}" == Visual\ Studio\ * ]]; then + # MSBuild task-based parallelism (VS 2019 16.3 and newer). + export UseMultiToolTask=true + export EnforceProcessCountAcrossBuilds=true + # MSBuild inter-project parallelism via CMake (3.26 and newer). + export CMAKE_BUILD_PARALLEL_LEVEL + CMAKE_BUILD_PARALLEL_LEVEL="$(nproc)" # /maxcpucount + + CMAKE_GENERATOR="${generator:?}" + CMAKE_GENERATOR_PLATFORM="${platform:-"x64"}" + else + : "${generator:="Ninja Multi-Config"}" + PATH="/cygdrive/c/ProgramData/chocolatey/lib/winlibs/tools/mingw64/bin:${PATH:-}" # mingw-w64 GCC + fi + ;; + +darwin* | linux*) + : "${generator:="Ninja"}" + ;; + +*) + echo "unrecognized operating system ${OSTYPE:?}" 1>&2 + exit 1 + ;; +esac +export CMAKE_GENERATOR="${generator:?}" +export CMAKE_GENERATOR_PLATFORM="${platform:-}" # Install libmongocrypt. if [[ "${SKIP_INSTALL_LIBMONGOCRYPT:-}" != "1" ]]; then - { - echo "Installing libmongocrypt into ${mongoc_dir}..." 1>&2 + echo "Installing libmongocrypt into ${mongoc_install_idir}..." + + # Avoid using compile-libmongocrypt.sh (mongo-c-driver) -> compile.sh (libmongocrypt) -> build_all.sh (libmongocrypt), + # which hardcodes MSVC-specific compiler flags (-EHsc) and does not support the Ninja Multi-Config generator (see: + # references to the USE_NINJA environment variable). + if [[ "${OSTYPE:?}" == cygwin && "${CMAKE_GENERATOR:?}" != Visual\ Studio\ * ]]; then + ( + git clone -q --revision=6528eb5cffdf278ec21da952ba2324cc5e2517ac https://github.com/mongodb/libmongocrypt # 1.17.1 or 1.18.0 when released. + + declare -a crypt_cmake_flags=( + "-DMONGOCRYPT_MONGOC_DIR=${mongoc_idir:?}" + "-DBUILD_TESTING=OFF" + "-DENABLE_ONLINE_TESTS=OFF" + "-DENABLE_MONGOC=OFF" + "-DBUILD_VERSION=1.18.0-dev" + ) + + . "${mongoc_dir}/.evergreen/scripts/find-ccache.sh" + find_ccache_and_export_vars "$(pwd)/libmongocrypt" || true + if command -v "${CMAKE_C_COMPILER_LAUNCHER:-}" && [[ "${OSTYPE:?}" == cygwin && "${generator:-}" == Visual\ Studio\ * ]]; then + crypt_cmake_flags+=( + "-DCMAKE_POLICY_DEFAULT_CMP0141=NEW" + "-DCMAKE_MSVC_DEBUG_INFORMATION_FORMAT=Embedded" + ) + fi + + # build_all.sh (libmongocrypt) + cmake \ + "${crypt_cmake_flags[@]:?}" \ + -D CMAKE_INSTALL_PREFIX="${mongoc_install_idir:?}" \ + -D CMAKE_BUILD_TYPE=RelWithDebInfo \ + -S libmongocrypt \ + -B libmongocrypt/cmake-build + cmake --build libmongocrypt/cmake-build --config RelWithDebInfo --target install + ) &>output.txt || { + cat output.txt >&2 + exit 1 + } + else "${mongoc_dir}/.evergreen/scripts/compile-libmongocrypt.sh" "$(command -v cmake)" "${mongoc_idir}" "${mongoc_install_idir}" - echo "Installing libmongocrypt into ${mongoc_dir}... done." 1>&2 - } >/dev/null + fi + + echo "Installing libmongocrypt into ${mongoc_install_idir}... done." fi declare -a configure_flags=( @@ -77,10 +129,17 @@ declare -a compile_flags case "${OSTYPE:?}" in cygwin) - # Replace `/Zi`, which is incompatible with ccache, with `/Z7` while preserving other default debug flags. - cmake_flags+=( - "-DCMAKE_MSVC_DEBUG_INFORMATION_FORMAT=Embedded" - ) + if [[ "${generator:-}" == Visual\ Studio\ * ]]; then + # Replace `/Zi`, which is incompatible with ccache, with `/Z7` while preserving other default debug flags. + configure_flags+=( + "-DCMAKE_MSVC_DEBUG_INFORMATION_FORMAT=Embedded" + ) + else + # Avoid mingw-w64 linker issues (hangs indefinitely?). + configure_flags+=( + "-DMONGO_USE_LLD=OFF" + ) + fi ;; darwin*) configure_flags+=("-DCMAKE_C_FLAGS=-fPIC") diff --git a/.evergreen/scripts/test.sh b/.evergreen/scripts/test.sh index 59d8373795..2507574fc7 100755 --- a/.evergreen/scripts/test.sh +++ b/.evergreen/scripts/test.sh @@ -16,14 +16,12 @@ set -o pipefail : "${ASAN_SYMBOLIZER_PATH:-}" : "${CRYPT_SHARED_LIB_PATH:-}" : "${disable_slow_tests:-}" -: "${example_projects_cc:-}" -: "${example_projects_cxx_standard:-}" -: "${example_projects_cxx:-}" : "${example_projects_cxxflags:-}" : "${example_projects_ldflags:-}" : "${generator:-}" : "${MONGODB_API_VERSION:-}" : "${platform:-}" +: "${REQUIRED_CXX_STANDARD:-}" : "${TEST_WITH_ASAN:-}" : "${TEST_WITH_CSFLE:-}" : "${TEST_WITH_UBSAN:-}" @@ -233,13 +231,40 @@ else echo "Waiting for mock KMS servers to start... done." fi +if [[ "${generator:-}" == Visual\ Studio\ * ]]; then + cmake_build_opts+=("/verbosity:minimal") +elif [[ "${OSTYPE:?}" == cygwin ]]; then + : "${generator:="Ninja Multi-Config"}" + PATH="/cygdrive/c/ProgramData/chocolatey/lib/winlibs/tools/mingw64/bin:${PATH:-}" # mingw-w64 GCC + cmake_build_opts=(--quiet) # "" is not a valid argument to Ninja. +fi + +# Required by example projects. +export CMAKE_GENERATOR="${generator:-}" +export CMAKE_GENERATOR_PLATFORM="${platform:-}" +export CC="${CC:-"cc"}" +export CXX="${CXX:-"c++"}" +export CXX_STANDARD="${REQUIRED_CXX_STANDARD:-"11"}" +export CXXFLAGS="${example_projects_cxxflags:-}" +export LDFLAGS="${example_projects_ldflags:-}" + pushd "${working_dir:?}/build" -if [[ "${OSTYPE:?}" =~ cygwin ]]; then - CTEST_OUTPUT_ON_FAILURE=1 cmake --build . --config "${build_type:?}" --target RUN_TESTS -- /verbosity:minimal +if [[ "${OSTYPE:?}" == cygwin ]]; then + if [[ "${generator:-}" == Visual\ Studio\ * ]]; then + run_tests_target="RUN_TESTS" + build_examples_target="examples/examples" + run_examples_target="examples/run-examples" + else + run_tests_target=test + build_examples_target="examples" + run_examples_target="run-examples" + fi + + CTEST_OUTPUT_ON_FAILURE=1 cmake --build . --config "${build_type:?}" --target "${run_tests_target:?}" -- "${cmake_build_opts[@]:-}" echo "Building examples..." - cmake --build . --config "${build_type:?}" --target examples/examples + cmake --build . --config "${build_type:?}" --target "${build_examples_target:?}" echo "Building examples... done." # Only run examples if MONGODB_API_VERSION is unset. We do not append @@ -247,7 +272,7 @@ if [[ "${OSTYPE:?}" =~ cygwin ]]; then # is true. if [[ -z "$MONGODB_API_VERSION" ]]; then echo "Running examples..." - if ! cmake --build . --config "${build_type:?}" --target examples/run-examples --parallel 1 -- /verbosity:minimal >|output.txt 2>&1; then + if ! cmake --build . --config "${build_type:?}" --target "${run_examples_target:?}" --parallel 1 -- "${cmake_build_opts[@]:-}" >|output.txt 2>&1; then # Only emit output on failure. cat output.txt exit 1 @@ -350,20 +375,7 @@ PKG_CONFIG_PATH+=":${mongoc_dir:?}/${LIB_DIR:?}/pkgconfig" PKG_CONFIG_PATH+=":${working_dir:?}/build/install/${LIB_DIR:?}/pkgconfig" export PKG_CONFIG_PATH -# Environment variables used by example projects. -export CMAKE_GENERATOR="${generator:-"Ninja"}" -export CMAKE_GENERATOR_PLATFORM="${platform:-}" -export BUILD_TYPE="${build_type:?}" -export CXXFLAGS="${example_projects_cxxflags:-}" -export LDFLAGS="${example_projects_ldflags:-}" -export CC="${example_projects_cc:-"cc"}" -export CXX="${example_projects_cxx:-"c++"}" -export CXX_STANDARD="${example_projects_cxx_standard:-11}" -export ninja_binary - -if [[ "$OSTYPE" =~ cygwin ]]; then - export MSVC=1 -else +if [[ "${generator:-}" != Visual\ Studio\ * ]]; then LD_LIBRARY_PATH="${working_dir:?}/build/install/${LIB_DIR:?}:${LD_LIBRARY_PATH:-}" DYLD_FALLBACK_LIBRARY_PATH="$(pwd)/build/install/lib:${DYLD_FALLBACK_LIBRARY_PATH:-}" fi diff --git a/examples/add_subdirectory/CMakeLists.txt b/examples/add_subdirectory/CMakeLists.txt index c6a309ff0e..c399321653 100644 --- a/examples/add_subdirectory/CMakeLists.txt +++ b/examples/add_subdirectory/CMakeLists.txt @@ -15,7 +15,7 @@ # Demonstrates how to use the CMake 'add_subdirectory' mechanism to locate and # build against the mongoc and mongocxx shared libraries. -cmake_minimum_required(VERSION 3.15...4.0) +cmake_minimum_required(VERSION 3.15...4.99) project(HELLO_WORLD LANGUAGES C CXX) diff --git a/examples/projects/bsoncxx/cmake/shared/CMakeLists.txt b/examples/projects/bsoncxx/cmake/shared/CMakeLists.txt index a0c7414d06..3ebc742a8d 100644 --- a/examples/projects/bsoncxx/cmake/shared/CMakeLists.txt +++ b/examples/projects/bsoncxx/cmake/shared/CMakeLists.txt @@ -15,7 +15,7 @@ # Demonstrates how to use the CMake 'find_package' mechanism to locate build against the libbsoncxx # shared library. -cmake_minimum_required(VERSION 3.15...4.0) +cmake_minimum_required(VERSION 3.15...4.99) project(HELLO_WORLD LANGUAGES C CXX) diff --git a/examples/projects/bsoncxx/cmake/shared/build.sh b/examples/projects/bsoncxx/cmake/shared/build.sh index 7ebdbf1cb0..6880df89bc 100755 --- a/examples/projects/bsoncxx/cmake/shared/build.sh +++ b/examples/projects/bsoncxx/cmake/shared/build.sh @@ -4,11 +4,17 @@ set -o errexit set -o pipefail rm -rf build/* -cd build -if [ -z "$MSVC" ]; then - uvx cmake -DCMAKE_BUILD_TYPE="${build_type:?}" -DCMAKE_CXX_STANDARD="${CXX_STANDARD:?}" .. - uvx cmake --build . --target run + +config_flags=("-DCMAKE_CXX_STANDARD=${CXX_STANDARD:?}") +build_flags=() + +if [[ "${OSTYPE:?}" == cygwin ]]; then + build_flags+=(--config "${build_type:?}") else - uvx cmake -G "Visual Studio 15 2017" -A "x64" -DCMAKE_CXX_STANDARD="${CXX_STANDARD:?}" -DCMAKE_MSVC_DEBUG_INFORMATION_FORMAT=Embedded .. - uvx cmake --build . --target run --config "${build_type:?}" -- /verbosity:minimal + config_flags+=("-DCMAKE_BUILD_TYPE=${build_type:?}") fi + +build_flags+=(--target run) + +uvx cmake "${config_flags[@]:?}" -B build +uvx cmake --build build "${build_flags[@]:?}" diff --git a/examples/projects/bsoncxx/cmake/static/CMakeLists.txt b/examples/projects/bsoncxx/cmake/static/CMakeLists.txt index 4cacdfd943..6936a6b5ad 100644 --- a/examples/projects/bsoncxx/cmake/static/CMakeLists.txt +++ b/examples/projects/bsoncxx/cmake/static/CMakeLists.txt @@ -15,7 +15,7 @@ # Demonstrates how to use the CMake 'find_package' mechanism to locate build against the libbsoncxx # static library. -cmake_minimum_required(VERSION 3.15...4.0) +cmake_minimum_required(VERSION 3.15...4.99) project(HELLO_WORLD LANGUAGES C CXX) diff --git a/examples/projects/bsoncxx/cmake/static/build.sh b/examples/projects/bsoncxx/cmake/static/build.sh index 7ebdbf1cb0..6880df89bc 100755 --- a/examples/projects/bsoncxx/cmake/static/build.sh +++ b/examples/projects/bsoncxx/cmake/static/build.sh @@ -4,11 +4,17 @@ set -o errexit set -o pipefail rm -rf build/* -cd build -if [ -z "$MSVC" ]; then - uvx cmake -DCMAKE_BUILD_TYPE="${build_type:?}" -DCMAKE_CXX_STANDARD="${CXX_STANDARD:?}" .. - uvx cmake --build . --target run + +config_flags=("-DCMAKE_CXX_STANDARD=${CXX_STANDARD:?}") +build_flags=() + +if [[ "${OSTYPE:?}" == cygwin ]]; then + build_flags+=(--config "${build_type:?}") else - uvx cmake -G "Visual Studio 15 2017" -A "x64" -DCMAKE_CXX_STANDARD="${CXX_STANDARD:?}" -DCMAKE_MSVC_DEBUG_INFORMATION_FORMAT=Embedded .. - uvx cmake --build . --target run --config "${build_type:?}" -- /verbosity:minimal + config_flags+=("-DCMAKE_BUILD_TYPE=${build_type:?}") fi + +build_flags+=(--target run) + +uvx cmake "${config_flags[@]:?}" -B build +uvx cmake --build build "${build_flags[@]:?}" diff --git a/examples/projects/bsoncxx/pkg-config/shared/build.sh b/examples/projects/bsoncxx/pkg-config/shared/build.sh index c7d6eade58..b3df6a6bff 100755 --- a/examples/projects/bsoncxx/pkg-config/shared/build.sh +++ b/examples/projects/bsoncxx/pkg-config/shared/build.sh @@ -10,8 +10,23 @@ if ! pkg-config --cflags libbsoncxx | grep -v -q -- -DBSONCXX_STATIC; then exit 1 fi +compile_flags=( + "-std=c++${CXX_STANDARD:?}" + -Wall -Wextra -Werror + ${CXXFLAGS:-} + $(pkg-config --cflags libbsoncxx) +) + +link_flags=( + ${LDFLAGS:-} + $(pkg-config --libs libbsoncxx) +) + +echo "Compiling with: ${compile_flags[*]}" +echo "Linking with: ${link_flags[*]}" + rm -rf build/* cd build -"${CXX:?}" $CXXFLAGS -Wall -Wextra -Werror -std="c++${CXX_STANDARD:?}" -c -o hello_bsoncxx.o ../../../hello_bsoncxx.cpp $(pkg-config --cflags libbsoncxx) -"${CXX:?}" $LDFLAGS -std="c++${CXX_STANDARD:?}" -o hello_bsoncxx hello_bsoncxx.o $(pkg-config --libs libbsoncxx) +"${CXX:?}" "${compile_flags[@]:?}" -o hello_bsoncxx.o -c ../../../hello_bsoncxx.cpp +"${CXX:?}" -o hello_bsoncxx hello_bsoncxx.o "${link_flags[@]:?}" ./hello_bsoncxx diff --git a/examples/projects/bsoncxx/pkg-config/static/build.sh b/examples/projects/bsoncxx/pkg-config/static/build.sh index 6c724769bf..49cab193d6 100755 --- a/examples/projects/bsoncxx/pkg-config/static/build.sh +++ b/examples/projects/bsoncxx/pkg-config/static/build.sh @@ -16,9 +16,23 @@ if ! pkg-config --print-requires libbsoncxx-static | grep -q -- bson2-static; th exit 1 fi +compile_flags=( + "-std=c++${CXX_STANDARD:?}" + -Wall -Wextra -Werror + ${CXXFLAGS:-} + $(pkg-config --cflags libbsoncxx-static) +) + +link_flags=( + ${LDFLAGS:-} + $(pkg-config --libs libbsoncxx-static) +) + +echo "Compiling with: ${compile_flags[*]}" +echo "Linking with: ${link_flags[*]}" + rm -rf build/* cd build -"${CXX:?}" $CXXFLAGS -Wall -Wextra -Werror -std="c++${CXX_STANDARD:?}" -c -o hello_bsoncxx.o ../../../hello_bsoncxx.cpp $(pkg-config --cflags libbsoncxx-static) -# TODO: remove `-pthread` once CDRIVER-4776 is resolved. -"${CXX:?}" $LDFLAGS -pthread -std="c++${CXX_STANDARD:?}" -o hello_bsoncxx hello_bsoncxx.o $(pkg-config --libs libbsoncxx-static) +"${CXX:?}" "${compile_flags[@]:?}" -o hello_bsoncxx.o -c ../../../hello_bsoncxx.cpp +"${CXX:?}" -o hello_bsoncxx hello_bsoncxx.o "${link_flags[@]:?}" ./hello_bsoncxx diff --git a/examples/projects/mongocxx/cmake/shared/CMakeLists.txt b/examples/projects/mongocxx/cmake/shared/CMakeLists.txt index 84b7103f79..1bfb897e06 100644 --- a/examples/projects/mongocxx/cmake/shared/CMakeLists.txt +++ b/examples/projects/mongocxx/cmake/shared/CMakeLists.txt @@ -15,7 +15,7 @@ # Demonstrates how to use the CMake 'find_package' mechanism to locate build against the libmongocxx # shared library. -cmake_minimum_required(VERSION 3.15...4.0) +cmake_minimum_required(VERSION 3.15...4.99) project(HELLO_WORLD LANGUAGES C CXX) diff --git a/examples/projects/mongocxx/cmake/shared/build.sh b/examples/projects/mongocxx/cmake/shared/build.sh index 7ebdbf1cb0..6880df89bc 100755 --- a/examples/projects/mongocxx/cmake/shared/build.sh +++ b/examples/projects/mongocxx/cmake/shared/build.sh @@ -4,11 +4,17 @@ set -o errexit set -o pipefail rm -rf build/* -cd build -if [ -z "$MSVC" ]; then - uvx cmake -DCMAKE_BUILD_TYPE="${build_type:?}" -DCMAKE_CXX_STANDARD="${CXX_STANDARD:?}" .. - uvx cmake --build . --target run + +config_flags=("-DCMAKE_CXX_STANDARD=${CXX_STANDARD:?}") +build_flags=() + +if [[ "${OSTYPE:?}" == cygwin ]]; then + build_flags+=(--config "${build_type:?}") else - uvx cmake -G "Visual Studio 15 2017" -A "x64" -DCMAKE_CXX_STANDARD="${CXX_STANDARD:?}" -DCMAKE_MSVC_DEBUG_INFORMATION_FORMAT=Embedded .. - uvx cmake --build . --target run --config "${build_type:?}" -- /verbosity:minimal + config_flags+=("-DCMAKE_BUILD_TYPE=${build_type:?}") fi + +build_flags+=(--target run) + +uvx cmake "${config_flags[@]:?}" -B build +uvx cmake --build build "${build_flags[@]:?}" diff --git a/examples/projects/mongocxx/cmake/static/CMakeLists.txt b/examples/projects/mongocxx/cmake/static/CMakeLists.txt index 1c97567d8e..4dab4eab6c 100644 --- a/examples/projects/mongocxx/cmake/static/CMakeLists.txt +++ b/examples/projects/mongocxx/cmake/static/CMakeLists.txt @@ -15,7 +15,7 @@ # Demonstrates how to use the CMake 'find_package' mechanism to locate build against the libmongocxx # static library. -cmake_minimum_required(VERSION 3.15...4.0) +cmake_minimum_required(VERSION 3.15...4.99) project(HELLO_WORLD LANGUAGES C CXX) diff --git a/examples/projects/mongocxx/cmake/static/build.sh b/examples/projects/mongocxx/cmake/static/build.sh index 935219b011..6880df89bc 100755 --- a/examples/projects/mongocxx/cmake/static/build.sh +++ b/examples/projects/mongocxx/cmake/static/build.sh @@ -4,11 +4,17 @@ set -o errexit set -o pipefail rm -rf build/* -cd build -if [ -z "$MSVC" ]; then - uvx cmake -DCMAKE_BUILD_TYPE="${build_type}" -DCMAKE_CXX_STANDARD="${CXX_STANDARD:?}" .. - uvx cmake --build . --target run + +config_flags=("-DCMAKE_CXX_STANDARD=${CXX_STANDARD:?}") +build_flags=() + +if [[ "${OSTYPE:?}" == cygwin ]]; then + build_flags+=(--config "${build_type:?}") else - uvx cmake -G "Visual Studio 15 2017" -A "x64" -DCMAKE_CXX_STANDARD="${CXX_STANDARD:?}" -DCMAKE_MSVC_DEBUG_INFORMATION_FORMAT=Embedded .. - uvx cmake --build . --target run --config "${build_type:?}" -- /verbosity:minimal + config_flags+=("-DCMAKE_BUILD_TYPE=${build_type:?}") fi + +build_flags+=(--target run) + +uvx cmake "${config_flags[@]:?}" -B build +uvx cmake --build build "${build_flags[@]:?}" diff --git a/examples/projects/mongocxx/pkg-config/shared/build.sh b/examples/projects/mongocxx/pkg-config/shared/build.sh index 38c6a9ca61..ca8652148c 100755 --- a/examples/projects/mongocxx/pkg-config/shared/build.sh +++ b/examples/projects/mongocxx/pkg-config/shared/build.sh @@ -15,11 +15,23 @@ if ! pkg-config --cflags libmongocxx | grep -v -q -- -DMONGOCXX_STATIC; then exit 1 fi -rm -rf build/* -cd build +compile_flags=( + "-std=c++${CXX_STANDARD:?}" + -Wall -Wextra -Werror + ${CXXFLAGS:-} + $(pkg-config --cflags libmongocxx) +) -"${CXX:?}" $CXXFLAGS -Wall -Wextra -Werror -std="c++${CXX_STANDARD:?}" -c -o hello_mongocxx.o ../../../hello_mongocxx.cpp $(pkg-config --cflags libmongocxx) +link_flags=( + ${LDFLAGS:-} + $(pkg-config --libs libmongocxx) +) -"${CXX:?}" $LDFLAGS -std="c++${CXX_STANDARD:?}" -o hello_mongocxx hello_mongocxx.o $(pkg-config --libs libmongocxx) +echo "Compiling with: ${compile_flags[*]}" +echo "Linking with: ${link_flags[*]}" +rm -rf build/* +cd build +"${CXX:?}" "${compile_flags[@]:?}" -o hello_mongocxx.o -c ../../../hello_mongocxx.cpp +"${CXX:?}" -o hello_mongocxx hello_mongocxx.o "${link_flags[@]:?}" ./hello_mongocxx diff --git a/examples/projects/mongocxx/pkg-config/static/build.sh b/examples/projects/mongocxx/pkg-config/static/build.sh index dd662ee6fd..255368f12d 100755 --- a/examples/projects/mongocxx/pkg-config/static/build.sh +++ b/examples/projects/mongocxx/pkg-config/static/build.sh @@ -21,9 +21,23 @@ if ! pkg-config --print-requires libmongocxx-static | grep -q -- mongoc2-static; exit 1 fi +compile_flags=( + "-std=c++${CXX_STANDARD:?}" + -Wall -Wextra -Werror + ${CXXFLAGS:-} + $(pkg-config --cflags libmongocxx-static) +) + +link_flags=( + ${LDFLAGS:-} + $(pkg-config --libs libmongocxx-static) +) + +echo "Compiling with: ${compile_flags[*]}" +echo "Linking with: ${link_flags[*]}" + rm -rf build/* cd build -"${CXX:?}" $CXXFLAGS -Wall -Wextra -Werror -std="c++${CXX_STANDARD:?}" -c -o hello_mongocxx.o ../../../hello_mongocxx.cpp $(pkg-config --cflags libmongocxx-static) -# TODO: remove `-pthread` once CDRIVER-4776 is resolved. -"${CXX:?}" $LDFLAGS -pthread -std="c++${CXX_STANDARD:?}" -o hello_mongocxx hello_mongocxx.o $(pkg-config --libs libmongocxx-static) +"${CXX:?}" "${compile_flags[@]:?}" -o hello_mongocxx.o -c ../../../hello_mongocxx.cpp +"${CXX:?}" -o hello_mongocxx hello_mongocxx.o "${link_flags[@]:?}" ./hello_mongocxx diff --git a/src/mongocxx/test/CMakeLists.txt b/src/mongocxx/test/CMakeLists.txt index d600aa1f46..c0cf7427f1 100644 --- a/src/mongocxx/test/CMakeLists.txt +++ b/src/mongocxx/test/CMakeLists.txt @@ -18,6 +18,17 @@ if(NOT BUILD_TESTING) set_property(DIRECTORY PROPERTY EXCLUDE_FROM_ALL TRUE) endif() +# Avoid x86 (32-bit) compatibility preventing compilation of large test TUs: +# MSVC: "C1128: number of sections exceeded object file format". +# GCC: "too many sections" and "file too big". +if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") + message(STATUS "Compiling test executables with '/bigobj'") + add_compile_options("/bigobj") +elseif(MINGW) + message(STATUS "Compiling test executables with '-Wa,-mbig-obj'") + add_compile_options("-Wa,-mbig-obj") +endif() + if(MONGOCXX_BUILD_SHARED) mongocxx_add_library(mongocxx_mocked "mongocxx-mocked" SHARED) else() @@ -27,10 +38,6 @@ endif() target_link_libraries(mongocxx_mocked PUBLIC bsoncxx_testing) target_compile_definitions(mongocxx_mocked PUBLIC MONGOCXX_TESTING) -if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") - target_compile_options(mongocxx_mocked PRIVATE /bigobj) -endif() - set(mongocxx_test_bsoncxx ${PROJECT_SOURCE_DIR}/../bsoncxx/test/v1/array/view_string_maker.cpp ${PROJECT_SOURCE_DIR}/../bsoncxx/test/v1/document/view_string_maker.cpp @@ -279,10 +286,6 @@ set_property( mongocxx::test_properties_with_main ) -if(CMAKE_CXX_COMPILER_ID STREQUAL "MSVC") - target_compile_options(test_driver PRIVATE /bigobj) -endif() - if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU") target_compile_options(test_driver PRIVATE -Wno-maybe-uninitialized) target_compile_options(test_retryable_reads_specs PRIVATE -Wno-maybe-uninitialized) diff --git a/src/mongocxx/test/spec/util.cpp b/src/mongocxx/test/spec/util.cpp index 9f834fb68c..95378a89c8 100644 --- a/src/mongocxx/test/spec/util.cpp +++ b/src/mongocxx/test/spec/util.cpp @@ -425,7 +425,7 @@ void run_operation_check_result(document::view op, make_op_runner_fn make_op_run FAIL("expected an error, got: " << bsoncxx::to_json(*actual_result)); } INFO("expected error message " << op["result"]["errorContains"].get_string().value); - INFO("got error message" << error_msg); + INFO("got: " << error_msg); // Do a case insensitive check. auto error_contains = test_util::tolowercase(op["result"]["errorContains"].get_string().value); REQUIRE(test_util::tolowercase(error_msg).find(error_contains) < error_msg.length());