Skip to content

Re-exclude rhel79 from compile-only matrix in patch builds #1325

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 30, 2025
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
7 changes: 7 additions & 0 deletions .evergreen/config_generator/components/compile_only.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,13 @@ def generate_tasks():
if any(pattern in distro_name for pattern in ['power8', 'zseries']):
patchable = False

# In etc/calc_release_version.py:
# error: unknown option `format=...'
# usage: git tag ...
# or: ...
if distro_name == 'rhel79':
patchable = False

res.append(
EvgTask(
name=name,
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 @@ -168,6 +168,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