constellation/BUILD.bazel
Malte Poll a73cdb9b14
bazel: command to prepare development workspace (#1425)
This command symlinks all binaries into the current working directory (or the path specified by the first argument)

* bazel: command to prepare development workspace
* bazel: set malt3 as codeowner
2023-03-14 13:57:39 +01:00

27 lines
498 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 = "devbuild",
actual = "//bazel/devbuild:devbuild",
)
# 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