mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
8796edc9ad
This change enables bzlmod without migrating any dependencies. Instead, WORKSPACE dependencies can be migrated one by one.
28 lines
503 B
Python
28 lines
503 B
Python
exports_files([
|
|
"WORKSPACE.bzlmod",
|
|
])
|
|
|
|
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
|