Skip to content

Commit 25d7df1

Browse files
authored
Add ware-freebsd worker (#388)
1 parent ff7dc7a commit 25d7df1

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

master/custom/builders.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@
2020
ClangUnixInstalledBuild,
2121
SharedUnixBuild,
2222
SlowNonDebugUnixBuild,
23-
SlowSharedUnixBuild,
2423
SlowUnixInstalledBuild,
2524
LTONonDebugUnixBuild,
2625
LTOPGONonDebugBuild,
@@ -199,6 +198,8 @@ def get_builders(settings):
199198
# Other Unix
200199
("PPC64 AIX", "edelsohn-aix-ppc64", AIXBuild, UNSTABLE, NO_TIER),
201200
("PPC64 AIX XLC", "edelsohn-aix-ppc64", AIXBuildWithXLC, UNSTABLE, NO_TIER),
201+
# XXX: to be TIER_3 when stabilized
202+
("AMD64 FreeBSD", "ware-freebsd", UnixBuild, UNSTABLE, NO_TIER),
202203
("SPARCv9 Oracle Solaris 11.4", "kulikjak-solaris-sparcv9", UnixBuild, UNSTABLE, NO_TIER),
203204

204205
# Windows/arm64

master/custom/workers.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,11 @@ def get_workers(settings):
234234
tags=['linux', 'unix', 'alpine', 'docker', 'amd64', 'x86-64'],
235235
branches=['3.x'],
236236
),
237+
cpw(
238+
name="ware-freebsd",
239+
tags=['freebsd', 'bsd', 'unix', 'amd64', 'x86-64'],
240+
parallel_tests=4,
241+
),
237242
cpw(
238243
name="ware-gentoo-x86",
239244
tags=['linux', 'unix', 'gentoo', 'x86'],

0 commit comments

Comments
 (0)