Skip to content

Commit

Permalink
[INFRA] doc CI
Browse files Browse the repository at this point in the history
  • Loading branch information
eseiler committed Nov 4, 2024
1 parent 1f8bea2 commit d7c2c2d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci_documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,16 +47,16 @@ jobs:
with:
doxygen: 1.9.4

- name: Configure tests
- name: Configure docs
run: |
mkdir build && cd build
cmake .. -DCMAKE_BUILD_TYPE=Release \
-Dneedle_TEST=OFF \
-Dneedle_DOC=ON
- name: Run tests
- name: Build docs
working-directory: build
run: ctest . -j --output-on-failure
run: make doc

- name: Deploy Preview
if: github.event_name == 'pull_request_target'
Expand Down
2 changes: 1 addition & 1 deletion doc/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ if (${DOXYGEN_FOUND})

# Configure doxygen options.
set (APP_TEMPLATE_DOXYFILE_IN ${CMAKE_SOURCE_DIR}/doc/doxygen_cfg)
set (APP_TEMPLATE_DOXYGEN_OUTPUT_DIR "${PROJECT_BINARY_DIR}/doc")
set (APP_TEMPLATE_DOXYGEN_OUTPUT_DIR "${PROJECT_BINARY_DIR}")
set (APP_TEMPLATE_DOXYGEN_EXCLUDE_SYMBOLS "")
set (APP_TEMPLATE_DOXYGEN_PREDEFINED_NDEBUG "")
set (APP_TEMPLATE_DOXYGEN_ENABLED_SECTIONS "DEV")
Expand Down

0 comments on commit d7c2c2d

Please sign in to comment.