commit | b4b7905ee22e4f3014bace93a0ef76ad7a94e53e | [log] [tgz] |
---|---|---|
author | Alexandre Rostovtsev <arostovtsev@google.com> | Fri May 19 11:08:12 2023 -0400 |
committer | GitHub <noreply@github.com> | Fri May 19 11:08:12 2023 -0400 |
tree | a7f15d516bda792eecee8027abb32fb320b44c50 | |
parent | 8cd9ecfd1e793704bfe70fb6fcc30a6e4b5bd7bc [diff] |
Ensure all tests use loadable .bzl modules (#155) In preparation for switching to starlark_doc_extract, we need to fix Stardoc tests to use .bzl files that can really be loaded by Bazel. This means: * getting rid of misuses of aspect api * getting rid of old Android and Java symbols * getting rid of generated_bzl_test entirely, since Bazel cannot load dynamically generated .bzl modules. Also fix update-stardoc-tests.sh script - we need to ignore the _stardoc java_binary outputs introduced by #141.
Stardoc is a documentation generator for Bazel build rules written in Starlark.
Stardoc provides a Starlark rule (stardoc
, see documentation) that can be used to build documentation for Starlark rules in Markdown. Stardoc generates one documentation page per .bzl
file.
Stardoc is a replacement for the deprecated “Skydoc” documentation generator.
See Skydoc Deprecation for details on the deprecation and migration details.
See our future plans for refactoring Stardoc to be more consistent with how Bazel evaluates .bzl files, and what it means for maintenance of this project.
See the maintaner's guide for instructions for cutting a new release.