From 394b044e416cb22730638a03c13b43b2b2e4bc53 Mon Sep 17 00:00:00 2001 From: ihedvall Date: Wed, 24 Jan 2024 18:38:43 +0100 Subject: [PATCH] Linux build fix3 --- .github/workflows/build.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1f85089..0434079 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -60,6 +60,9 @@ jobs: platform: ${{ matrix.env.ninja_platform }} destination: ninja + - name: NINJA Set Env + run: cmake -E env CMAKE_GENERATOR=Ninja + - name: Checkout repository uses: actions/checkout@v4 with: @@ -67,7 +70,8 @@ jobs: - name: CMAKE Configure env: ${{ matrix.env.cmake_env }} - run: cmake -G Ninja -B ${{github.workspace}}/build -D CMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} + run: > + cmake -B ${{github.workspace}}/build -D CMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} - name: CMAKE Build run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}