From f0bab33d2794b379a08be7a2607cd6177398f3cc Mon Sep 17 00:00:00 2001 From: Aliaksei Kandratsenka Date: Fri, 27 Sep 2024 17:46:48 -0400 Subject: [PATCH] do non-minimal cmake configuration for ci.yml --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b47844f..1e64520 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,7 +65,7 @@ jobs: retention-days: 7 path: | *.log - test-cmake-minimal: + test-cmake: strategy: matrix: os: [macos-latest, ubuntu-latest] @@ -82,11 +82,11 @@ jobs: - name: Add ccache to PATH run: echo "PATH=/usr/lib/ccache:$PATH" >> $GITHUB_ENV - name: cmake setup - run: cmake -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -G Ninja -DGPERFTOOLS_BUILD_HEAP_PROFILER=OFF -Dgperftools_build_minimal=ON -S . -B build + run: cmake -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -G Ninja -S . -B build - name: cmake build run: ninja -C build -v - name: test - run: ctest -j12 --test-dir build + run: ctest -j12 --test-dir build || ctest -j12 --test-dir build --rerun-failed - name: Upload Test Logs uses: actions/upload-artifact@v4 if: ${{ always() }}