Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions test/integration/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -86,10 +86,10 @@ if (EXISTS ${XMLLINT_EXE})
if("${XMLLINT_VERSION}" LESS 21500)
set (tests ${tests} schema_test.cc)
else()
gz_build_warning("xmllint version is too new (${XMLLINT_VERSION}). schema_test won't be run")
message(WARNING "xmllint version is too new (${XMLLINT_VERSION}). schema_test won't be run")

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if we want CI to ignore this as a warning, we can use message(STATUS instead

endif()
else()
gz_build_warning("xmllint not found. schema_test won't be run")
message(WARNING "xmllint not found. schema_test won't be run")
endif()

gz_build_tests(TYPE ${TEST_TYPE}
Expand Down
Loading