mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
1bdf410b52
* build: allow custom container registry * build: fix .bazeloverwriterc import
32 lines
572 B
Python
32 lines
572 B
Python
load("@bazeldnf//:def.bzl", "bazeldnf")
|
|
|
|
exports_files([
|
|
"WORKSPACE.bazel",
|
|
])
|
|
|
|
bazeldnf(name = "bazeldnf")
|
|
|
|
alias(
|
|
name = "tidy",
|
|
actual = "//bazel/ci:tidy",
|
|
)
|
|
|
|
alias(
|
|
name = "check",
|
|
actual = "//bazel/ci:check",
|
|
)
|
|
|
|
alias(
|
|
name = "generate",
|
|
actual = "//bazel/ci:generate",
|
|
)
|
|
|
|
alias(
|
|
name = "devbuild",
|
|
actual = "//bazel/release:build_and_push",
|
|
)
|
|
|
|
# These magic Gazelle commands need to be in the top-level BUILD file.
|
|
# gazelle:map_kind go_test go_test //bazel/go:go_test.bzl
|
|
# gazelle:prefix github.com/edgelesssys/constellation/v2
|