From a5ce6b607455ef9b96bf4016b42f994f6471a80b Mon Sep 17 00:00:00 2001 From: Chris Thrasher Date: Wed, 6 Dec 2023 13:51:42 -0700 Subject: [PATCH] Build install target in CI --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a3e7af7..105fec6 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -41,9 +41,9 @@ jobs: if: matrix.compiler.name == 'clang' run: sudo apt update && sudo apt install clang - name: Configure - run: cmake --preset ${{ matrix.preset }} ${{ matrix.compiler.flags }} + run: cmake --preset ${{ matrix.preset }} ${{ matrix.compiler.flags }} -DCMAKE_INSTALL_PREFIX=install - name: Build - run: cmake --build build/${{ matrix.preset }} + run: cmake --build build/${{ matrix.preset }} --target install - name: Test run: ctest --test-dir build/${{ matrix.preset }} --rerun-failed --output-on-failure - name: Build Doxygen Site