2
0
Fork 0
mirror of https://github.com/bazel-contrib/bazel-lib synced 2024-11-25 11:32:33 +00:00
Common useful functions for writing BUILD files and Starlark macros/rules
Find a file
Chuck Grindel e376f9a733
Add shlib/lib/assertions.sh and related tests (#237)
* Add shlib assertions

* Remove obsolete code

* Fix shellcheck warnings

* Switch to explicit -o nounset

* Switched boolean shortcuts to if-then statements

* Review suggestion
2022-09-13 10:35:47 -07:00
.aspectci fix: handle copy_to_directory '.' and './**' special patterns correctly when in the root package (#212) 2022-08-11 16:25:51 -07:00
.bcr ci: prepare bazel-lib for publish-to-bcr app 2022-09-10 12:30:53 -07:00
.circleci chore(deps): update continuation orb to v0.3.1 2022-08-18 14:35:06 -07:00
.github/workflows fix: disable e2e/bzlmod with RBE temporarily 2022-09-12 20:52:13 -07:00
docs fix: fix host platform detection on all copy actions which always run locally (#241) 2022-09-12 20:45:48 -07:00
e2e chore: update MODULE.bazel to use register_toolchains 2022-09-12 16:59:08 -07:00
lib fix: fix host platform detection on all copy actions which always run locally (#241) 2022-09-12 20:45:48 -07: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 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 feat: jq supports stamping 2022-08-22 12:39:54 -07:00
.bazelversion chore: update MODULE.bazel to use register_toolchains 2022-09-12 16:59:08 -07:00
.gitattributes
.gitignore
.pre-commit-config.yaml
.prettierignore test: add test coverage for docs rules 2022-04-27 17:34:45 -07:00
BUILD.bazel fix: fix a bug where multiple files were not written at the root package 2022-08-16 11:20:55 -07:00
CONTRIBUTING.md
internal_deps.bzl ci: enable engflow RBE for github actions 2022-08-19 08:42:00 -07:00
LICENSE
MODULE.bazel chore: update MODULE.bazel to use register_toolchains 2022-09-12 16:59:08 -07:00
README.md docs: add stamping to readme index 2022-09-12 19:24:53 -07:00
renovate.json chore(deps): add renovate.json (#135) 2022-06-10 12:49:41 -07:00
WORKSPACE fix: fix host platform detection on all copy actions which always run locally (#241) 2022-09-12 20:45:48 -07:00

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.