Use rules_erlang 3.8.5
This commit is contained in:
parent
e5839053a9
commit
e799daa24e
3
.bazelrc
3
.bazelrc
|
@ -23,6 +23,9 @@ build:buildbuddy --noslim_profile
|
||||||
build:buildbuddy --experimental_profile_include_target_label
|
build:buildbuddy --experimental_profile_include_target_label
|
||||||
build:buildbuddy --experimental_profile_include_primary_output
|
build:buildbuddy --experimental_profile_include_primary_output
|
||||||
|
|
||||||
|
# buildbuddy implies remote cache, so ct_logdir is restored to its default for reproducibility
|
||||||
|
build:buildbuddy --@rules_erlang//:ct_logdir=
|
||||||
|
|
||||||
build:rbe --config=buildbuddy
|
build:rbe --config=buildbuddy
|
||||||
|
|
||||||
build:rbe --remote_executor=grpcs://remote.buildbuddy.io
|
build:rbe --remote_executor=grpcs://remote.buildbuddy.io
|
||||||
|
|
|
@ -70,6 +70,8 @@ rebar3.crashdump
|
||||||
*.plt
|
*.plt
|
||||||
*.lock
|
*.lock
|
||||||
|
|
||||||
|
/logs/
|
||||||
|
|
||||||
/topic-branch-scratch/
|
/topic-branch-scratch/
|
||||||
|
|
||||||
PACKAGES/
|
PACKAGES/
|
||||||
|
|
|
@ -7,25 +7,21 @@ bazel_dep(
|
||||||
name = "rules_pkg",
|
name = "rules_pkg",
|
||||||
version = "0.5.1",
|
version = "0.5.1",
|
||||||
)
|
)
|
||||||
|
|
||||||
bazel_dep(
|
bazel_dep(
|
||||||
name = "bazel_skylib",
|
name = "bazel_skylib",
|
||||||
version = "1.2.0",
|
version = "1.2.0",
|
||||||
)
|
)
|
||||||
|
|
||||||
bazel_dep(
|
bazel_dep(
|
||||||
name = "platforms",
|
name = "platforms",
|
||||||
version = "0.0.5",
|
version = "0.0.5",
|
||||||
)
|
)
|
||||||
|
|
||||||
bazel_dep(
|
bazel_dep(
|
||||||
name = "rules_cc",
|
name = "rules_cc",
|
||||||
version = "0.0.2",
|
version = "0.0.2",
|
||||||
)
|
)
|
||||||
|
|
||||||
bazel_dep(
|
bazel_dep(
|
||||||
name = "rules_erlang",
|
name = "rules_erlang",
|
||||||
version = "3.8.4",
|
version = "3.8.5",
|
||||||
)
|
)
|
||||||
|
|
||||||
erlang_config = use_extension(
|
erlang_config = use_extension(
|
||||||
|
|
|
@ -119,7 +119,7 @@ git_repository(
|
||||||
git_repository(
|
git_repository(
|
||||||
name = "rules_erlang",
|
name = "rules_erlang",
|
||||||
remote = "https://github.com/rabbitmq/rules_erlang.git",
|
remote = "https://github.com/rabbitmq/rules_erlang.git",
|
||||||
tag = "3.8.4",
|
tag = "3.8.5",
|
||||||
)
|
)
|
||||||
|
|
||||||
load(
|
load(
|
||||||
|
|
|
@ -11,4 +11,7 @@ build:buildbuddy --experimental_strict_action_env
|
||||||
# don't re-run flakes automatically on the local machine
|
# don't re-run flakes automatically on the local machine
|
||||||
build --flaky_test_attempts=1
|
build --flaky_test_attempts=1
|
||||||
|
|
||||||
|
# write common test logs to logs/ dir
|
||||||
|
build --@rules_erlang//:ct_logdir=/absolute/expanded/path/to/this/repo/logs
|
||||||
|
|
||||||
build:buildbuddy --remote_header=x-buildbuddy-api-key=YOUR_API_KEY
|
build:buildbuddy --remote_header=x-buildbuddy-api-key=YOUR_API_KEY
|
||||||
|
|
Loading…
Reference in New Issue