Skip to content
Merged
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
16 changes: 8 additions & 8 deletions master/custom/builders.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,6 @@
("AMD64 Windows11 Refleaks", "ware-win11", Windows64RefleakBuild),
("AMD64 Windows Server 2022 NoGIL", "itamaro-win64-srv-22-aws", Windows64NoGilBuild),
("AMD64 Windows PGO NoGIL", "itamaro-win64-srv-22-aws", Windows64PGONoGilBuild),

# macOS x86-64 clang
("x86-64 macOS", "billenstein-macos", UnixBuild),
]


Expand Down Expand Up @@ -123,6 +120,9 @@
("ARM64 MacOS M1 NoGIL", "itamaro-macos-arm64-aws", MacOSArmWithBrewNoGilBuild),
("ARM64 MacOS M1 Refleaks NoGIL", "itamaro-macos-arm64-aws", MacOSArmWithBrewNoGilRefleakBuild),

# macOS x86-64 clang
("x86-64 macOS", "billenstein-macos", UnixBuild),

# WASI
("wasm32-wasi Non-Debug", "bcannon-wasi", Wasm32WasiCrossBuild),
("wasm32-wasi", "bcannon-wasi", Wasm32WasiPreview1DebugBuild),
Expand Down Expand Up @@ -224,11 +224,6 @@

# Windows MSVC
("AMD64 Windows PGO", "bolen-windows10", Windows64PGOBuild),

# macOS x86-64 clang
# (marked unstable for a hardware failure)
("x86-64 MacOS Intel NoGIL", "itamaro-macos-intel-aws", UnixNoGilBuild),
("x86-64 MacOS Intel ASAN NoGIL", "itamaro-macos-intel-aws", MacOSAsanNoGilBuild),
]


Expand Down Expand Up @@ -285,6 +280,11 @@

# WebAssembly
("wasm32 WASI 8Core", "kushaldas-wasi", Wasm32WasiCrossBuild),

# macOS x86-64 clang
# (marked unstable for a hardware failure)
("x86-64 MacOS Intel NoGIL", "itamaro-macos-intel-aws", UnixNoGilBuild),
("x86-64 MacOS Intel ASAN NoGIL", "itamaro-macos-intel-aws", MacOSAsanNoGilBuild),
]


Expand Down