Skip to content

Commit 7452f37

Browse files
authored
Re-exclude rhel79 from compile-only matrix in patch builds (#1325)
1 parent dd0e48b commit 7452f37

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

.evergreen/config_generator/components/compile_only.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,13 @@ def generate_tasks():
6161
if any(pattern in distro_name for pattern in ['power8', 'zseries']):
6262
patchable = False
6363

64+
# In etc/calc_release_version.py:
65+
# error: unknown option `format=...'
66+
# usage: git tag ...
67+
# or: ...
68+
if distro_name == 'rhel79':
69+
patchable = False
70+
6471
res.append(
6572
EvgTask(
6673
name=name,

.evergreen/generated_configs/tasks.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@ tasks:
168168
- name: compile-only-rhel79-release-shared-impls
169169
run_on: rhel79-large
170170
tags: [compile-only, rhel79, release, shared, impls]
171+
patchable: false
171172
commands:
172173
- func: setup
173174
- func: fetch_c_driver_source

0 commit comments

Comments
 (0)