File tree Expand file tree Collapse file tree 10 files changed +3
-97
lines changed Expand file tree Collapse file tree 10 files changed +3
-97
lines changed Original file line number Diff line number Diff line change 11# nested modules
2- docs/
32e2e/
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ SHA=$(shasum -a 256 $ARCHIVE | awk '{print $1}')
4646# Add generated API docs to the release, see https://github.com/bazelbuild/bazel-central-registry/issues/5593
4747docs=" $( mktemp -d) " ; targets=" $( mktemp) "
4848bazel --output_base=" $docs " query --output=label --output_file=" $targets " ' kind("starlark_doc_extract rule", //...)'
49- bazel --output_base=" $docs " build --target_pattern_file=" $targets " --remote_download_regex= ' .*doc_extract\.binaryproto '
49+ bazel --output_base=" $docs " build --target_pattern_file=" $targets "
5050tar --create --auto-compress \
5151 --directory " $( bazel --output_base=" $docs " info bazel-bin) " \
5252 --file " $GITHUB_WORKSPACE /${ARCHIVE% .tar.gz} .docs.tar.gz" .
Original file line number Diff line number Diff line change 3232 - id : check-symlinks
3333 - id : destroyed-symlinks
3434 - id : end-of-file-fixer
35- exclude : &exclude_pattern "^(docs| e2e|lib/tests)/"
35+ exclude : " ^(e2e|lib/tests)/"
3636 - id : mixed-line-ending
3737 - id : trailing-whitespace
3838 - repo : https://github.com/crate-ci/typos
Original file line number Diff line number Diff line change 11.circleci /config.yml
2- docs /* .md
3- e2e /* /docs.md
42lib /lib /tests /write_source_files /* .js
53lib /lib /tests /write_source_files /subdir /* .js
64lib /lib /tests /write_source_files /subdir /subsubdir /* .js
Original file line number Diff line number Diff line change 88bazel_dep (name = "bazel_features" , version = "1.9.0" )
99bazel_dep (name = "bazel_skylib" , version = "1.8.1" )
1010bazel_dep (name = "platforms" , version = "0.0.10" )
11- bazel_dep (name = "stardoc" , version = "0.7.1" )
1211bazel_dep (name = "rules_shell" , version = "0.4.1" )
1312
1413bazel_lib_toolchains = use_extension ("@bazel_lib//lib:extensions.bzl" , "toolchains" )
Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ build_test(
1818 "@bazel_lib//lib:coreutils_toolchain_type" ,
1919 "@bazel_lib//lib:diff_test" ,
2020 "@bazel_lib//lib:directory_path" ,
21- "@bazel_lib//lib:docs" ,
2221 "@bazel_lib//lib:enable_runfiles" ,
2322 "@bazel_lib//lib:expand_make_vars" ,
2423 "@bazel_lib//lib:expand_template" ,
Original file line number Diff line number Diff line change 1- load ("@bazel_lib//:bzl_library.bzl" , "bzl_library" )
21load ("@bazel_skylib//rules:common_settings.bzl" , "bool_flag" )
2+ load ("//:bzl_library.bzl" , "bzl_library" )
33load ("//lib:utils.bzl" , "is_bzlmod_enabled" )
44load ("//lib/private:stamping.bzl" , "stamp_build_setting" )
55
6- # Ensure that users building their own rules can dep on our bzl_library targets for their stardoc
76package (default_visibility = ["//visibility:public" ])
87
98exports_files (
@@ -262,12 +261,6 @@ bzl_library(
262261 deps = ["//lib/private:lists" ],
263262)
264263
265- bzl_library (
266- name = "docs" ,
267- srcs = ["docs.bzl" ],
268- deps = ["//lib/private:docs" ],
269- )
270-
271264bzl_library (
272265 name = "windows_utils" ,
273266 srcs = ["windows_utils.bzl" ],
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -109,16 +109,6 @@ bzl_library(
109109 ],
110110)
111111
112- bzl_library (
113- name = "docs" ,
114- srcs = ["docs.bzl" ],
115- visibility = ["//lib:__subpackages__" ],
116- deps = [
117- "//lib:write_source_files" ,
118- "@stardoc//stardoc:stardoc_lib" , #keep
119- ],
120- )
121-
122112bzl_library (
123113 name = "expand_template" ,
124114 srcs = ["expand_template.bzl" ],
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments