From eeb06a2a195d4c620cb7df071e0046cca004e836 Mon Sep 17 00:00:00 2001 From: Sam Clegg Date: Tue, 28 Apr 2026 11:19:43 -0700 Subject: [PATCH] [CI] Skip building binaryen from source on macOS Our macOS CI instance is too old to build binaryen from source. See https://github.com/WebAssembly/binaryen/pull/8609 --- test/test.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/test.py b/test/test.py index 330fde122c..b3e761ec17 100755 --- a/test/test.py +++ b/test/test.py @@ -277,6 +277,10 @@ def test_binaryen_from_source(self): if WINDOWS: # It takes over 30 mins to build binaryen using Visual Studio in CI self.skipTest('test is too slow under windows') + if MACOS: + # Our CI uses and older version of macOS which only as 14.3.1 + # TODO: Remove this if/when we update the emsdk CI. + self.skipTest('building binaryen requries xcode 15.3 because it uses std::ranges') run_emsdk(['install', '--build=Release', 'binaryen-main-64bit']) def test_no_32bit(self):