summaryrefslogtreecommitdiff
path: root/WORKSPACE
diff options
context:
space:
mode:
authorRin Kuryloski <kuryloskip@vmware.com>2023-04-12 14:27:32 +0200
committerGitHub <noreply@github.com>2023-04-12 16:27:32 +0400
commitf09b31e8c509ccddd5c38a4f94c7ea7bdabe745c (patch)
treec5807b2c1a05af416e64905fb891cf39588ef4c2 /WORKSPACE
parent3c19348c581625d025ad8b53bd1f06a655947f1c (diff)
downloadrabbitmq-server-git-f09b31e8c509ccddd5c38a4f94c7ea7bdabe745c.tar.gz
Fetch all cli deps with bazel (#7875)
* Fetch all prod cli deps with bazel This avoids issues with hex and OTP 26, and is needed for offline bazel builds anyway * Fetch test cli deps with bazel * mix format
Diffstat (limited to 'WORKSPACE')
-rw-r--r--WORKSPACE9
1 files changed, 8 insertions, 1 deletions
diff --git a/WORKSPACE b/WORKSPACE
index f97ba75fc2..1206ad8ada 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -6,7 +6,7 @@ load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository", "new_git_r
git_repository(
name = "rules_erlang",
remote = "https://github.com/rabbitmq/rules_erlang.git",
- tag = "3.9.9",
+ tag = "3.9.11",
)
load("@rules_erlang//:internal_deps.bzl", "rules_erlang_internal_deps")
@@ -206,3 +206,10 @@ git_repository(
branch = "linux-rbe",
remote = "https://github.com/rabbitmq/rbe-erlang-platform.git",
)
+
+http_archive(
+ name = "hex",
+ strip_prefix = "hex-2.0.5",
+ urls = ["https://github.com/hexpm/hex/archive/refs/tags/v2.0.5.zip"],
+ build_file = "@rabbitmq-server//bazel:BUILD.hex",
+)