aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJongwook Choi <wookayin@gmail.com>2024-01-28 17:22:39 -0500
committerGitHub <noreply@github.com>2024-01-28 14:22:39 -0800
commit01e82eba209a96f932d3497e580ab0ca749efafa (patch)
tree51e434eb3fa50a319950d485454d42c6dd3a89c1 /src
parent47cd532bf15d81c913e2c29b4c9a14c3654f85d2 (diff)
downloadrneovim-01e82eba209a96f932d3497e580ab0ca749efafa.tar.gz
rneovim-01e82eba209a96f932d3497e580ab0ca749efafa.tar.bz2
rneovim-01e82eba209a96f932d3497e580ab0ca749efafa.zip
build(docs): separate lint job to validate vimdoc #27227
Summary: Separate the lint job (`make lintdoc`) to validate runtime/doc, it is no longer as a part of functionaltest (help_spec). Build (cmake) and CI: - `make lintdoc`: validate vimdoc files and test-generate HTML docs. CI will run this as a part of the "docs" workflow. - `scripts/lintdoc.lua` is added as an entry point (executable script) for validating vimdoc files. scripts/gen_help_html.lua: - Move the tests for validating docs and generating HTMLs from `help_spec.lua` to `gen_help_html`. Added: - `gen_help_html.run_validate()`. - `gen_help_html.test_gen()`. - Do not hard-code `help_dir` to `build/runtime/doc`, but resolve from `$VIMRUNTIME`. Therefore, the `make lintdoc` job will check doc files on `./runtime/doc`, not on `./build/runtime/doc`. - Add type annotations for gen_help_html.
Diffstat (limited to 'src')
-rw-r--r--src/nvim/CMakeLists.txt7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/nvim/CMakeLists.txt b/src/nvim/CMakeLists.txt
index 1a51ff6b71..2e26e58c82 100644
--- a/src/nvim/CMakeLists.txt
+++ b/src/nvim/CMakeLists.txt
@@ -953,3 +953,10 @@ add_custom_target(doc-eval DEPENDS ${GEN_EVAL_TOUCH})
add_custom_target(doc-vim DEPENDS ${VIMDOC_FILES})
add_custom_target(doc)
add_dependencies(doc doc-vim doc-eval)
+
+add_custom_target(lintdoc
+ COMMAND ${CMAKE_COMMAND} -E env "VIMRUNTIME=${NVIM_RUNTIME_DIR}"
+ $<TARGET_FILE:nvim_bin> --clean -l scripts/lintdoc.lua
+ WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
+ USES_TERMINAL)
+add_dependencies(lintdoc nvim)