forked from kubernetes/release
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWORKSPACE
36 lines (26 loc) · 1.04 KB
/
WORKSPACE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# gazelle:repository_macro repos.bzl%go_repositories
workspace(name = "io_k8s_release")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_file")
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
################################################################################
# Go Build Definitions
################################################################################
git_repository(
name = "io_k8s_repo_infra",
commit = "28d05af9a236141616b47645af81c23c3437e118",
remote = "https://github.com/kubernetes/repo-infra.git",
shallow_since = "1575420778 -0800",
)
load("@io_k8s_repo_infra//:load.bzl", "repositories")
repositories()
load("@io_k8s_repo_infra//:repos.bzl", "configure")
configure()
load("//:repos.bzl", "go_repositories")
go_repositories()
http_file(
name = "jq",
downloaded_file_path = "jq",
executable = True,
sha256 = "af986793a515d500ab2d35f8d2aecd656e764504b789b66d7e1a0b727a124c44",
urls = ["https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64"],
)