2016-03-03 15:52:56 -08:00
2016-03-02 01:00:40 -08:00
2016-03-03 10:32:09 -08:00
2016-03-02 01:00:40 -08:00
2016-03-03 10:32:09 -08:00
2016-03-03 10:32:09 -08:00
2016-03-03 10:32:09 -08:00
2016-03-03 11:12:25 -08:00

bazel-example-golang

An example project demonstrating bazel build rules for go with a local binary (go_binary) and a local library (go_library).

This requires bazel release > bazel-0.20.

$ git clone https://github.com/laramiel/bazel-example-golang.git
$ cd bazel-example-golang

$ bazel run :hello

$ bazel run :local
$ bazel run :remote
$ bazel run :bare

$ git submodule update --init --recursive
$ bazel run //submodule:bare
$ bazel run //submodule:remote

Explanation

This repository works in conjunction with other git repositories to provide a demonstration of Bazel BUILD rules for golang.

Each of the remote repositories is linked into go_binary() targets in several ways:

  1. Using the WORKSPACE file to define git_repository() rules. This accounts for the :remote and :bare targets.

  2. Using git submodules to import the repository source, and using those paths. This accounts for the //submodule:bare and //submodule:remote targets.

Description
No description provided
Readme 1.2 MiB
Languages
Starlark 53.8%
Go 46.2%