Common useful functions for writing BUILD files and Starlark macros/rules
Go to file
Peter Lobsinger eb4c47f734
fix: access FilesToRunProvider.repo_mapping_manifest indirectly (#976)
This field is only present in Bazel versions v7.0 or later. An
accodation for its absence is required while v6.x versions are still
supported by this library.

Fixes https://github.com/bazel-contrib/bazel-lib/issues/975
2024-11-06 10:26:40 -08:00
.aspect fix: allow_tags_propagation defaults true in 7 (#973) 2024-10-28 16:28:03 -07:00
.bcr Update metadata.template.json (#950) 2024-09-26 21:34:31 +00:00
.github/workflows chore: stable job name for branch protection (#883) 2024-09-17 17:55:40 -07:00
docs doc: warn about gzip timestamps (#979) 2024-11-04 06:20:11 -08:00
e2e fix: declare host_platform as non-dev dep (#945) 2024-09-23 18:43:45 -07:00
lib fix: access FilesToRunProvider.repo_mapping_manifest indirectly (#976) 2024-11-06 10:26:40 -08:00
platforms chore: cleanup before bazel-contrib handoff (#918) 2024-09-02 09:32:38 -07:00
shlib chore: right size tests to supress bazel warning (#913) 2024-08-19 15:55:21 -07:00
tools Make build pass with --incompatible_auto_exec_groups (#963) 2024-10-15 10:16:11 -07:00
.bazelignore chore: turn on more basic precommit checks 2023-02-17 11:00:00 -08:00
.bazeliskrc chore: cleanup before bazel-contrib handoff (#918) 2024-09-02 09:32:38 -07:00
.bazelrc Make build pass with --incompatible_auto_exec_groups (#963) 2024-10-15 10:16:11 -07:00
.bazelversion chore(deps): update dependency bazel to v7.3.2 (#955) 2024-10-04 08:32:27 -07:00
.editorconfig chore: bazel run //:format (#682) 2023-12-08 00:30:39 -08:00
.gitattributes fix(typos): Fix almost all typos with hook (#884) 2024-07-31 10:09:17 -04:00
.gitignore chore: align ci patterns (#843) 2024-05-13 23:51:10 -07:00
.pre-commit-config.yaml chore: enable go, shell, yaml formatters and bazel run //:format (#917) 2024-08-20 11:56:40 -07:00
.prettierignore chore: upgrade to Aspect Workflows 5.9.0-rc.15 (#722) 2024-01-13 13:38:51 -08:00
.shellcheckrc chore: cleanup before bazel-contrib handoff (#918) 2024-09-02 09:32:38 -07:00
.typos.toml fix(typos): Fix almost all typos with hook (#884) 2024-07-31 10:09:17 -04:00
.vale.ini chore: cleanup before bazel-contrib handoff (#918) 2024-09-02 09:32:38 -07:00
BUILD.bazel chore: update git urls (#926) 2024-09-17 17:05:35 -07:00
CONTRIBUTING.md chore: cleanup before bazel-contrib handoff (#918) 2024-09-02 09:32:38 -07:00
LICENSE chore: turn on more basic precommit checks 2023-02-17 11:00:00 -08:00
MODULE.bazel fix: declare host_platform as non-dev dep (#945) 2024-09-23 18:43:45 -07:00
README.md chore(docs): add tar to API listing (#960) 2024-10-10 21:06:49 +00:00
WORKSPACE.bazel chore: cleanup before bazel-contrib handoff (#918) 2024-09-02 09:32:38 -07:00
deps.bzl chore: cleanup before bazel-contrib handoff (#918) 2024-09-02 09:32:38 -07:00
go.mod fix(deps): update module github.com/bmatcuk/doublestar/v4 to v4.7.1 (#961) 2024-10-13 10:00:51 -07:00
go.sum fix(deps): update module github.com/bmatcuk/doublestar/v4 to v4.7.1 (#961) 2024-10-13 10:00:51 -07:00
renovate.json Update renovate.json (#572) 2024-02-26 17:39:52 -08:00
yamlfmt.yaml chore: enable go, shell, yaml formatters and bazel run //:format (#917) 2024-08-20 11:56:40 -07:00

README.md

Bazel helpers library

Base Starlark libraries and basic Bazel rules which are useful for constructing rulesets and BUILD files.

This module depends on bazel-skylib. In theory all these utilities could be upstreamed to bazel-skylib, but the declared scope of that project is narrow and it's very difficult to get anyone's attention to review PRs there.

Installation

Installation instructions are included on each release: https://github.com/bazel-contrib/bazel-lib/releases

To use a commit rather than a release, you can point at any SHA of the repo.

For example to use commit abc123:

  1. Replace url = "https://github.com/bazel-contrib/bazel-lib/releases/download/v0.1.0/bazel-lib-v0.1.0.tar.gz" with a GitHub-provided source archive like url = "https://github.com/bazel-contrib/bazel-lib/archive/abc123.tar.gz"
  2. Replace strip_prefix = "bazel-lib-0.1.0" with strip_prefix = "bazel-lib-abc123"
  3. Update the sha256. The easiest way to do this is to comment out the line, then Bazel will print a message with the correct value.

Note that GitHub source archives don't have a strong guarantee on the sha256 stability, see https://github.blog/2023-02-21-update-on-the-future-stability-of-source-code-archives-and-hashes

Public API

Packaging

  • tar Run BSD tar to produce archives.

Copying files

  • copy_directory Copies directories to another package.
  • copy_file Copies files to another package.
  • copy_to_bin Copies a source file to output tree at the same workspace-relative path.
  • copy_to_directory Copies and arranges files and directories into a new directory.
  • write_source_files Write to one or more files or folders in the source tree. Stamp out tests that ensure the sources exist and are up to date.

Transforming files

  • jq A toolchain and custom rule for running jq, a tool that is "like sed for json".
  • yq A toolchain and custom rule for running yq, a "YAML, JSON and XML processor".

Manipulating paths

  • directory_path Provide a label to reference some path within a directory, via DirectoryPathInfo.
  • output_files Forwards a subset of the files (via the DefaultInfo provider) from a given target's DefaultInfo or OutputGroupInfo.

Writing rules

  • expand_make_vars Perform make variable and location substitutions in strings..
  • expand_template Substitute templates with make variables, location resolves, stamp variables, and arbitrary strings.
  • paths Useful path resolution methods.
  • transitions Transition sources to a provided platform.
  • lists Functional-style helpers for working with list data structures.
  • utils Various utils for labels and globs.
  • params_file Generate encoded params file from a list of arguments.
  • repo_utils Useful methods for repository rule implementations.
  • run_binary Like skylib's run_binary but adds directory output support.
  • stamping Support version stamping in custom rules.
  • base64 Starlark Base64 encoder & decoder.

Testing

Generating documentation

  • docs Rules for generating docs and stamping tests to ensure they are up to date.