From ea6bad7bceec77c932044c60c329535c97bcd9a2 Mon Sep 17 00:00:00 2001 From: Daniele Pallastrelli <5451767+daniele77@users.noreply.github.com> Date: Thu, 17 Oct 2024 11:41:41 +0200 Subject: [PATCH] Fix CI test --- .github/workflows/unix_ci.yml | 6 +++--- .github/workflows/win_ci.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/unix_ci.yml b/.github/workflows/unix_ci.yml index 1e8fd32..eeb5d52 100644 --- a/.github/workflows/unix_ci.yml +++ b/.github/workflows/unix_ci.yml @@ -103,12 +103,12 @@ jobs: - name: Configure CMake - Unix if: runner.os != 'Windows' run: | - cmake -S . -B ./build -G "${{matrix.generator}}" -DCMAKE_BUILD_TYPE:STRING=${{matrix.build_type}} -DCMAKE_CXX_STANDARD=${{matrix.standard}} -DCLI_BuildTests:BOOL=${{ runner.os != 'Windows' }} -DCLI_BuildExamples=ON -DCLI_UseBoostAsio=ON + cmake -S . -B ./build -G "${{matrix.generator}}" -DCMAKE_BUILD_TYPE:STRING=${{matrix.build_type}} -DCMAKE_CXX_STANDARD=${{matrix.standard}} -DCLI_BuildTests=ON -DCLI_BuildExamples=ON -DCLI_UseBoostAsio=ON - name: Configure CMake - Windows if: runner.os == 'Windows' run: | - cmake -S . -B ./build -G "${{matrix.generator}}" -DCMAKE_BUILD_TYPE:STRING=${{matrix.build_type}} -DASIO_INCLUDEDIR=${{ github.workspace }}/asio/asio/include -DCLI_BuildTests:BOOL=${{ runner.os != 'Windows' }} -DCLI_BuildExamples=ON -DCLI_UseBoostAsio=ON + cmake -S . -B ./build -G "${{matrix.generator}}" -DCMAKE_BUILD_TYPE:STRING=${{matrix.build_type}} -DASIO_INCLUDEDIR=${{ github.workspace }}/asio/asio/include -DCLI_BuildTests=ON -DCLI_BuildExamples=ON -DCLI_UseBoostAsio=ON - name: Build run: | @@ -123,4 +123,4 @@ jobs: run: | # cd /home/runner/work/cli/cli/build/test/ # ./test_suite - ctest -C ${{matrix.build_type}} --rerun-failed --output-on-failure + ctest -C ${{matrix.build_type}} --output-on-failure diff --git a/.github/workflows/win_ci.yml b/.github/workflows/win_ci.yml index 1d840fc..59c525f 100644 --- a/.github/workflows/win_ci.yml +++ b/.github/workflows/win_ci.yml @@ -16,7 +16,7 @@ jobs: build_type: - Release - Debug - standard: [14, 17, 20] + standard: [14, 17, 20, 23] steps: - name: Checkout repository