From 0f347ce1f4f7568eb4ac962e8dbb9d8fc1e8edc8 Mon Sep 17 00:00:00 2001 From: Florian Knigge Date: Mon, 21 Oct 2024 12:59:27 +0200 Subject: [PATCH] Fix CMake option naming --- .github/workflows/build+test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build+test.yml b/.github/workflows/build+test.yml index 43c6a17..5111096 100644 --- a/.github/workflows/build+test.yml +++ b/.github/workflows/build+test.yml @@ -24,7 +24,7 @@ jobs: run: mkdir -p "${{ github.workspace }}/build" - name: Build with CMAKE run: | - cmake --build "${{ github.workspace }}/build" ${{ github.workspace }} - cmake --build "${{ github.workspace }}/build" --target ccronexpr ${{ github.workspace }} + cmake -B "${{ github.workspace }}/build" -S ${{ github.workspace }} + cmake --build "${{ github.workspace }}/build" --target ccronexpr - name: Run test executable run: "${{ github.workspace }}/build/ccronexpr"