blob: 7fa13d5988380dc3f756e0ec556ef4107ef8db66 [file] [log] [blame]
Philipp Schrader37fdbb62021-12-18 00:30:37 -08001load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
2
3go_library(
4 name = "buildkite_gerrit_trigger_lib",
5 srcs = ["buildkite_gerrit_trigger.go"],
6 importpath = "github.com/frc971/971-Robot-Code/tools/ci",
7 target_compatible_with = ["@platforms//cpu:x86_64"],
8 visibility = ["//visibility:private"],
9 deps = ["@com_github_buildkite_go_buildkite//buildkite:go_default_library"],
10)
11
12go_binary(
13 name = "buildkite_gerrit_trigger",
14 embed = [":buildkite_gerrit_trigger_lib"],
15 target_compatible_with = ["@platforms//cpu:x86_64"],
16 visibility = ["//visibility:public"],
17)