From 257758d266bebdea87d3748715c54b5f850c83e3 Mon Sep 17 00:00:00 2001 From: Luis Michaelis Date: Tue, 10 Dec 2024 11:51:36 +0100 Subject: [PATCH] fix(ci): disable SSE2 on macOS --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e4a874b5..6e9809c2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -46,7 +46,7 @@ jobs: with: xcode-version: '${{matrix.xcode}}' - name: 'Configure' - run: 'cmake -B build -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DZK_BUILD_EXAMPLES=ON -DZK_BUILD_TESTS=ON' + run: 'cmake -B build -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DZK_BUILD_EXAMPLES=ON -DZK_BUILD_TESTS=ON -DBUILD_SQUISH_WITH_SSE2=OFF' - name: 'Build' run: 'cmake --build build' - name: 'Test'