Common useful functions for writing BUILD files and Starlark macros/rules
Go to file
Greg Magolan 1be542496e
chore: fix docs build
2024-03-27 10:31:05 -04:00
.aspect presets: remove eternal test_timeout_filtering (#758) 2024-03-27 10:19:45 -04:00
.bcr chore: add bazel versions to BCR presubmit.yaml 2024-02-05 19:44:05 -08:00
.circleci chore: upgrade to Aspect Workflows 5.8.3 (#635) 2023-10-31 23:23:00 +01:00
.github/workflows chore: add windows binaries (#610) 2024-03-23 02:09:57 -04:00
docs feat(list): add `unique` function (#716) 2024-03-27 10:22:24 -04:00
e2e fix: remove need for rules_go when depending on a bzl_library target (#663) 2023-11-16 13:14:55 -08:00
lib chore: fix docs build 2024-03-27 10:31:05 -04:00
platforms
shlib
tools feat: give version.bzl public visibility (#670) 2023-11-22 11:11:31 -08:00
.bazelignore
.bazelrc fix(ci): always build with -c opt (#555) 2023-09-27 09:56:35 -07:00
.bazelversion
.gitattributes
.gitignore Avoid expanding mtree spec during analysis phase (#576) 2024-03-23 01:46:44 -04:00
.pre-commit-config.yaml chore: update pre-commit buildifier (#563) 2023-09-29 14:42:33 -07:00
.prettierignore
BUILD.bazel feat: add is_bazel_7_or_greater utility (#714) 2024-01-08 02:32:28 -08:00
CONTRIBUTING.md docs: add minimum pre-commit version (#544) 2023-09-24 17:17:49 -07:00
LICENSE
MODULE.bazel fix: register tar toolchains in MODULE.bazel file so bzlmod consumers don't have to 2024-03-27 10:02:06 -04:00
README.md feat: add list utils (#512) 2023-09-21 10:12:47 -07:00
WORKSPACE chore: test against bazel 7.0.0 (#713) 2024-01-08 02:31:24 -08:00
deps.bzl refactor: consume tools from source if unstamped (#543) 2023-09-24 15:06:10 -07:00
go.mod fix(deps): update golang.org/x/exp digest to 9212866 2023-09-13 17:50:11 -07:00
go.sum fix(deps): update golang.org/x/exp digest to 9212866 2023-09-13 17:50:11 -07:00
internal_deps.bzl feat: add a tar toolchain (#468) 2024-03-23 01:42:58 -04:00
renovate.json

README.md

Aspect's 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.

bazel-lib is just a part of what Aspect provides:

Installation

Installation instructions are included on each release: https://github.com/aspect-build/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/aspect-build/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/aspect-build/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

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 substitions in strings and templates.
  • 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.

Generating documentation

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