diff --git a/.github/workflows/ci-vcpkg.yml b/.github/workflows/ci-vcpkg.yml index e6223e4..6721ad7 100644 --- a/.github/workflows/ci-vcpkg.yml +++ b/.github/workflows/ci-vcpkg.yml @@ -48,7 +48,7 @@ jobs: - name: Build and test run: | - cmake --preset debug-vcpkg + cmake --preset debug-vcpkg -DBUILD_DOCS=OFF cmake --build --preset debug-vcpkg ctest --preset debug-vcpkg diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3cea5b1..11de45a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -68,6 +68,6 @@ jobs: - name: Build and test run: | - cmake --preset ${{ matrix.preset.name }} + cmake --preset ${{ matrix.preset.name }} -DBUILD_DOCS=OFF cmake --build --preset ${{ matrix.preset.name }} ctest --preset ${{ matrix.preset.name }} diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 73dd4b9..8611949 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -51,7 +51,7 @@ jobs: - name: Build run: | - cmake -B build + cmake -B build -DBUILD_DOCS=OFF cmake --build build - name: Perform CodeQL Analysis