Go rules for Bazel
Bazel ≥0.4.4 | linux-x86_64 | ubuntu_15.10-x86_64 | darwin-x86_64 |
---|---|---|---|
- May 5, 2017 Release 0.4.4 is now available!
- April 12, 2017 Release 0.4.3 is now available!
- April 7, 2017 Builds using rules_go recently broke
(#361) because of a name
change in buildifier, one of our dependencies. You can upgrade to
0.3.4
,0.4.2
, ormaster
to get your build working again.
The rules are in the alpha stage of development. They support:
- libraries
- binaries
- tests
- vendoring
- cgo
- auto generating BUILD files via gazelle
- protocol buffers (via extension //proto:go_proto_library.bzl)
They currently do not support (in order of importance):
- cross compilation
- bazel-style auto generating BUILD (where the library name is other than go_default_library)
- C/C++ interoperation except cgo (swig etc.)
- race detector
- coverage
- test sharding
Note: since 0.4.x this repo requires bazel ≥ 0.4.4 to function (due to the use of BUILD.bazel files in bazelbuild/buildtools).
-
Decide on the name of your package, eg.
github.com/joe/project
. It's important to choose a name that will match where others will download your code. This will be a prefix for import paths within your project. -
Add the following to your WORKSPACE file:
git_repository( name = "io_bazel_rules_go", remote = "https://github.com/bazelbuild/rules_go.git", tag = "0.4.4", ) load("@io_bazel_rules_go//go:def.bzl", "go_repositories") go_repositories()
-
If your project follows the structure that
go build
uses, you can generate yourBUILD
files with Gazelle. If not, read on. -
Add a
BUILD
file to the top of your project. Declare the name of your workspace usinggo_prefix
. This is used by Bazel to translate between build targets and import paths.load("@io_bazel_rules_go//go:def.bzl", "go_prefix") go_prefix("github.com/joe/project")
-
For a library
github.com/joe/project/lib
, createlib/BUILD
, containing a single library with the special name "go_default_library
." Using this name tells Bazel to set up the files so it can be imported in .go files as (in this example)github.com/joe/project/lib
. See the FAQ below for more information on this name.load("@io_bazel_rules_go//go:def.bzl", "go_library") go_library( name = "go_default_library", srcs = ["file.go"] )
-
Inside your project, you can use this library by declaring a dependency on the full Bazel name (including
:go_default_library
), and in the .go files, import it as shown above.go_binary( ... deps = ["//lib:go_default_library"] )
-
To declare a test,
go_test( name = "mytest", srcs = ["file_test.go"], library = ":go_default_library" )
-
For instructions on how to depend on external libraries, see Vendoring.md.
If you project is compatible with the go
tool, you can generate and update
your BUILD
files automatically using Gazelle,
a command line tool which is part of this repository.
- You can install Gazelle using the command below. This assumes this repository is checked out under GOPATH.
go install github.com/bazelbuild/rules_go/go/tools/gazelle/gazelle
- To run Gazelle for the first time, run the command below from your project root directory.
gazelle -go_prefix github.com/joe/project
- To update your
BUILD
files later, just rungazelle
. - By default, Gazelle assumes external dependencies are present in
your
WORKSPACE
file, following a certain naming convention. For example, it expects the repository forgithub.com/jane/utils
to be named@com_github_jane_utils
. If you prefer to use vendoring, rungazelle
with-external vendored
. See Vendoring.md.
See the Gazelle README for more information.
Yes, this setup was deliberately chosen to be compatible with the go
tool. Make sure your workspace appears under
$GOPATH/src/github.com/joe/project/
eg.
mkdir -p $GOPATH/src/github.com/joe/
ln -s my/bazel/workspace $GOPATH/src/github.com/joe/project
and it should work.
This is used to keep import paths consistent in libraries that can be built
with go build
.
In order to compile and link correctly, the Go rules need to be able to
translate between Bazel labels and Go import paths. Let's say your project name
is github.com/joe/project
, and you have a library in the foo/bar
directory
named bar
. The Bazel label for this would be //foo/bar:bar
. The Go import
path for this would be github.com/joe/project/foo/bar/bar
.
This is not what go build
expects; it expects
github.com/joe/project/foo/bar/bar
to refer to a library built from .go files
in the directory foo/bar/bar
.
In order to avoid this conflict, you can name your library go_default_library
.
The full Bazel label for this library would be //foo/bar:go_default_library
.
The import path would be github.com/joe/project/foo/bar
.
BUILD
files generated with Gazelle, including those in external projects
imported with go_repository
, will have libraries named
go_default_library
automatically.
go_repositories(go_version, go_linux, go_darwin)
Adds Go-related external dependencies to the WORKSPACE, including the Go toolchain and standard library. All the other workspace rules and build rules assume that this rule is placed in the WORKSPACE.
Attributes | |
---|---|
go_version |
String, optional
The Go version to use. If none of the parameters are specified, the most recent stable version of Go will be used. |
go_linux |
String, optional
A custom Go repository to use when building on Linux. See below for
an example. This cannot be specified at the same time as
|
go_darwin |
String, optional
A custom Go repository to use when building on macOS. See below for
an example. This cannot be specified at the same time as
|
Suppose you have your own fork of Go, perhaps with some custom patches
applied. To use that toolchain with these rules, declare the toolchain
repository with a workspace rule, such as new_git_repository
or
local_repository
, then pass it to go_repositories
as below. The rules expect
Go binaries and libraries to be present in the bin/
and pkg/
directories, so
you'll need a different repository for each supported host platform.
new_git_repository(
name = "custom_go_linux",
remote = "https://github.com/j_r_hacker/go_linux",
tag = "2.5",
build_file_content = "",
)
new_git_repository(
name = "custom_go_darwin",
remote = "https://github.com/j_r_hacker/go_darwin",
tag = "2.5",
build_file_content = "",
)
go_repositories(
go_linux = "@custom_go_linux",
go_darwin = "@custom_go_darwin",
)
go_repository(name, importpath, remote, vcs, commit, tag, build_tags, url, string_prefix, type, sha256, build_file_name, build_file_generation)
Fetches a remote repository of a Go project, and generates BUILD
files if needed.
In vcs mode it recognizes importpath redirection of Go.
The importpath
import path must always be specified. If url is specified, it is expected to be the url for a source archive. If remote
and vcs
are both specified, they control the source repository to be cloned for the import path. If neither a vcs nor a url are specified, the vcs will be inferred from the import path using the normal go logic.
Attributes | |
---|---|
name |
String, required
A unique name for this external dependency. |
importpath |
String, optional
An import path in Go, which also provides a default value for the root of the target remote repository |
remote |
String, optional
The URI of the target remote repository, if this cannot be determined
from the value of |
vcs |
String, optional
The version control system to use for fetching the repository. Useful for disabling importpath redirection if necessary. |
commit |
String, optional
The commit hash to checkout in the repository. Note that one of either |
tag |
String, optional
The tag to checkout in the repository. Note that one of either |
build_tags |
String, optional
The set of tags to pass to gazelle when generating build files. |
url |
String, optional
The url for a source code archive. See [http_archive](https://bazel.build/versions/master/docs/be/workspace.html#http_archive) for more details. |
strip_prefix |
String, optional
The internal path prefix to strip when the archive is extracted. See [http_archive](https://bazel.build/versions/master/docs/be/workspace.html#http_archive) for more details. |
type |
String, optional
The type of the archive, only needed if it cannot be inferred from the file extension. See [http_archive](https://bazel.build/versions/master/docs/be/workspace.html#http_archive) for more details. |
sha256 |
String, optional
The expected SHA-256 hash of the file downloaded. See [http_archive](https://bazel.build/versions/master/docs/be/workspace.html#http_archive) for more details. |
build_file_name |
String, optional
The name to use for the generated build files, defaults to BUILD.bazel. |
build_file_generation |
String, optional
Used to force build file generation. off means do not generate build files on means always run gazelle, even if build files are already present auto is the default and runs gazelle only if there is no root build file |
go_prefix(prefix)
go_prefix
declares the common prefix of the import path which is shared by
all Go libraries in the repository. A go_prefix
rule must be declared in the
top-level BUILD file for any repository containing Go rules. This is used by the
Bazel rules during compilation to map import paths to dependencies. See the
FAQ for more information.
Attributes | |
---|---|
prefix |
String, required
Global prefix used to fully qualify all Go targets. |
go_library(name, srcs, deps, data, library, gc_goopts)
go_library
builds a Go library from a set of source files that are all part of
the same package. This library cannot contain cgo code (see
cgo_library
).
Attributes | |
---|---|
name |
Name, required
A unique name for this rule. |
srcs |
List of labels, required
List of Go |
deps |
List of labels, optional
List of other libraries to linked to this library target |
data |
List of labels, optional
List of files needed by this rule at runtime. |
library |
Label, optional
A label of another rule with Go `srcs`, `deps`, and `data`. When this library is compiled, the sources from this attribute will be combined with `srcs`. This is commonly used to depend on Go sources in `cgo_library`. |
gc_goopts |
List of strings, optional
List of flags to add to the Go compilation command. Subject to Make variable substitution and Bourne shell tokenization. |
cgo_library(name, srcs, copts, clinkopts, cdeps, deps, data, gc_goopts)
cgo_library
builds a Go library from a set of cgo source files that are part
of the same package. This library cannot contain pure Go code (see the note
below).
Attributes | |
---|---|
name |
Name, required
A unique name for this rule. |
srcs |
List of labels, required
List of Go, C and C++ files that are processed to build a Go library. Those Go files must contain |
copts |
List of strings, optional
Add these flags to the C++ compiler |
clinkopts |
List of strings, optional
Add these flags to the C++ linker |
cdeps |
List of labels, optional
List of C/C++ libraries to be linked into the binary target.
They must be |
deps |
List of labels, optional
List of other Go libraries to be linked to this library |
data |
List of labels, optional
List of files needed by this rule at runtime. |
gc_goopts |
List of strings, optional
List of flags to add to the Go compilation command. Subject to Make variable substitution and Bourne shell tokenization. |
srcs
cannot contain pure-Go files, which do not have import "C"
.
So you need to define another go_library
when you build a go package with
both cgo-enabled and pure-Go sources.
cgo_library(
name = "cgo_enabled",
srcs = ["cgo-enabled.go", "foo.cc", "bar.S", "baz.a"],
)
go_library(
name = "go_default_library",
srcs = ["pure-go.go"],
library = ":cgo_enabled",
)
go_binary(name, srcs, deps, data, library, linkstamp, x_defs, gc_goopts, gc_linkopts)
go_binary
builds an executable from a set of source files, which must all be
in the main
package. You can run the with bazel run
, or you can run it
directly.
Attributes | |
---|---|
name |
Name, required
A unique name for this rule. |
srcs |
List of labels, required
List of Go |
deps |
List of labels, optional
List of other Go libraries to linked to this binary target |
data |
List of labels, optional
List of files needed by this rule at runtime. |
library |
Label, optional
A label of another rule with Go `srcs`, `deps`, and `data`. When this binary is compiled, the sources from this attribute will be combined with `srcs`. This is commonly used to depend on Go sources in `cgo_library`. |
linkstamp |
String; optional; default is ""
The name of a package containing global variables set by the linker
as part of a link stamp. This may be used to embed version information
in the generated binary. The -X flags will be of the form
|
x_defs |
Dict of strings; optional
Additional -X flags to pass to the linker. Keys and values in this dict are passed as `-X key=value`. This can be used to set static information that doesn't change in each build. |
gc_goopts |
List of strings, optional
List of flags to add to the Go compilation command. Subject to Make variable substitution and Bourne shell tokenization. |
gc_linkopts |
List of strings, optional
List of flags to add to the Go link command. Subject to Make variable substitution and Bourne shell tokenization. |
go_test(name, srcs, deps, data, library, gc_goopts, gc_linkopts)
go_test
builds a set of tests that can be run with bazel test
. This can
contain sources for internal tests or external tests, but not both (see example
below).
You can run specific tests by passing the
--test_filter=pattern
argument to Bazel. You can pass arguments to tests by passing
--test_arg=arg
arguments to Bazel.
Attributes | |
---|---|
name |
Name, required
A unique name for this rule. |
srcs |
List of labels, required
List of Go |
deps |
List of labels, optional
List of other Go libraries to linked to this test target |
data |
List of labels, optional
List of files needed by this rule at runtime. |
library |
Label, optional
A label of another rule with Go `srcs`, `deps`, and `data`. When this library is compiled, the sources from this attribute will be combined with `srcs`. |
gc_goopts |
List of strings, optional
List of flags to add to the Go compilation command. Subject to Make variable substitution and Bourne shell tokenization. |
gc_linkopts |
List of strings, optional
List of flags to add to the Go link command. Subject to Make variable substitution and Bourne shell tokenization. |
To write an internal test, reference the library being tested with the library
attribute instead of the deps
attribute. This will compile the test sources
into the same package as the library sources.
go_library(
name = "go_default_library",
srcs = ["lib.go"],
)
go_test(
name = "go_default_test",
srcs = ["lib_test.go"],
library = ":go_default_library",
)
To write an external test, reference the library being tested with the deps
attribute.
go_library(
name = "go_default_library",
srcs = ["lib.go"],
)
go_test(
name = "go_default_xtest",
srcs = ["lib_x_test.go"],
deps = [":go_default_library"],
)
go_proto_library(name, srcs, deps, has_services)
Attributes | |
---|---|
name |
Name, required
A unique name for the underlying go_library rule. (usually `go_default_library`) |
srcs |
List of labels, required
List of Protocol Buffer |
deps |
List of labels, optional
List of other go_proto_library(s) to depend on. Note: this also works if the label is a go_library, and there is a filegroup {name}+"_protos" (which is used for golang protobuf) |
has_services |
integer, optional, defaults to 0
If 1, will generate with |
ignore_go_package_option |
integer, optional, defaults to 0
If 1, will ignore the go_package option in the srcs proto files. Note: this will not work if the go_package options are specified in more than one line. |