From cd6a8d295ef8e3d1f4d71ce7d1e9799fea2dee06 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Fri, 22 Aug 2025 10:28:27 +0300 Subject: [PATCH] Move macOS x86-64 clang to tier 2 --- master/custom/builders.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/master/custom/builders.py b/master/custom/builders.py index b5effa9a..361d2111 100644 --- a/master/custom/builders.py +++ b/master/custom/builders.py @@ -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), ] @@ -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), @@ -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), ] @@ -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), ]