db3ce78dc2
With `--incompatible_depset_is_not_iterable` depset is no longer iterable. Remove tests that assumed it is. Bazel issue: https://github.com/bazelbuild/bazel/issues/5816 |
||
---|---|---|
.bazelci | ||
lib | ||
tests | ||
.gitignore | ||
.travis.yml | ||
.travis_build.sh | ||
.travis_install.sh | ||
AUTHORS | ||
BUILD | ||
CONTRIBUTING.md | ||
CONTRIBUTORS | ||
LICENSE | ||
README.md | ||
WORKSPACE | ||
bzl_library.bzl | ||
lib.bzl | ||
skylark_library.bzl |
README.md
Skylib
Skylib is a standard library that provides functions useful for manipulating collections, file paths, and other features that are useful when writing custom build rules in Bazel.
This library is currently under early development. Be aware that the APIs in these modules may change during this time.
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.
Getting Started
Add the following to your WORKSPACE
file to import the Skylib repository into
your workspace. Replace the version number in the tag
attribute with the
version you wish to depend on:
git_repository(
name = "bazel_skylib",
remote = "https://github.com/bazelbuild/bazel-skylib.git",
tag = "0.1.0", # change this to use a different release
)
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/)
- collections
- dicts
- partial
- paths
- selects
- sets - deprecated, use
new_sets
- new_sets
- shell
- structs
- types
- unittest
- versions
Writing a new module
Steps to add a module to Skylib:
-
Create a new
.bzl
file in thelib
directory. -
Write the functions or other symbols (such as constants) in that file, defining them privately (prefixed by an underscore).
-
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 namedmanipulate
, yourthings.bzl
file would look like this:def _manipulate(): ... things = struct( manipulate=_manipulate, )
-
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.