Skip to content

Commit

Permalink
Add RHEL8 and RHEL9 s390x workers and builders (#539)
Browse files Browse the repository at this point in the history
  • Loading branch information
stratakis authored Oct 9, 2024
1 parent ad0c1f8 commit 1c71a98
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
11 changes: 11 additions & 0 deletions master/custom/builders.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,17 @@

# -- Stable Tier-3 builder ----------------------------------------------
STABLE_BUILDERS_TIER_3 = [

# Linux s390x GCC
("s390x RHEL9", "cstratak-rhel9-s390x", UnixBuild),
("s390x RHEL9 Refleaks", "cstratak-rhel9-s390x", UnixRefleakBuild),
("s390x RHEL9 LTO", "cstratak-rhel9-s390x", LTONonDebugUnixBuild),
("s390x RHEL9 LTO + PGO", "cstratak-rhel9-s390x", LTOPGONonDebugBuild),
("s390x RHEL8", "cstratak-rhel8-s390x", UnixBuild),
("s390x RHEL8 Refleaks", "cstratak-rhel8-s390x", UnixRefleakBuild),
("s390x RHEL8 LTO", "cstratak-rhel8-s390x", LTONonDebugUnixBuild),
("s390x RHEL8 LTO + PGO", "cstratak-rhel8-s390x", LTOPGONonDebugBuild),

# Linux ppc64le Clang
("PPC64LE Fedora Stable Clang", "cstratak-fedora-stable-ppc64le", ClangUnixBuild),
("PPC64LE Fedora Stable Clang Installed", "cstratak-fedora-stable-ppc64le", ClangUnixInstalledBuild),
Expand Down
10 changes: 10 additions & 0 deletions master/custom/workers.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,16 @@ def get_workers(settings):
tags=['linux', 'unix', 'rhel', 'arm', 'arm64', 'aarch64'],
parallel_tests=40,
),
cpw(
name="cstratak-rhel8-s390x",
tags=['linux', 'unix', 'rhel', 's390x'],
parallel_tests=10,
),
cpw(
name="cstratak-rhel9-s390x",
tags=['linux', 'unix', 'rhel', 's390x'],
parallel_tests=10,
),
cpw(
name="edelsohn-aix-ppc64",
tags=['aix', 'unix', 'ppc64'],
Expand Down

0 comments on commit 1c71a98

Please sign in to comment.