Common useful functions for writing BUILD files and Starlark macros/rules
Go to file
Greg Magolan 98998d5c72
build: use Aspect CLI in e2e tests (#282)
2022-11-14 10:11:48 -08:00
.aspect chore: update to Aspect CLI Pro 4.2.2 (#281) 2022-11-12 10:19:30 -08:00
.bcr chore: declare bzlmod repository 2022-10-21 15:54:13 -07:00
.circleci
.github/workflows ci: fix pattern for Bazel version CI matrix so Aspect CLI is still used (#280) 2022-11-12 07:31:19 -08:00
docs perf: do not execute glob for non-glob copy_to_directory root_paths/replace_prefix params (#274) 2022-11-02 18:44:42 -07:00
e2e build: use Aspect CLI in e2e tests (#282) 2022-11-14 10:11:48 -08:00
lib fix: fix copy_to_directory flattening with root_paths = ['**'] (#277) 2022-11-07 18:28:04 -08:00
platforms
shlib
tools
.bazelignore
.bazeliskrc chore: update to Aspect CLI Pro 4.2.2 (#281) 2022-11-12 10:19:30 -08:00
.bazelrc
.bazelversion chore: upgrade to Bazel 6.0.0rc1 but continue to also test Bazel 5.3.2 on CI (#266) 2022-10-26 15:05:27 -07:00
.gitattributes
.gitignore
.pre-commit-config.yaml
.prettierignore
BUILD.bazel
CONTRIBUTING.md
LICENSE
MODULE.bazel release: v1.16.1 2022-11-07 18:29:35 -08:00
README.md
WORKSPACE chore(deps): update dependency bazel_gazelle to v0.28.0 (#267) 2022-10-27 07:43:26 -06:00
internal_deps.bzl feat: add maybe_http_archive (#270) 2022-10-27 15:55:57 -07: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

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.
  • 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.

Generating documentation

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