From 63651b0bcd19e866f054e5164b0dede73d2b20dd Mon Sep 17 00:00:00 2001 From: cianciosa Date: Thu, 5 Jun 2025 12:28:32 -0400 Subject: [PATCH] Do not set the objc compiler explicitly. This fails in the github ci --- .github/workflows/ci_test.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci_test.yaml b/.github/workflows/ci_test.yaml index 64a1a2c..35243bd 100644 --- a/.github/workflows/ci_test.yaml +++ b/.github/workflows/ci_test.yaml @@ -43,7 +43,7 @@ jobs: if: ${{matrix.os == 'macos-latest'}} shell: bash working-directory: ${{runner.workspace}}/graph_framework/build - run: cmake -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_OBJCXX_COMPILER=clang++ -DUSE_METAL=ON ${{runner.workspace}}/graph_framework + run: cmake -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DUSE_METAL=ON ${{runner.workspace}}/graph_framework - name: Configure CMake Linux if: ${{matrix.os == 'ubuntu-latest'}} shell: bash -- GitLab