From 0d324ce6fa2592e530cc2c649e2fa4819b3d6913 Mon Sep 17 00:00:00 2001 From: samba Date: Sat, 7 Dec 2024 14:34:41 +0100 Subject: [PATCH] only x86 --- .github/workflows/ccpp-macos.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ccpp-macos.yml b/.github/workflows/ccpp-macos.yml index c3a5c69b..f92db978 100644 --- a/.github/workflows/ccpp-macos.yml +++ b/.github/workflows/ccpp-macos.yml @@ -24,12 +24,10 @@ jobs: - name: install render test requirements run: source myEnv/bin/activate && pip3 install -r requirements.txt working-directory: rendertests - - name: install boost arm - run: arch -arm64 brew install boost - name: install boost x86 run: arch -x86_64 brew install boost - name: configure - run: cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_OSX_ARCHITECTURES="arm64;x86_64" .. + run: cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_OSX_ARCHITECTURES="x86_64" .. env: WM_DOWNLOAD_EXTERNALS: 0 # for some reason the boost build fails here: seems not to find the right toolset (for the first run, the second try succeeds) working-directory: build