2017-10-10 14:59:31 +00:00
|
|
|
# Skylib
|
|
|
|
|
2018-02-20 18:04:29 +00:00
|
|
|
[![Build Status](https://travis-ci.org/bazelbuild/bazel-skylib.svg?branch=master)](https://travis-ci.org/bazelbuild/bazel-skylib)
|
2018-02-28 18:51:25 +00:00
|
|
|
[![Build status](https://badge.buildkite.com/921dc61e2d3a350ec40efb291914360c0bfa9b6196fa357420.svg)](https://buildkite.com/bazel/bazel-skylib)
|
2018-02-20 18:04:29 +00:00
|
|
|
|
2017-10-10 14:59:31 +00:00
|
|
|
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
|
2018-08-24 19:00:13 +00:00
|
|
|
be loaded as a single unit, for convenience.
|
2017-10-10 14:59:31 +00:00
|
|
|
|
2017-10-31 14:15:32 +00:00
|
|
|
## Getting Started
|
|
|
|
|
2018-12-04 15:14:08 +00:00
|
|
|
### `WORKSPACE` file
|
|
|
|
|
2017-10-31 14:15:32 +00:00
|
|
|
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:
|
|
|
|
|
|
|
|
```python
|
|
|
|
git_repository(
|
|
|
|
name = "bazel_skylib",
|
|
|
|
remote = "https://github.com/bazelbuild/bazel-skylib.git",
|
|
|
|
tag = "0.1.0", # change this to use a different release
|
|
|
|
)
|
|
|
|
```
|
|
|
|
|
2018-12-04 15:14:08 +00:00
|
|
|
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:
|
|
|
|
|
|
|
|
```python
|
|
|
|
load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace")
|
|
|
|
|
|
|
|
bazel_skylib_workspace()
|
|
|
|
```
|
|
|
|
|
|
|
|
### `BUILD` and `*.bzl` files
|
|
|
|
|
2017-10-31 14:15:32 +00:00
|
|
|
Then, in the `BUILD` and/or `*.bzl` files in your own workspace, you can load
|
2018-08-24 19:00:13 +00:00
|
|
|
the modules (listed [below](#list-of-modules)) and access the symbols by
|
|
|
|
dotting into those structs:
|
2017-10-10 14:59:31 +00:00
|
|
|
|
|
|
|
```python
|
2018-12-06 16:31:32 +00:00
|
|
|
load("@bazel_skylib//lib:paths.bzl", "paths")
|
|
|
|
load("@bazel_skylib//lib:shell.bzl", "shell")
|
2017-10-10 14:59:31 +00:00
|
|
|
|
|
|
|
p = paths.basename("foo.bar")
|
|
|
|
s = shell.quote(p)
|
|
|
|
```
|
|
|
|
|
2018-08-24 19:00:13 +00:00
|
|
|
## List of modules (in lib/)
|
2017-10-10 14:59:31 +00:00
|
|
|
|
2017-10-31 14:21:26 +00:00
|
|
|
* [collections](lib/collections.bzl)
|
|
|
|
* [dicts](lib/dicts.bzl)
|
2018-08-24 18:34:41 +00:00
|
|
|
* [partial](lib/partial.bzl)
|
2017-10-31 14:21:26 +00:00
|
|
|
* [paths](lib/paths.bzl)
|
|
|
|
* [selects](lib/selects.bzl)
|
2018-08-24 18:34:41 +00:00
|
|
|
* [sets](lib/sets.bzl) - _deprecated_, use `new_sets`
|
|
|
|
* [new_sets](lib/new_sets.bzl)
|
2017-10-31 14:21:26 +00:00
|
|
|
* [shell](lib/shell.bzl)
|
2018-08-24 18:34:41 +00:00
|
|
|
* [structs](lib/structs.bzl)
|
|
|
|
* [types](lib/types.bzl)
|
2017-10-31 14:21:26 +00:00
|
|
|
* [unittest](lib/unittest.bzl)
|
2018-01-12 17:18:55 +00:00
|
|
|
* [versions](lib/versions.bzl)
|
2017-10-10 14:59:31 +00:00
|
|
|
|
|
|
|
## Writing a new module
|
|
|
|
|
|
|
|
Steps to add a module to Skylib:
|
|
|
|
|
|
|
|
1. Create a new `.bzl` file in the `lib` directory.
|
|
|
|
|
|
|
|
1. Write the functions or other symbols (such as constants) in that file,
|
|
|
|
defining them privately (prefixed by an underscore).
|
|
|
|
|
|
|
|
1. 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:
|
|
|
|
|
|
|
|
```python
|
|
|
|
def _manipulate():
|
|
|
|
...
|
|
|
|
|
|
|
|
things = struct(
|
|
|
|
manipulate=_manipulate,
|
|
|
|
)
|
|
|
|
```
|
|
|
|
|
|
|
|
1. Add unit tests for your module in the `tests` directory.
|
2017-10-31 21:54:25 +00:00
|
|
|
|
2018-09-28 13:09:18 +00:00
|
|
|
## `bzl_library`
|
2017-10-31 21:54:25 +00:00
|
|
|
|
2018-09-28 13:09:18 +00:00
|
|
|
The `bzl_library.bzl` rule can be used to aggregate a set of
|
|
|
|
Starlark files and its dependencies for use in test targets and
|
2017-10-31 21:54:25 +00:00
|
|
|
documentation generation.
|
2018-12-04 15:14:08 +00:00
|
|
|
|
|
|
|
## 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.
|