From f95597c91047a253399e7eab5f0e0a10efbad3fc Mon Sep 17 00:00:00 2001 From: Stephen Nicholas Swatman Date: Tue, 23 Jul 2024 23:33:00 +0200 Subject: [PATCH] Disable Fastor in macOS CI job XCode refuses to compile algebra-plugins with the Fastor plugin turned on, and this is causing the CI to fail. This commit disables Fastor in the macOS CI job to ensure that it runs through. --- .github/workflows/builds.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml index 3bb6ad4c..33fca5cf 100644 --- a/.github/workflows/builds.yml +++ b/.github/workflows/builds.yml @@ -41,6 +41,7 @@ jobs: # Run the CMake configuration. - name: Configure run: cmake --preset default-x86-64 + -DALGEBRA_PLUGINS_INCLUDE_FASTOR=${{ (matrix.PLATFORM.OS == 'macos-latest') && 'OFF' || 'ON' }} -S ${{ github.workspace }} -B build -G "${{ matrix.PLATFORM.GENERATOR }}" # Perform the build.