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
3 changes: 2 additions & 1 deletion master/custom/builders.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
ClangUnixInstalledBuild,
SharedUnixBuild,
SlowNonDebugUnixBuild,
SlowSharedUnixBuild,
SlowUnixInstalledBuild,
LTONonDebugUnixBuild,
LTOPGONonDebugBuild,
Expand Down Expand Up @@ -199,6 +198,8 @@ def get_builders(settings):
# Other Unix
("PPC64 AIX", "edelsohn-aix-ppc64", AIXBuild, UNSTABLE, NO_TIER),
("PPC64 AIX XLC", "edelsohn-aix-ppc64", AIXBuildWithXLC, UNSTABLE, NO_TIER),
# XXX: to be TIER_3 when stabilized
("AMD64 FreeBSD", "ware-freebsd", UnixBuild, UNSTABLE, NO_TIER),
("SPARCv9 Oracle Solaris 11.4", "kulikjak-solaris-sparcv9", UnixBuild, UNSTABLE, NO_TIER),

# Windows/arm64
Expand Down
5 changes: 5 additions & 0 deletions master/custom/workers.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,11 @@ def get_workers(settings):
tags=['linux', 'unix', 'alpine', 'docker', 'amd64', 'x86-64'],
branches=['3.x'],
),
cpw(
name="ware-freebsd",
tags=['freebsd', 'bsd', 'unix', 'amd64', 'x86-64'],
parallel_tests=4,
),
cpw(
name="ware-gentoo-x86",
tags=['linux', 'unix', 'gentoo', 'x86'],
Expand Down