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

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion .evergreen/config_generator/components/compile_only.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,15 @@ def generate_tasks():
name += f'-{polyfill}'
tags.append(polyfill)

patchable = None

# PowerPC and zSeries are limited resources.
patchable = False if any(pattern in distro_name for pattern in ['power8', 'zseries']) else None
if any(pattern in distro_name for pattern in ['power8', 'zseries']):
patchable = False

# etc/calc_release_version.py: error: unknown option `--format=...'
if distro_name == 'rhel79':
patchable = False

res.append(
EvgTask(
Expand Down
1 change: 1 addition & 0 deletions .evergreen/generated_configs/tasks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ tasks:
- name: compile-only-rhel79-release-shared-impls
run_on: rhel79-large
tags: [compile-only, rhel79, release, shared, impls]
patchable: false
commands:
- func: setup
- func: fetch_c_driver_source
Expand Down