Skip to content
Open
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
8 changes: 8 additions & 0 deletions master/custom/builders.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,6 +382,14 @@ def generate_builderdefs(tags, tuples):
("s390x Fedora Rawhide LTO", "cstratak-fedora-rawhide-s390x", LTONonDebugUnixBuild),
("s390x Fedora Rawhide LTO + PGO", "cstratak-fedora-rawhide-s390x", LTOPGONonDebugBuild),

# CentOS Stream 10 Linux s390x GCC/Clang
("s390x CentOS10", "cstratak-c10s-s390x", CentOS10Build),
("s390x CentOS10 Refleaks", "cstratak-c10s-s390x", UnixRefleakBuild),
("s390x CentOS10 Clang", "cstratak-c10s-s390x", ClangUnixBuild),
("s390x CentOS10 Clang Installed", "cstratak-c10s-s390x", ClangUnixInstalledBuild),
("s390x CentOS10 LTO", "cstratak-c10s-s390x", LTONonDebugUnixBuild),
("s390x CentOS10 LTO + PGO", "cstratak-c10s-s390x", LTOPGONonDebugBuild),

# FreeBSD x86-64 clang
# FreeBSD 15 is CURRENT: development branch (at 2023-10-17)
("AMD64 FreeBSD15", "opsec-fbsd15", UnixBuild),
Expand Down
5 changes: 5 additions & 0 deletions master/custom/workers.py
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,11 @@ def get_workers(settings):
tags=['linux', 'unix', 'rhel', 's390x'],
parallel_tests=10,
),
cpw(
name="cstratak-c10s-s390x",
tags=['linux', 'unix', 'rhel', 's390x'],
parallel_tests=10,
),
cpw(
name="gps-raspbian",
tags=['linux', 'unix', 'raspbian', 'debian', 'armv6', 'armv7l',
Expand Down