From f4ae6ba6a0fc787da5192a77c0f8be53adbd139b Mon Sep 17 00:00:00 2001 From: David Edelsohn Date: Sat, 25 Jan 2020 14:59:55 -0500 Subject: [PATCH] Add s390x Fedora worker (#161) --- master/custom/builders.py | 1 + master/custom/workers.py | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/master/custom/builders.py b/master/custom/builders.py index cd2574a49..2e20c704d 100644 --- a/master/custom/builders.py +++ b/master/custom/builders.py @@ -52,6 +52,7 @@ def get_builders(settings): ("PPC64LE Fedora", "edelsohn-fedora-ppc64le", UnixBuild, STABLE), ("s390x SLES", "edelsohn-sles-z", UnixBuild, STABLE), ("s390x Debian", "edelsohn-debian-z", UnixBuild, STABLE), + ("s390x Fedora", "edelsohn-fedora-z", UnixBuild, STABLE), ("s390x RHEL7", "edelsohn-rhel-z", UnixBuild, STABLE), ("s390x RHEL8", "edelsohn-rhel8-z", UnixBuild, STABLE), ("x86 Gentoo Non-Debug with X", "ware-gentoo-x86", NonDebugUnixBuild, STABLE), diff --git a/master/custom/workers.py b/master/custom/workers.py index 787b39567..1c15ef009 100644 --- a/master/custom/workers.py +++ b/master/custom/workers.py @@ -117,6 +117,10 @@ def get_workers(settings): name="edelsohn-fedora-ppc64le", tags=['linux', 'unix', 'fedora', 'ppc64le'], ), + cpw( + name="edelsohn-fedora-z", + tags=['linux', 'unix', 'fedora', 's390x'], + ), cpw( name="edelsohn-rhel-z", tags=['linux', 'unix', 'rhel', 's390x'],