1
0
Fork 0

WORKSPACE: bump rules_go

This fixes builds with new Bazel (--incompatible_require_ctx_in_configure_features)

Change-Id: I62498a121cd8c5bac8d4e942d6f13e2f733c438e
master
q3k 2019-07-13 16:16:34 +02:00
parent 4343e9289e
commit 1cace13396
1 changed files with 5 additions and 2 deletions

View File

@ -109,8 +109,11 @@ http_file(
http_archive(
name = "io_bazel_rules_go",
urls = ["https://github.com/bazelbuild/rules_go/releases/download/0.18.1/rules_go-0.18.1.tar.gz"],
sha256 = "77dfd303492f2634de7a660445ee2d3de2960cbd52f97d8c0dffa9362d3ddef9",
urls = [
"https://storage.googleapis.com/bazel-mirror/github.com/bazelbuild/rules_go/releases/download/0.18.7/rules_go-0.18.7.tar.gz",
"https://github.com/bazelbuild/rules_go/releases/download/0.18.7/rules_go-0.18.7.tar.gz",
],
sha256 = "45409e6c4f748baa9e05f8f6ab6efaa05739aa064e3ab94e5a1a09849c51806a",
)
load("@io_bazel_rules_go//go:deps.bzl", "go_rules_dependencies", "go_register_toolchains")