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
4 changes: 4 additions & 0 deletions master/custom/builders.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from custom.factories import (
UnixBuild,
UnixPerfBuild,
UnixXPickleBuild,
RHEL8Build,
CentOS9Build,
FedoraStableBuild,
Expand Down Expand Up @@ -208,6 +209,9 @@
# Ubuntu Linux AArch64
("aarch64 Ubuntu 24.04 BigMem", "diegorusso-aarch64-bigmem", UnixBigmemBuild),

# test_xpickle
("aarch64 Ubuntu test_xpickle", "stan-aarch64-ubuntu", UnixXPickleBuild),

# Linux x86-64 GCC
# Fedora Rawhide is unstable
("AMD64 Fedora Rawhide", "cstratak-fedora-rawhide-x86_64", FedoraRawhideBuild),
Expand Down
6 changes: 6 additions & 0 deletions master/custom/factories.py
Original file line number Diff line number Diff line change
Expand Up @@ -290,6 +290,12 @@ class UnixBigmemBuild(UnixBuild):
factory_tags = ["bigmem"]


class UnixXPickleBuild(UnixBuild):
buildersuffix = ".xpickle"
testFlags = ["-uxpickle", "test_xpickle"]
factory_tags = ["xpickle"]


class NonDebugUnixBuild(UnixBuild):
buildersuffix = ".nondebug"
# Enable assertions regardless. Some children will override this,
Expand Down
7 changes: 7 additions & 0 deletions master/custom/workers.py
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,13 @@ def get_workers(settings):
'aarch32', 'arm'],
parallel_tests=4,
),
cpw(
name="stan-aarch64-ubuntu",
tags=['linux', 'unix', 'ubuntu', 'arm', 'arm64', 'aarch64'],
parallel_tests=4,
# test_xpickle doesn't exist on these branches
not_branches=['3.12', '3.11', '3.10'],
),
cpw(
name="stan-raspbian",
tags=['linux', 'unix', 'raspbian', 'debian', 'armv8',
Expand Down