Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(bazel): add MODULE.bazel files for bzlmod #152

Open
wants to merge 1 commit into
base: old-main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,5 @@ cscope.*
*~
.cproject
user.bazelrc
log*
log*
MODULE.bazel.lock
7 changes: 7 additions & 0 deletions MODULE.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module(name = "envoy_openssl", version = "0.0.0")

bazel_dep(
name = "rules_foreign_cc",
version = "0.10.1",
)
# -- bazel_dep definitions -- #
Empty file added WORKSPACE.bzlmod
Empty file.
7 changes: 7 additions & 0 deletions bssl-compat/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module(name = "bssl-compat", version = "0.0.0")

bazel_dep(
name = "rules_foreign_cc",
version = "0.10.1",
)
# -- bazel_dep definitions -- #
Empty file added bssl-compat/WORKSPACE.bzlmod
Empty file.
1 change: 1 addition & 0 deletions envoy/.bazelrc
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ test --test_verbose_timeout_warnings

# Allow tags to influence execution requirements
common --experimental_allow_tags_propagation
common --noenable_bzlmod

# Enable position independent code (this is the default on macOS and Windows)
# (Workaround for https://github.com/bazelbuild/rules_foreign_cc/issues/421)
Expand Down
Loading