Skip to content

Commit

Permalink
Remove rhel8 builder (previously only used for kernel modules)
Browse files Browse the repository at this point in the history
  • Loading branch information
Stringy committed Jun 6, 2024
1 parent a700501 commit 95a8cd9
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 29 deletions.
5 changes: 0 additions & 5 deletions kernel-modules/build/kernel-splitter.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,23 +110,20 @@ def main(task_file):
oracle_kernels = r"(?:.*el7uek.*)"
fc39_kernels = r"(?:(?:6\.[1-9]\..*)|(?:6\.[1-9][0-9]\..*)|(:?[7-9]\.\d+\..*))"
fc36_kernels = r"(?:(?:5\.[1-9]\d*\..*)|(?:6\.[0-5]\..*))"
rhel8_kernels = r"(?:(?:4|5)\.\d+\..*)"
rhel7_kernels = r"(?:3\.\d+\..*)"
rhel7_ebpf_kernels = r"(?:(?:3|4|5)\.\d+\..*)"

oracle = Builder("oracle", rf"^{oracle_kernels}", {})
fc39 = Builder("fc39", rf"^{fc39_kernels}", {})
fc36 = Builder("fc36", rf"^{fc36_kernels}", {})
rhel7_ebpf = EBPFBuilder("rhel7", rf"^{rhel7_ebpf_kernels}", {})
rhel8 = Builder("rhel8", rf"^{rhel8_kernels}", {})
rhel7 = Builder("rhel7", rf"^{rhel7_kernels}", {})
unknown = Builder("unknown", r".*", {})

builders = [
oracle,
fc39,
fc36,
rhel8,
rhel7_ebpf,
rhel7
]
Expand Down Expand Up @@ -155,7 +152,6 @@ def main(task_file):
driver_builders = int(os.environ.get('DRIVER_BUILDERS', 1))

oracle_builders = oracle.split(driver_builders)
rhel8_builders = rhel8.split(driver_builders)
rhel7_ebpf_builders = rhel7_ebpf.split(driver_builders)
rhel7_builders = rhel7.split(driver_builders)
fc36_builders = fc36.split(driver_builders)
Expand All @@ -165,7 +161,6 @@ def main(task_file):
*oracle_builders,
*fc39_builders,
*fc36_builders,
*rhel8_builders,
*rhel7_ebpf_builders,
*rhel7_builders,
unknown
Expand Down
24 changes: 0 additions & 24 deletions kernel-modules/build/rhel8.Dockerfile

This file was deleted.

0 comments on commit 95a8cd9

Please sign in to comment.