Skip to content

Commit 94a15d1

Browse files
committed
COMP: Exempt pre-existing Duplicate C++ declaration Sphinx warnings
The docs build emits these warnings for breathelink declarations that appear in multiple examples; they were previously hidden by a disk- full failure in the documentation CI job.
1 parent d880b1d commit 94a15d1

3 files changed

Lines changed: 3 additions & 1 deletion

File tree

.lychee.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ exclude = [
88
"www.gnuplot.info", # TLS certificate issues
99
"cmake-w3-externaldata-upload.on.fleek.co", # Web3 upload service, returns 403
1010
"npmjs.com/package/@web3-storage", # w3cli package, returns 403
11+
"itk.org/Doxygen", # Dead URL, use docs.itk.org instead
1112
]

CMake/CTestCustom.cmake.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ set(CTEST_CUSTOM_WARNING_EXCEPTION
4444
"which will suppress this warning"
4545
"WARNING: Cache entry deserialization failed, entry ignored"
4646
"LabelGeometryImageFilter.*deprecated"
47+
"WARNING: Duplicate C\+\+ declaration"
4748
"note: declared here"
4849
"RemovedInSphinx[0-9]+Warning"
4950
"ipo: warning #11053"

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ if(BUILD_DOCUMENTATION)
306306
include(${CMAKE_SOURCE_DIR}/CMake/ITKDoxygen.cmake)
307307
endif()
308308
else()
309-
set(ITKDoxygen_LINK_ADDRESS "https://itk.org/Doxygen/html")
309+
set(ITKDoxygen_LINK_ADDRESS "https://docs.itk.org/projects/doxygen/en/stable")
310310
endif()
311311

312312
add_subdirectory(Formatting)

0 commit comments

Comments
 (0)