Common useful functions for writing BUILD files and Starlark macros/rules
Go to file
Greg Magolan 497409b15b
fix: bzlmod toolchain registration for copy_directory & copy_to_directory (#336)
2023-01-16 19:37:36 -08:00
.aspect chore: upgrade to Aspect CLI 5.1.2 (#331) 2023-01-15 21:52:16 -08:00
.bcr chore: update bcr homepage 2023-01-07 16:53:48 -08:00
.circleci refactor: move Aspect Workflows configuration files to new location (#249) 2022-09-19 11:58:04 -04:00
.github/workflows chore: fixup GH release yaml 2023-01-03 12:37:05 -08:00
docs feat: hardlink generated files in copy_to_directory and copy_directory instead of copying (#321) 2023-01-16 17:19:13 -08:00
e2e fix: bzlmod toolchain registration for copy_directory & copy_to_directory (#336) 2023-01-16 19:37:36 -08:00
lib fix: bzlmod toolchain registration for copy_directory & copy_to_directory (#336) 2023-01-16 19:37:36 -08:00
platforms ci: enable engflow RBE for github actions 2022-08-19 08:42:00 -07:00
shlib Add `shlib/lib/assertions.sh` and related tests (#237) 2022-09-13 10:35:47 -07:00
tools fix: on Windows you must call filepath.Walkdir on the realpath and not the symlink path (#335) 2023-01-16 15:41:39 -08:00
.bazelignore feat: add to_output_relative_path 2022-06-13 12:55:22 -07:00
.bazeliskrc chore: upgrade to Aspect CLI 5.1.2 (#331) 2023-01-15 21:52:16 -08:00
.bazelrc chore: update release to include copy_to_directory action binary (#309) 2023-01-03 12:26:51 -08:00
.bazelversion chore: update to Bazel 6.0.0 and Aspect CLI 5.1.0 (#303) 2023-01-01 14:15:59 -08:00
.gitattributes feat: yq (#80) 2022-04-19 21:45:06 -07:00
.gitignore fix(write_source_files): fix writing to workspace root (#53) 2022-03-30 17:04:35 -07:00
.pre-commit-config.yaml update buildifier and fix formatting 2022-04-01 13:33:14 -07:00
.prettierignore test: add test coverage for docs rules 2022-04-27 17:34:45 -07:00
BUILD.bazel feat: improve performance of copy_to_directory by moving glob match & copying to a golang binary (#308) 2023-01-03 09:42:20 -08:00
CONTRIBUTING.md feat: add executable attribute to write_source_files 2022-12-03 10:46:08 -08:00
LICENSE license under apache 2 2021-12-21 16:54:15 -08:00
MODULE.bazel fix: bzlmod toolchain registration for copy_directory & copy_to_directory (#336) 2023-01-16 19:37:36 -08:00
README.md Update README.md 2022-11-25 21:59:05 -08:00
WORKSPACE feat: improve performance of copy_to_directory by moving glob match & copying to a golang binary (#308) 2023-01-03 09:42:20 -08:00
deps.bzl fix: on Windows you must call filepath.Walkdir on the realpath and not the symlink path (#335) 2023-01-16 15:41:39 -08:00
go.mod fix: on Windows you must call filepath.Walkdir on the realpath and not the symlink path (#335) 2023-01-16 15:41:39 -08:00
go.sum fix: on Windows you must call filepath.Walkdir on the realpath and not the symlink path (#335) 2023-01-16 15:41:39 -08:00
internal_deps.bzl feat: add coreutils toolchain (#332) 2023-01-16 21:02:17 +03:00
renovate.json chore(deps): add renovate.json (#135) 2022-06-10 12:49:41 -07:00
workspace_status.sh chore: update release to include copy_to_directory action binary (#309) 2023-01-03 12:26:51 -08:00

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.
  • base64 Starlark Base64 encoder & decoder.

Generating documentation

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