Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Common useful functions and rules for Bazel

License

NotificationsYou must be signed in to change notification settings

bazelbuild/bazel-skylib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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 thelib directory defines a "module"—astruct that contains a set of related functions and/or other symbols that canbe loaded as a single unit, for convenience.

Skylib also provides build rules under therules directory.

Getting Started

WORKSPACE file

See theWORKSPACE setup sectionfor the current release.

If you want to uselib/unittest.bzl from Skylib versions released in or afterDecember 2018, then you also should add to theWORKSPACE file:

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

BUILD and*.bzl files

Then, in theBUILD and/or*.bzl files in your own workspace, you can loadthe modules (listedbelow) and access the symbols bydotting 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 thelib 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 symbolsto their implementations. For example, if your module was namedthings andhad a function namedmanipulate, yourthings.bzl file would look likethis:

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

bzl_library

Thebzl_library.bzl rule can be used to aggregate a set ofStarlark files and its dependencies for use in test targets anddocumentation generation.

Troubleshooting

If you try to useunittest and you get the following error:

ERROR: While resolving toolchains for target //foo:bar: no matching toolchains found for types @bazel_skylib//toolchains:toolchain_typeERROR: 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 callbazel_skylib_workspace() in yourWORKSPACE file.

Maintainer's guide

See themaintaner's guide for instructions forcutting a new release.

Gazelle Plugin

bazel_skylib ships with agazelleplugin to generatebzl_library entries in build files. To use this, in yourWORKSPACE:

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 yourBUILD.bazelfile:

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",    ],)

About

Common useful functions and rules for Bazel

Topics

Resources

License

Contributing

Security policy

Stars

Watchers

Forks

Packages

No packages published

[8]ページ先頭

©2009-2025 Movatter.jp