From 4d103f7ee9bb40e677d667dcb7b38b81da87fad6 Mon Sep 17 00:00:00 2001 From: dmaivel Date: Sun, 3 Dec 2023 18:13:07 -0500 Subject: [PATCH] Remove line preventing linux build --- .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 546b50c..c2f04bc 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -41,13 +41,13 @@ jobs: run: | echo "build-output-dir=${{ github.workspace }}/build" >> "$GITHUB_OUTPUT" + # removed -DCMAKE_GENERATOR_PLATFORM=${{ matrix.arch }} - name: Configure CMake run: > cmake -B ${{ steps.strings.outputs.build-output-dir }} -DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }} -DCMAKE_C_COMPILER=${{ matrix.c_compiler }} -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} - -DCMAKE_GENERATOR_PLATFORM=${{ matrix.arch }} -S ${{ github.workspace }} - name: Build