Meta: Remove CommonMark spec test downloader

We no longer have a Markdown implementation to test
This commit is contained in:
circl 2024-06-23 17:20:29 +02:00 committed by Andrew Kaster
parent e5018d2a7a
commit 37dcb165eb
Notes: sideshowbarker 2024-07-17 05:02:35 +09:00

View file

@ -1,9 +0,0 @@
option(ENABLE_COMMONMARK_SPEC_DOWNLOAD "Enable download of commonmark test suite at build time" ON)
set(MARKDOWN_TEST_PATH ${SERENITY_CACHE_DIR}/commonmark.spec.json)
set(MARKDOWN_TEST_URL https://spec.commonmark.org/0.30/spec.json)
if(ENABLE_COMMONMARK_SPEC_DOWNLOAD)
download_file(${MARKDOWN_TEST_URL} ${MARKDOWN_TEST_PATH})
install(FILES ${MARKDOWN_TEST_PATH} DESTINATION home/anon/Tests)
endif()