mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
0ece41c146
* bazel-deps-mirror: upgrade command This command can be used to upgrade a dependency. Users are supposed to replace any upstream URLs and run the upgrade command. It replaces the expected hash and uploads the new dep to the mirror.
30 lines
875 B
Python
30 lines
875 B
Python
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
|
|
|
|
go_library(
|
|
name = "bazel-deps-mirror_lib",
|
|
srcs = [
|
|
"bazel-deps-mirror.go",
|
|
"check.go",
|
|
"fix.go",
|
|
"upgrade.go",
|
|
],
|
|
importpath = "github.com/edgelesssys/constellation/v2/hack/bazel-deps-mirror",
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
"//hack/bazel-deps-mirror/internal/bazelfiles",
|
|
"//hack/bazel-deps-mirror/internal/issues",
|
|
"//hack/bazel-deps-mirror/internal/mirror",
|
|
"//hack/bazel-deps-mirror/internal/rules",
|
|
"//internal/logger",
|
|
"@com_github_bazelbuild_buildtools//build",
|
|
"@com_github_spf13_cobra//:cobra",
|
|
"@org_uber_go_zap//zapcore",
|
|
],
|
|
)
|
|
|
|
go_binary(
|
|
name = "bazel-deps-mirror",
|
|
embed = [":bazel-deps-mirror_lib"],
|
|
visibility = ["//visibility:public"],
|
|
)
|