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 @@ -23,6 +23,7 @@
SharedUnixBuild,
SlowDebugUnixBuild,
SlowNonDebugUnixBuild,
SlowNonDebugUnixBuild15BitDigits,
SlowUnixInstalledBuild,
NonDebugUnixBuild,
UnixInstalledBuild,
Expand Down Expand Up @@ -157,7 +158,7 @@
("PPC64LE Fedora Stable Clang Installed", "cstratak-fedora-stable-ppc64le", ClangUnixInstalledBuild),

# Linux armv7l (32-bit) GCC
("ARM Raspbian", "gps-raspbian", SlowNonDebugUnixBuild),
("ARM Raspbian", "gps-raspbian", SlowNonDebugUnixBuild15BitDigits),

# Linux armv8 (64-bit) GCC
("ARM64 Raspbian", "stan-raspbian", SlowNonDebugUnixBuild),
Expand Down
7 changes: 7 additions & 0 deletions master/custom/factories.py
Original file line number Diff line number Diff line change
Expand Up @@ -379,6 +379,13 @@ class SlowNonDebugUnixBuild(NonDebugUnixBuild):
testFlags = [*NonDebugUnixBuild.testFlags, "-u-cpu"]


class SlowNonDebugUnixBuild15BitDigits(SlowNonDebugUnixBuild):
configureFlags = [
*SlowNonDebugUnixBuild.configureFlags,
"--enable-big-digits=15",
]


class SlowDebugUnixBuild(UnixBuild):
test_timeout = SLOW_TIMEOUT
testFlags = [*UnixBuild.testFlags, "-u-cpu"]
Expand Down