Skip to content

Commit 5c49cc1

Browse files
committed
Migrate EVG tasks from RHEL 7.6 to RHEL 7.9 (mongodb#1414)
1 parent 3599584 commit 5c49cc1

File tree

4 files changed

+14
-13
lines changed

4 files changed

+14
-13
lines changed

.evergreen/config_generator/components/compile_only.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
('rhel94', 'clang', [11, 17, 20, 23]), # Clang 17 (max: C++23)
3030
('rhel95', 'clang', [11, 17, 20, 23]), # Clang 19 (max: C++23)
3131

32-
('rhel76', 'gcc', [11, 14, ]), # GCC 4.8 (max: C++14)
32+
('rhel7.9', 'gcc', [11, 14, ]), # GCC 4.8 (max: C++14)
3333
('rhel80', 'gcc', [11, 17, 20, ]), # GCC 8.2 (max: C++20)
3434
('debian10', 'gcc-8', [11, 17, 20, ]), # GCC 8.3 (max: C++20)
3535
('rhel84', 'gcc', [11, 17, 20, ]), # GCC 8.4 (max: C++20)

.evergreen/config_generator/etc/distros.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def ls_distro(name, **kwargs):
6161
]
6262

6363
RHEL_DISTROS = [
64-
*ls_distro(name='rhel76', os='rhel', os_type='linux', os_ver='7.6'),
64+
*ls_distro(name='rhel7.9', os='rhel', os_type='linux', os_ver='7.9'),
6565
*ls_distro(name='rhel80', os='rhel', os_type='linux', os_ver='8.0'),
6666
*ls_distro(name='rhel84', os='rhel', os_type='linux', os_ver='8.4'),
6767
*ls_distro(name='rhel90', os='rhel', os_type='linux', os_ver='9.0'),

.evergreen/generated_configs/functions.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -148,14 +148,15 @@ functions:
148148
binary: bash
149149
working_dir: mongo-cxx-driver
150150
include_expansions_in_env:
151-
- project_id
152-
- version_id
153151
- build_variant
154-
- task_name
155-
- task_id
156152
- execution
153+
- parsed_order_id
154+
- project_id
157155
- requester
158156
- revision_order_id
157+
- task_id
158+
- task_name
159+
- version_id
159160
args:
160161
- -c
161162
- .evergreen/scripts/send-perf-data.sh
@@ -506,7 +507,7 @@ functions:
506507
type: setup
507508
params:
508509
updates:
509-
- { key: mongoc_version_minimum, value: 2.0.2 }
510+
- { key: mongoc_version_minimum, value: 2.0.0 }
510511
- command: subprocess.exec
511512
type: setup
512513
params:

.evergreen/generated_configs/tasks.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -428,9 +428,9 @@ tasks:
428428
BUILD_SHARED_AND_STATIC_LIBS: "ON"
429429
REQUIRED_CXX_STANDARD: 17
430430
build_type: Debug
431-
- name: compile-only-rhel76-gcc-cxx11-debug
432-
run_on: rhel76-large
433-
tags: [compile-only, rhel76, cxx11, gcc, debug]
431+
- name: compile-only-rhel7.9-gcc-cxx11-debug
432+
run_on: rhel7.9-large
433+
tags: [compile-only, rhel7.9, cxx11, gcc, debug]
434434
commands:
435435
- command: expansions.update
436436
params:
@@ -448,9 +448,9 @@ tasks:
448448
build_type: Debug
449449
cc_compiler: gcc
450450
cxx_compiler: g++
451-
- name: compile-only-rhel76-gcc-cxx14-debug
452-
run_on: rhel76-large
453-
tags: [compile-only, rhel76, cxx14, gcc, debug]
451+
- name: compile-only-rhel7.9-gcc-cxx14-debug
452+
run_on: rhel7.9-large
453+
tags: [compile-only, rhel7.9, cxx14, gcc, debug]
454454
commands:
455455
- command: expansions.update
456456
params:

0 commit comments

Comments
 (0)