From 64b7c7870dac3f92384082df3c66299b95c3a62b Mon Sep 17 00:00:00 2001 From: Kevin Kreiser Date: Tue, 14 Nov 2023 18:11:17 -0500 Subject: [PATCH] no WERROR for mac --- .github/workflows/macos.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/macos.yaml b/.github/workflows/macos.yaml index d72464e..8f77fb5 100644 --- a/.github/workflows/macos.yaml +++ b/.github/workflows/macos.yaml @@ -20,7 +20,7 @@ jobs: xcrun --show-sdk-path SDK_PATH=$(find /Library/Developer/CommandLineTools/SDKs/MacOSX*.sdk -type d -maxdepth 0 | tail -n 1) echo ${SDK_PATH} - cmake . -DCMAKE_BUILD_TYPE=RelWithDebInfo -DENABLE_SANITIZERS=On -DCMAKE_OSX_SYSROOT=${SDK_PATH} && make all -j$(sysctl -n hw.ncpu) + cmake . -DCMAKE_BUILD_TYPE=RelWithDebInfo -DENABLE_SANITIZERS=On -DCMAKE_OSX_SYSROOT=${SDK_PATH} -DENABLE_WERROR=Off && make all -j$(sysctl -n hw.ncpu) - name: test shell: bash run: |