Common useful functions and rules for Bazel
Go to file
JY Lin 60241d2e06
Add toolchains argument to unittests.make (#483)
* Add toolchains argument to unittests.make

Make unittests.make bypass toolchains arguments to target rule's constructor.

* update doc

---------

Co-authored-by: JiaYan Lin <jiayanl@google.com>
2024-01-08 09:37:19 +01:00
.bazelci Bump rules_pkg dep to 0.9.1 to fix build with --incompatible_config_setting_private_default_visibility (#452) 2023-08-08 17:32:28 -04:00
distribution Modify actions in order not to need `toolchain` param (#455) 2023-08-28 14:39:43 -04:00
docs Add toolchains argument to unittests.make (#483) 2024-01-08 09:37:19 +01:00
gazelle prepare for release 1.5.0 (#472) 2023-11-05 11:16:45 -05:00
lib Add toolchains argument to unittests.make (#483) 2024-01-08 09:37:19 +01:00
rules Modify actions in order not to need toolchain param (#478) 2023-11-16 15:04:55 +01:00
tests versions: Don't fail on Bazel dev builds (#463) 2023-09-25 18:25:37 -07:00
toolchains/unittest Improve escaping in unittest failure message (#320) 2021-10-04 12:03:48 -04:00
.bazelignore Add the gazelle plugin to the distribution (#400) 2022-11-07 11:25:38 +01:00
.gitignore Add initial .gitignore with bazel-* folders 2017-10-31 07:04:27 -07:00
AUTHORS Fix grammar. 2018-02-20 16:53:50 -05:00
BUILD Trivial buildifier fix (#444) 2023-04-03 11:09:36 -04:00
CHANGELOG.md prepare for release 1.5.0 (#472) 2023-11-05 11:16:45 -05:00
CODEOWNERS Extend owners of skylib. (#355) 2022-02-23 09:43:39 -05:00
CONTRIBUTING.md Initial check-in. 2017-10-10 07:59:31 -07:00
CONTRIBUTORS add cparsons and bttk to the CONTRIBUTORS file (#73) 2018-11-20 15:19:06 -05:00
LICENSE Initial check-in. 2017-10-10 07:59:31 -07:00
MODULE.bazel prepare for release 1.5.0 (#472) 2023-11-05 11:16:45 -05:00
MODULE.bazel-remove-override.patch Add gazelle plugin to CI and distribution mechanism (#424) 2023-01-20 16:48:10 -05:00
README.md Fix spelling (#445) 2023-04-26 21:55:09 -04:00
WORKSPACE Bump rules_pkg dep to 0.9.1 to fix build with --incompatible_config_setting_private_default_visibility (#452) 2023-08-08 17:32:28 -04:00
WORKSPACE.bzlmod feat: bzlmod setup (#385) 2022-08-30 14:57:34 -04:00
bzl_library.bzl Add error for empty bzl_library (#457) 2023-10-25 16:39:34 +02:00
lib.bzl `print`->`fail` and suppress the warning in another case. (#177) 2019-07-22 13:25:00 -04:00
skylark_library.bzl `print`->`fail` and suppress the warning in another case. (#177) 2019-07-22 13:25:00 -04:00
version.bzl prepare for release 1.5.0 (#472) 2023-11-05 11:16:45 -05:00
workspace.bzl add missing license notices (#94) 2019-01-14 16:00:11 -05:00

README.md

Skylib

Build status

Skylib is a library of Starlark functions for manipulating collections, file paths, and various other data types in the domain of Bazel build rules.

Each of the .bzl files in the lib directory defines a "module"—a struct that contains a set of related functions and/or other symbols that can be loaded as a single unit, for convenience.

Skylib also provides build rules under the rules directory.

Getting Started

WORKSPACE file

See the WORKSPACE setup section for the current release.

If you want to use lib/unittest.bzl from Skylib versions released in or after December 2018, then you also should add to the WORKSPACE file:

load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace")

bazel_skylib_workspace()

BUILD and *.bzl files

Then, in the BUILD and/or *.bzl files in your own workspace, you can load the modules (listed below) and access the symbols by dotting into those structs:

load("@bazel_skylib//lib:paths.bzl", "paths")
load("@bazel_skylib//lib:shell.bzl", "shell")

p = paths.basename("foo.bar")
s = shell.quote(p)

List of modules (in lib/)

List of rules (in rules/)

Writing a new module

The criteria for adding a new function or module to this repository are:

  1. Is it widely needed? The new code must solve a problem that occurs often during the development of Bazel build rules. It is not sufficient that the new code is merely useful. Candidate code should generally have been proven to be necessary across several projects, either because it provides indispensable common functionality, or because it requires a single standardized implementation.

  2. Is its interface simpler than its implementation? A good abstraction provides a simple interface to a complex implementation, relieving the user from the burden of understanding. By contrast, a shallow abstraction provides little that the user could not easily have written out for themselves. If a function's doc comment is longer than its body, it's a good sign that the abstraction is too shallow.

  3. Is its interface unimpeachable? Given the problem it tries to solve, does it have sufficient parameters or generality to address all reasonable cases, or does it make arbitrary policy choices that limit its usefulness? If the function is not general, it likely does not belong here. Conversely, if it is general thanks only to a bewildering number of parameters, it also does not belong here.

  4. Is it efficient? Does it solve the problem using the asymptotically optimal algorithm, without using excessive looping, allocation, or other high constant factors? Starlark is an interpreted language with relatively expensive basic operations, and an approach that might make sense in C++ may not in Starlark.

If your new module meets all these criteria, then you should consider sending us a pull request. It is always better to discuss your plans before executing them.

Many of the declarations already in this repository do not meet this bar.

Steps to add a module to Skylib:

  1. Create a new .bzl file in the lib directory.

  2. Write the functions or other symbols (such as constants) in that file, defining them privately (prefixed by an underscore).

  3. Create the exported module struct, mapping the public names of the symbols to their implementations. For example, if your module was named things and had a function named manipulate, your things.bzl file would look like this:

    def _manipulate():
      ...
    
    things = struct(
        manipulate=_manipulate,
    )
    
  4. Add unit tests for your module in the tests directory.

bzl_library

The bzl_library.bzl rule can be used to aggregate a set of Starlark files and its dependencies for use in test targets and documentation generation.

Troubleshooting

If you try to use unittest and you get the following error:

ERROR: While resolving toolchains for target //foo:bar: no matching toolchains found for types @bazel_skylib//toolchains:toolchain_type
ERROR: Analysis of target '//foo:bar' failed; build aborted: no matching toolchains found for types @bazel_skylib//toolchains:toolchain_type

then you probably forgot to load and call bazel_skylib_workspace() in your WORKSPACE file.

Maintainer's guide

See the maintaner's guide for instructions for cutting a new release.

Gazelle Plugin

bazel_skylib ships with a gazelle plugin to generate bzl_library entries in build files. To use this, in your WORKSPACE:

load("@bazel_skylib_gazelle_plugin//:workspace.bzl", "bazel_skylib_gazelle_plugin_workspace")

bazel_skylib_gazelle_plugin_workspace()

load("@bazel_skylib_gazelle_plugin//:setup.bzl", "bazel_skylib_gazelle_plugin_setup")

bazel_skylib_gazelle_plugin_setup()

You may then include the plugin using code similar to this in your BUILD.bazel file:

load("@bazel_gazelle//:def.bzl", "DEFAULT_LANGUAGES", "gazelle", "gazelle_binary")

gazelle(
    name = "gazelle",
    gazelle = ":gazelle_bin",
)

gazelle_binary(
    name = "gazelle_bin",
    languages = DEFAULT_LANGUAGES + [
        "@bazel_skylib_gazelle_plugin//bzl",
    ],
)