summaryrefslogtreecommitdiffhomepage
path: root/tools/issue_reviver
diff options
context:
space:
mode:
authorAdin Scannell <ascannell@google.com>2020-08-25 12:16:31 -0700
committergVisor bot <gvisor-bot@google.com>2020-08-25 12:18:25 -0700
commitb0c53f8475d14606ef82aeddfb2f742269c1b5b7 (patch)
tree758f77d07ea16b97cf1b81729fae0577b87c9f08 /tools/issue_reviver
parentb83758cd875be8fea521c6bb51b4ba6b41a690a9 (diff)
Add nogo support to go_binary and go_test targets.
Updates #3374 PiperOrigin-RevId: 328378700
Diffstat (limited to 'tools/issue_reviver')
-rw-r--r--tools/issue_reviver/BUILD1
-rw-r--r--tools/issue_reviver/github/BUILD1
2 files changed, 2 insertions, 0 deletions
diff --git a/tools/issue_reviver/BUILD b/tools/issue_reviver/BUILD
index 4ef1a3124..35b0111ca 100644
--- a/tools/issue_reviver/BUILD
+++ b/tools/issue_reviver/BUILD
@@ -5,6 +5,7 @@ package(licenses = ["notice"])
go_binary(
name = "issue_reviver",
srcs = ["main.go"],
+ nogo = False,
deps = [
"//tools/issue_reviver/github",
"//tools/issue_reviver/reviver",
diff --git a/tools/issue_reviver/github/BUILD b/tools/issue_reviver/github/BUILD
index 0eabc2835..555abd296 100644
--- a/tools/issue_reviver/github/BUILD
+++ b/tools/issue_reviver/github/BUILD
@@ -21,4 +21,5 @@ go_test(
size = "small",
srcs = ["github_test.go"],
library = ":github",
+ nogo = False,
)