Skip to content

Commit 0d350d4

Browse files
authored
CXX-3311 Remove Debian 10 EVG task coverage (#1423)
1 parent 3731f0e commit 0d350d4

File tree

3 files changed

+1
-63
lines changed

3 files changed

+1
-63
lines changed

.evergreen/config_generator/components/compile_only.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@
3131

3232
('rhel7.9', 'gcc', [11, 14, ]), # GCC 4.8 (max: C++14)
3333
('rhel80', 'gcc', [11, 17, 20, ]), # GCC 8.2 (max: C++20)
34-
('debian10', 'gcc-8', [11, 17, 20, ]), # GCC 8.3 (max: C++20)
3534
('rhel84', 'gcc', [11, 17, 20, ]), # GCC 8.4 (max: C++20)
3635
('ubuntu2004', 'gcc-9', [11, 17, 20, ]), # GCC 9.4 (max: C++20)
3736
('debian11', 'gcc-10', [11, 17, 20, ]), # GCC 10.2 (max: C++20)

.evergreen/config_generator/etc/distros.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@ def ls_distro(name, **kwargs):
4747

4848

4949
DEBIAN_DISTROS = [
50-
*ls_distro(name='debian10', os='debian', os_type='linux', os_ver='10'),
51-
*ls_distro(name='debian11', os='debian', os_type='linux', os_ver='10'),
50+
*ls_distro(name='debian11', os='debian', os_type='linux', os_ver='11'),
5251
*ls_distro(name='debian12-latest', os='debian', os_type='linux', os_ver='latest'),
5352
]
5453

.evergreen/generated_configs/tasks.yml

Lines changed: 0 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -244,66 +244,6 @@ tasks:
244244
CMAKE_MINOR_VERSION: 15
245245
CMAKE_PATCH_VERSION: 4
246246
INSTALL_C_DRIVER: 1
247-
- name: compile-only-debian10-gcc-8-cxx11-debug
248-
run_on: debian10-large
249-
tags: [compile-only, debian10, cxx11, gcc-8, debug]
250-
commands:
251-
- command: expansions.update
252-
params:
253-
updates:
254-
- { key: build_type, value: Debug }
255-
- { key: cc_compiler, value: gcc-8 }
256-
- { key: cxx_compiler, value: g++-8 }
257-
- func: setup
258-
- func: install_c_driver
259-
- func: install-uv
260-
- func: compile
261-
vars:
262-
BUILD_SHARED_AND_STATIC_LIBS: "ON"
263-
REQUIRED_CXX_STANDARD: 11
264-
build_type: Debug
265-
cc_compiler: gcc-8
266-
cxx_compiler: g++-8
267-
- name: compile-only-debian10-gcc-8-cxx17-debug
268-
run_on: debian10-large
269-
tags: [compile-only, debian10, cxx17, gcc-8, debug]
270-
commands:
271-
- command: expansions.update
272-
params:
273-
updates:
274-
- { key: build_type, value: Debug }
275-
- { key: cc_compiler, value: gcc-8 }
276-
- { key: cxx_compiler, value: g++-8 }
277-
- func: setup
278-
- func: install_c_driver
279-
- func: install-uv
280-
- func: compile
281-
vars:
282-
BUILD_SHARED_AND_STATIC_LIBS: "ON"
283-
REQUIRED_CXX_STANDARD: 17
284-
build_type: Debug
285-
cc_compiler: gcc-8
286-
cxx_compiler: g++-8
287-
- name: compile-only-debian10-gcc-8-cxx20-debug
288-
run_on: debian10-large
289-
tags: [compile-only, debian10, cxx20, gcc-8, debug]
290-
commands:
291-
- command: expansions.update
292-
params:
293-
updates:
294-
- { key: build_type, value: Debug }
295-
- { key: cc_compiler, value: gcc-8 }
296-
- { key: cxx_compiler, value: g++-8 }
297-
- func: setup
298-
- func: install_c_driver
299-
- func: install-uv
300-
- func: compile
301-
vars:
302-
BUILD_SHARED_AND_STATIC_LIBS: "ON"
303-
REQUIRED_CXX_STANDARD: 20
304-
build_type: Debug
305-
cc_compiler: gcc-8
306-
cxx_compiler: g++-8
307247
- name: compile-only-debian11-gcc-10-cxx11-debug
308248
run_on: debian11-large
309249
tags: [compile-only, debian11, cxx11, gcc-10, debug]

0 commit comments

Comments
 (0)