Skip to content

Commit

Permalink
Remove -q param
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-penev committed Dec 3, 2023
1 parent f49922d commit d8bc322
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -802,7 +802,8 @@ jobs:
-DCMAKE_BUILD_TYPE=Debug \
-DLLVM_EXTERNAL_LIT="`which lit`" \
..
cmake --build . --target sphinx-clad doxygen-clad -- -j4
cmake --build . --target sphinx-clad -- -j4
cmake --build . --target doxygen-clad -- -j4
- name: Failed job config
if: ${{ failure() && runner.os != 'windows' }}
env:
Expand Down
2 changes: 1 addition & 1 deletion cmake/CreateSphinxTarget.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function(create_sphinx_target)

add_custom_target(${SPHINX_TARGET_NAME}
COMMAND
${SPHINX_EXECUTABLE} -b html -d ${SPHINX_DOC_TREE_DIR} -q ${SPHINX_SOURCE_DIR} ${SPHINX_BUILD_DIR}
${SPHINX_EXECUTABLE} -b html -d ${SPHINX_DOC_TREE_DIR} ${SPHINX_SOURCE_DIR} ${SPHINX_BUILD_DIR}
COMMENT
"Generating sphinx user documentation into \"${SPHINX_BUILD_DIR}\""
VERBATIM
Expand Down

0 comments on commit d8bc322

Please sign in to comment.