Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 11 additions & 11 deletions .evergreen/config_generator/components/compile_only.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# C++ standard and compiler coverage

('rhel80', 'clang', [11, 17, 20, ]), # Clang 7 (max: C++20)
# ('rhel84', 'clang', [11, 17, 20, ]), # Clang 11 (max: C++20) # No uv binary available.
('rhel84', 'clang', [11, 17, 20, ]), # Clang 11 (max: C++20)
('ubuntu2204', 'clang-12', [11, 17, 20, 23]), # Clang 12 (max: C++23)
('rhel90', 'clang', [11, 17, 20, 23]), # Clang 13 (max: C++23)
('rhel91', 'clang', [11, 17, 20, 23]), # Clang 14 (max: C++23)
Expand All @@ -25,16 +25,16 @@
('rhel94', 'clang', [11, 17, 20, 23]), # Clang 17 (max: C++23)
('rhel95', 'clang', [11, 17, 20, 23]), # Clang 19 (max: C++23)

('rhel7.9', 'gcc', [11, 14, ]), # GCC 4.8 (max: C++14)
('rhel80', 'gcc', [11, 17, 20, ]), # GCC 8.2 (max: C++20)
# ('rhel84', 'gcc', [11, 17, 20, ]), # GCC 8.4 (max: C++20) # No uv binary available.
# ('debian11', 'gcc-10', [11, 17, 20, ]), # GCC 10.2 (max: C++20) # No uv binary available.
('rhel90', 'gcc', [11, 17, 20, 23]), # GCC 11.2 (max: C++23)
('rhel92', 'gcc', [11, 17, 20, 23]), # GCC 11.3 (max: C++23)
('rhel94', 'gcc', [11, 17, 20, 23]), # GCC 11.4 (max: C++23)
('rhel95', 'gcc', [11, 17, 20, 23]), # GCC 11.5 (max: C++23)
('debian12', 'gcc', [11, 17, 20, ]), # GCC 12.2 (max: C++23)
('ubuntu2404', 'gcc-13', [11, 17, 20, ]), # GCC 13.3 (max: C++23)
('rhel7.9', 'gcc', [11, 14, ]), # GCC 4.8 (max: C++14)
('rhel80', 'gcc', [11, 17, 20, ]), # GCC 8.2 (max: C++20)
('rhel84', 'gcc', [11, 17, 20, ]), # GCC 8.4 (max: C++20)
('debian11-latest', 'gcc-10', [11, 17, 20, ]), # GCC 10.2 (max: C++20)
('rhel90', 'gcc', [11, 17, 20, 23]), # GCC 11.2 (max: C++23)
('rhel92', 'gcc', [11, 17, 20, 23]), # GCC 11.3 (max: C++23)
('rhel94', 'gcc', [11, 17, 20, 23]), # GCC 11.4 (max: C++23)
('rhel95', 'gcc', [11, 17, 20, 23]), # GCC 11.5 (max: C++23)
('debian12-latest', 'gcc', [11, 17, 20, ]), # GCC 12.2 (max: C++23)
('ubuntu2404', 'gcc-13', [11, 17, 20, ]), # GCC 13.3 (max: C++23)

('windows-vsCurrent', 'vs2015x64', [11, 14, 'latest']), # Max: C++14
('windows-vsCurrent', 'vs2017x64', [11, 14, 17, 20, 'latest']), # Max: C++20
Expand Down
3 changes: 1 addition & 2 deletions .evergreen/config_generator/etc/distros.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,7 @@ def ls_distro(name, **kwargs):


DEBIAN_DISTROS = [
*ls_distro(name='debian11', os='debian', os_type='linux', os_ver='11'),
*ls_distro(name='debian12', os='debian', os_type='linux', os_ver='12'),
*ls_distro(name='debian11-latest', os='debian', os_type='linux', os_ver='11'),
*ls_distro(name='debian12-latest', os='debian', os_type='linux', os_ver='latest'),
]

Expand Down
189 changes: 180 additions & 9 deletions .evergreen/generated_configs/tasks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -223,9 +223,66 @@ tasks:
vars:
CMAKE_VERSION: 3.15.0
INSTALL_C_DRIVER: 1
- name: compile-only-debian12-gcc-cxx11-debug
run_on: debian12-large
tags: [compile-only, debian12, cxx11, gcc, debug]
- name: compile-only-debian11-latest-gcc-10-cxx11-debug
run_on: debian11-latest-large
tags: [compile-only, debian11-latest, cxx11, gcc-10, debug]
commands:
- command: expansions.update
params:
updates:
- { key: build_type, value: Debug }
- { key: cc_compiler, value: gcc-10 }
- { key: cxx_compiler, value: g++-10 }
- func: setup
- func: install_c_driver
- func: compile
vars:
BUILD_SHARED_AND_STATIC_LIBS: "ON"
REQUIRED_CXX_STANDARD: 11
build_type: Debug
cc_compiler: gcc-10
cxx_compiler: g++-10
- name: compile-only-debian11-latest-gcc-10-cxx17-debug
run_on: debian11-latest-large
tags: [compile-only, debian11-latest, cxx17, gcc-10, debug]
commands:
- command: expansions.update
params:
updates:
- { key: build_type, value: Debug }
- { key: cc_compiler, value: gcc-10 }
- { key: cxx_compiler, value: g++-10 }
- func: setup
- func: install_c_driver
- func: compile
vars:
BUILD_SHARED_AND_STATIC_LIBS: "ON"
REQUIRED_CXX_STANDARD: 17
build_type: Debug
cc_compiler: gcc-10
cxx_compiler: g++-10
- name: compile-only-debian11-latest-gcc-10-cxx20-debug
run_on: debian11-latest-large
tags: [compile-only, debian11-latest, cxx20, gcc-10, debug]
commands:
- command: expansions.update
params:
updates:
- { key: build_type, value: Debug }
- { key: cc_compiler, value: gcc-10 }
- { key: cxx_compiler, value: g++-10 }
- func: setup
- func: install_c_driver
- func: compile
vars:
BUILD_SHARED_AND_STATIC_LIBS: "ON"
REQUIRED_CXX_STANDARD: 20
build_type: Debug
cc_compiler: gcc-10
cxx_compiler: g++-10
- name: compile-only-debian12-latest-gcc-cxx11-debug
run_on: debian12-latest-large
tags: [compile-only, debian12-latest, cxx11, gcc, debug]
commands:
- command: expansions.update
params:
Expand All @@ -242,9 +299,9 @@ tasks:
build_type: Debug
cc_compiler: gcc
cxx_compiler: g++
- name: compile-only-debian12-gcc-cxx17-debug
run_on: debian12-large
tags: [compile-only, debian12, cxx17, gcc, debug]
- name: compile-only-debian12-latest-gcc-cxx17-debug
run_on: debian12-latest-large
tags: [compile-only, debian12-latest, cxx17, gcc, debug]
commands:
- command: expansions.update
params:
Expand All @@ -261,9 +318,9 @@ tasks:
build_type: Debug
cc_compiler: gcc
cxx_compiler: g++
- name: compile-only-debian12-gcc-cxx20-debug
run_on: debian12-large
tags: [compile-only, debian12, cxx20, gcc, debug]
- name: compile-only-debian12-latest-gcc-cxx20-debug
run_on: debian12-latest-large
tags: [compile-only, debian12-latest, cxx20, gcc, debug]
commands:
- command: expansions.update
params:
Expand Down Expand Up @@ -558,6 +615,120 @@ tasks:
build_type: Debug
cc_compiler: gcc
cxx_compiler: g++
- name: compile-only-rhel84-clang-cxx11-debug
run_on: rhel84-large
tags: [compile-only, rhel84, cxx11, clang, debug]
commands:
- command: expansions.update
params:
updates:
- { key: build_type, value: Debug }
- { key: cc_compiler, value: clang }
- { key: cxx_compiler, value: clang++ }
- func: setup
- func: install_c_driver
- func: compile
vars:
BUILD_SHARED_AND_STATIC_LIBS: "ON"
REQUIRED_CXX_STANDARD: 11
build_type: Debug
cc_compiler: clang
cxx_compiler: clang++
- name: compile-only-rhel84-clang-cxx17-debug
run_on: rhel84-large
tags: [compile-only, rhel84, cxx17, clang, debug]
commands:
- command: expansions.update
params:
updates:
- { key: build_type, value: Debug }
- { key: cc_compiler, value: clang }
- { key: cxx_compiler, value: clang++ }
- func: setup
- func: install_c_driver
- func: compile
vars:
BUILD_SHARED_AND_STATIC_LIBS: "ON"
REQUIRED_CXX_STANDARD: 17
build_type: Debug
cc_compiler: clang
cxx_compiler: clang++
- name: compile-only-rhel84-clang-cxx20-debug
run_on: rhel84-large
tags: [compile-only, rhel84, cxx20, clang, debug]
commands:
- command: expansions.update
params:
updates:
- { key: build_type, value: Debug }
- { key: cc_compiler, value: clang }
- { key: cxx_compiler, value: clang++ }
- func: setup
- func: install_c_driver
- func: compile
vars:
BUILD_SHARED_AND_STATIC_LIBS: "ON"
REQUIRED_CXX_STANDARD: 20
build_type: Debug
cc_compiler: clang
cxx_compiler: clang++
- name: compile-only-rhel84-gcc-cxx11-debug
run_on: rhel84-large
tags: [compile-only, rhel84, cxx11, gcc, debug]
commands:
- command: expansions.update
params:
updates:
- { key: build_type, value: Debug }
- { key: cc_compiler, value: gcc }
- { key: cxx_compiler, value: g++ }
- func: setup
- func: install_c_driver
- func: compile
vars:
BUILD_SHARED_AND_STATIC_LIBS: "ON"
REQUIRED_CXX_STANDARD: 11
build_type: Debug
cc_compiler: gcc
cxx_compiler: g++
- name: compile-only-rhel84-gcc-cxx17-debug
run_on: rhel84-large
tags: [compile-only, rhel84, cxx17, gcc, debug]
commands:
- command: expansions.update
params:
updates:
- { key: build_type, value: Debug }
- { key: cc_compiler, value: gcc }
- { key: cxx_compiler, value: g++ }
- func: setup
- func: install_c_driver
- func: compile
vars:
BUILD_SHARED_AND_STATIC_LIBS: "ON"
REQUIRED_CXX_STANDARD: 17
build_type: Debug
cc_compiler: gcc
cxx_compiler: g++
- name: compile-only-rhel84-gcc-cxx20-debug
run_on: rhel84-large
tags: [compile-only, rhel84, cxx20, gcc, debug]
commands:
- command: expansions.update
params:
updates:
- { key: build_type, value: Debug }
- { key: cc_compiler, value: gcc }
- { key: cxx_compiler, value: g++ }
- func: setup
- func: install_c_driver
- func: compile
vars:
BUILD_SHARED_AND_STATIC_LIBS: "ON"
REQUIRED_CXX_STANDARD: 20
build_type: Debug
cc_compiler: gcc
cxx_compiler: g++
- name: compile-only-rhel90-clang-cxx11-debug
run_on: rhel90-large
tags: [compile-only, rhel90, cxx11, clang, debug]
Expand Down