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
6 changes: 0 additions & 6 deletions master/custom/builders.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@
UnixNoGilBuild,
UnixNoGilRefleakBuild,
MacOSAsanNoGilBuild,
AIXBuild,
AIXBuildWithXLC,
ClangUnixBuild,
ClangUbsanLinuxBuild,
ClangUbsanFunctionLinuxBuild,
Expand Down Expand Up @@ -337,10 +335,6 @@
("AMD64 NixOS Unstable Refleaks", "malvex-nixos-x86_64", UnixRefleakBuild),
("AMD64 NixOS Unstable Perf", "malvex-nixos-x86_64", UnixPerfBuild),

# AIX ppc64
("PPC64 AIX", "edelsohn-aix-ppc64", AIXBuild),
("PPC64 AIX XLC", "edelsohn-aix-ppc64", AIXBuildWithXLC),

# Solaris sparcv9
("SPARCv9 Oracle Solaris 11.4", "kulikjak-solaris-sparcv9", UnixBuild),

Expand Down
18 changes: 0 additions & 18 deletions master/custom/factories.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,24 +290,6 @@ class UnixBigmemBuild(UnixBuild):
factory_tags = ["bigmem"]


class AIXBuild(UnixBuild):
configureFlags = [
"--with-pydebug",
"--with-openssl=/opt/aixtools",
]


class AIXBuildWithXLC(UnixBuild):
buildersuffix = ".xlc"
configureFlags = [
"--with-pydebug",
"--with-openssl=/opt/aixtools",
"CC=xlc_r",
"LD=xlc_r",
]
factory_tags = ["xlc"]


class NonDebugUnixBuild(UnixBuild):
buildersuffix = ".nondebug"
# Enable assertions regardless. Some children will override this,
Expand Down
5 changes: 0 additions & 5 deletions master/custom/workers.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,11 +178,6 @@ def get_workers(settings):
tags=['linux', 'unix', 'rhel', 's390x'],
parallel_tests=10,
),
cpw(
name="edelsohn-aix-ppc64",
tags=['aix', 'unix', 'ppc64'],
parallel_tests=10,
),
cpw(
name="gps-raspbian",
tags=['linux', 'unix', 'raspbian', 'debian', 'armv6', 'armv7l',
Expand Down