Skip to content

Commit 3d14de5

Browse files
authored
Exclude rhel79 from compile-only matrix (calc_release_version.py) (#1277)
1 parent f596655 commit 3d14de5

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.evergreen/config_generator/components/compile_only.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,15 @@ def generate_tasks():
5353
name += f'-{polyfill}'
5454
tags.append(polyfill)
5555

56+
patchable = None
57+
5658
# PowerPC and zSeries are limited resources.
57-
patchable = False if any(pattern in distro_name for pattern in ['power8', 'zseries']) else None
59+
if any(pattern in distro_name for pattern in ['power8', 'zseries']):
60+
patchable = False
61+
62+
# etc/calc_release_version.py: error: unknown option `--format=...'
63+
if distro_name == 'rhel79':
64+
patchable = False
5865

5966
res.append(
6067
EvgTask(

.evergreen/generated_configs/tasks.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ tasks:
6161
- name: compile-only-rhel79-release-shared-impls
6262
run_on: rhel79-large
6363
tags: [compile-only, rhel79, release, shared, impls]
64+
patchable: false
6465
commands:
6566
- func: setup
6667
- func: fetch_c_driver_source

0 commit comments

Comments
 (0)