-
Notifications
You must be signed in to change notification settings - Fork 357
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Publish rabbitmq/[email protected] (#1061)
Co-authored-by: Rin Kuryloski <[email protected]>
- Loading branch information
1 parent
be0069a
commit 75d8665
Showing
4 changed files
with
111 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
module( | ||
name = "rabbitmq_osiris", | ||
version = "1.7.0-rc.1", | ||
) | ||
|
||
bazel_dep( | ||
name = "rules_erlang", | ||
version = "3.11.4", | ||
) | ||
|
||
bazel_dep( | ||
name = "rabbitmq_seshat", | ||
version = "0.6.1", | ||
repo_name = "seshat", | ||
) | ||
|
||
erlang_config = use_extension( | ||
"@rules_erlang//bzlmod:extensions.bzl", | ||
"erlang_config", | ||
dev_dependency = True, | ||
) | ||
|
||
erlang_config.internal_erlang_from_github_release( | ||
name = "24", | ||
sha256 = "8444ff9abe23aea268adbb95463561fc222c965052d35d7c950b17be01c3ad82", | ||
version = "24.3.4.6", | ||
) | ||
|
||
erlang_config.internal_erlang_from_github_release( | ||
name = "25", | ||
sha256 = "42840c32e13a27bdb2c376d69aa22466513d441bfe5eb882de23baf8218308d3", | ||
version = "25.1.1", | ||
) | ||
|
||
erlang_config.internal_erlang_from_github_release( | ||
name = "26", | ||
sha256 = "3ff3c53d7ef9a45b5720e95b8756269c1a1b58eb51accc992ca97522fdb234d4", | ||
version = "26.0", | ||
) | ||
|
||
use_repo( | ||
erlang_config, | ||
"erlang_config", | ||
) | ||
|
||
erlang_package = use_extension( | ||
"@rules_erlang//bzlmod:extensions.bzl", | ||
"erlang_package", | ||
) | ||
|
||
erlang_package.hex_package( | ||
name = "gen_batch_server", | ||
sha256 = "c3e6a1a2a0fb62aee631a98cfa0fd8903e9562422cbf72043953e2fb1d203017", | ||
version = "0.8.8", | ||
) | ||
|
||
use_repo( | ||
erlang_package, | ||
"gen_batch_server", | ||
) | ||
|
||
erlang_dev_package = use_extension( | ||
"@rules_erlang//bzlmod:extensions.bzl", | ||
"erlang_package", | ||
dev_dependency = True, | ||
) | ||
|
||
erlang_dev_package.hex_package( | ||
name = "eunit_formatters", | ||
version = "0.5.0", | ||
build_file = "@rabbitmq_osiris//bzl:BUILD.eunit_formatters", | ||
) | ||
|
||
use_repo( | ||
erlang_dev_package, | ||
"eunit_formatters", | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
shell_commands: &shell_commands | ||
- curl -O https://raw.githubusercontent.com/kerl/kerl/master/kerl | ||
- chmod a+x kerl | ||
- ./kerl update releases | ||
- ./kerl build ${ERLANG_VERSION} | ||
- ./kerl install ${ERLANG_VERSION} ~/kerl/${ERLANG_VERSION} | ||
- realpath ~/kerl/${ERLANG_VERSION} | ||
|
||
platforms: | ||
macos: | ||
environment: | ||
ERLANG_VERSION: "25.0" | ||
ERLANG_HOME: /Users/buildkite/kerl/25.0 | ||
shell_commands: *shell_commands | ||
build_flags: | ||
- --incompatible_strict_action_env | ||
build_targets: | ||
- '@rabbitmq_osiris//:erlang_app' | ||
ubuntu2004: | ||
environment: | ||
ERLANG_VERSION: "25.0" | ||
ERLANG_HOME: /var/lib/buildkite-agent/kerl/25.0 | ||
shell_commands: *shell_commands | ||
build_flags: | ||
- --incompatible_strict_action_env | ||
build_targets: | ||
- '@rabbitmq_osiris//:erlang_app' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
"integrity": "sha256-9EElDOVJsR3XHAmKq9c35ClSVca+hxwBN7U/cVI5zn4=", | ||
"strip_prefix": "osiris-1.7.0-rc.1", | ||
"url": "https://github.com/rabbitmq/osiris/releases/download/v1.7.0-rc.1/osiris-1.7.0-rc.1.tar.gz" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,8 @@ | |
"1.6.6", | ||
"1.6.7", | ||
"1.6.8", | ||
"1.6.9" | ||
"1.6.9", | ||
"1.7.0-rc.1" | ||
], | ||
"yanked_versions": {} | ||
} |