Common useful functions for writing BUILD files and Starlark macros/rules
Go to file
Derek Cormier 627ac0b82c fix: don't set assignees for bcr pr 2022-06-16 14:03:50 -07:00
.bazelci fix: fix yq windows issues by bumping version 2022-05-31 11:07:14 -07:00
.github/workflows fix: don't set assignees for bcr pr 2022-06-16 14:03:50 -07:00
docs feat: add allow_overwrites attribute to copy_to_directory and disable overwrites as the default behavior on linux and macos (#153) 2022-06-14 10:52:40 -07:00
e2e fix: buildifier lint errors 2022-06-02 18:15:24 -07:00
lib fix: fix a bug where two copy_to_bin actions couldn't copy the same file 2022-06-16 11:49:09 -07:00
tools feat: add os_arch_name() function to repo_utils and cleanup yq & jq toolchains for repository names follow this convention (#82) 2022-04-21 17:45:33 -07:00
.bazelignore feat: add to_output_relative_path 2022-06-13 12:55:22 -07:00
.bazelrc fix: fix a bug where write_source_files diff_test fails on windows when 2022-06-16 09:10:30 -07:00
.bazelversion Add unittest 2021-11-08 07:22:47 -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 fix: fix a bug where yq failed to build in the root package 2022-05-02 20:35:59 -07:00
CONTRIBUTING.md release: update instructions 2021-11-11 07:02:50 -08:00
LICENSE license under apache 2 2021-12-21 16:54:15 -08:00
MODULE.bazel fix: buildifier lint errors 2022-06-02 18:15:24 -07:00
README.md add bzlmod usage instructions (#129) 2022-06-06 11:19:37 -07:00
WORKSPACE feat: add to_output_relative_path 2022-06-13 12:55:22 -07:00
internal_deps.bzl chore(deps): update dependency io_bazel_rules_go to v0.33.0 2022-06-10 17:45:32 -07:00
renovate.json chore(deps): add renovate.json (#135) 2022-06-10 12:49:41 -07: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.

Generating documentation

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