diff --git a/.evergreen/config_generator/components/compile_only.py b/.evergreen/config_generator/components/compile_only.py index e2addd03d4..f9fc53f1ba 100644 --- a/.evergreen/config_generator/components/compile_only.py +++ b/.evergreen/config_generator/components/compile_only.py @@ -31,7 +31,6 @@ ('rhel7.9', 'gcc', [11, 14, ]), # GCC 4.8 (max: C++14) ('rhel80', 'gcc', [11, 17, 20, ]), # GCC 8.2 (max: C++20) - ('debian10', 'gcc-8', [11, 17, 20, ]), # GCC 8.3 (max: C++20) ('rhel84', 'gcc', [11, 17, 20, ]), # GCC 8.4 (max: C++20) ('ubuntu2004', 'gcc-9', [11, 17, 20, ]), # GCC 9.4 (max: C++20) ('debian11', 'gcc-10', [11, 17, 20, ]), # GCC 10.2 (max: C++20) diff --git a/.evergreen/config_generator/etc/distros.py b/.evergreen/config_generator/etc/distros.py index c26a0ce87c..4311b19a2b 100644 --- a/.evergreen/config_generator/etc/distros.py +++ b/.evergreen/config_generator/etc/distros.py @@ -47,8 +47,7 @@ def ls_distro(name, **kwargs): DEBIAN_DISTROS = [ - *ls_distro(name='debian10', os='debian', os_type='linux', os_ver='10'), - *ls_distro(name='debian11', os='debian', os_type='linux', os_ver='10'), + *ls_distro(name='debian11', os='debian', os_type='linux', os_ver='11'), *ls_distro(name='debian12-latest', os='debian', os_type='linux', os_ver='latest'), ] diff --git a/.evergreen/generated_configs/tasks.yml b/.evergreen/generated_configs/tasks.yml index add57f618c..50b97ebf1e 100644 --- a/.evergreen/generated_configs/tasks.yml +++ b/.evergreen/generated_configs/tasks.yml @@ -244,66 +244,6 @@ tasks: CMAKE_MINOR_VERSION: 15 CMAKE_PATCH_VERSION: 4 INSTALL_C_DRIVER: 1 - - name: compile-only-debian10-gcc-8-cxx11-debug - run_on: debian10-large - tags: [compile-only, debian10, cxx11, gcc-8, debug] - commands: - - command: expansions.update - params: - updates: - - { key: build_type, value: Debug } - - { key: cc_compiler, value: gcc-8 } - - { key: cxx_compiler, value: g++-8 } - - func: setup - - func: install_c_driver - - func: install-uv - - func: compile - vars: - BUILD_SHARED_AND_STATIC_LIBS: "ON" - REQUIRED_CXX_STANDARD: 11 - build_type: Debug - cc_compiler: gcc-8 - cxx_compiler: g++-8 - - name: compile-only-debian10-gcc-8-cxx17-debug - run_on: debian10-large - tags: [compile-only, debian10, cxx17, gcc-8, debug] - commands: - - command: expansions.update - params: - updates: - - { key: build_type, value: Debug } - - { key: cc_compiler, value: gcc-8 } - - { key: cxx_compiler, value: g++-8 } - - func: setup - - func: install_c_driver - - func: install-uv - - func: compile - vars: - BUILD_SHARED_AND_STATIC_LIBS: "ON" - REQUIRED_CXX_STANDARD: 17 - build_type: Debug - cc_compiler: gcc-8 - cxx_compiler: g++-8 - - name: compile-only-debian10-gcc-8-cxx20-debug - run_on: debian10-large - tags: [compile-only, debian10, cxx20, gcc-8, debug] - commands: - - command: expansions.update - params: - updates: - - { key: build_type, value: Debug } - - { key: cc_compiler, value: gcc-8 } - - { key: cxx_compiler, value: g++-8 } - - func: setup - - func: install_c_driver - - func: install-uv - - func: compile - vars: - BUILD_SHARED_AND_STATIC_LIBS: "ON" - REQUIRED_CXX_STANDARD: 20 - build_type: Debug - cc_compiler: gcc-8 - cxx_compiler: g++-8 - name: compile-only-debian11-gcc-10-cxx11-debug run_on: debian11-large tags: [compile-only, debian11, cxx11, gcc-10, debug]