Skip to content

Commit

Permalink
Merge pull request #6 from sjinks/no-docs-in-ci
Browse files Browse the repository at this point in the history
ci: do not configure `doxygen` target for CI
  • Loading branch information
sjinks authored Oct 30, 2024
2 parents ae56acf + 8d71c02 commit b3277e2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-vcpkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:

- name: Build
run: |
cmake -B build
cmake -B build -DBUILD_DOCS=OFF
cmake --build build
- name: Perform CodeQL Analysis
Expand Down

0 comments on commit b3277e2

Please sign in to comment.