Skip to content

Commit fb3add5

Browse files
feat(toolchain_utils): add 1.0.0-beta.4 (#1685)
Fixes `export.symlink` to work with multiple identical exports. [Release notes](https://gitlab.arm.com/bazel/toolchain_utils/-/releases/v1.0.0-beta.4)
1 parent b429987 commit fb3add5

File tree

4 files changed

+56
-1
lines changed

4 files changed

+56
-1
lines changed

Diff for: modules/toolchain_utils/1.0.0-beta.4/MODULE.bazel

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
module(
2+
name = "toolchain_utils",
3+
version = "1.0.0-beta.4",
4+
bazel_compatibility = [
5+
">=7.0.0",
6+
],
7+
compatibility_level = 1,
8+
)
9+
10+
bazel_dep(name = "bazel_skylib", version = "1.4.2")
11+
bazel_dep(name = "platforms", version = "0.0.7")
12+
13+
triplet = use_repo_rule("//toolchain/local/triplet:defs.bzl", "toolchain_local_triplet")
14+
15+
triplet(
16+
name = "local",
17+
)
18+
19+
launcher = use_repo_rule("//toolchain/launcher:repository.bzl", "launcher")
20+
21+
launcher(
22+
name = "launcher",
23+
)

Diff for: modules/toolchain_utils/1.0.0-beta.4/presubmit.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
bcr_test_module:
2+
module_path: e2e
3+
matrix:
4+
bazel:
5+
- 7.x
6+
platform:
7+
- centos7_java11_devtoolset10
8+
- debian10
9+
- debian11
10+
- ubuntu2004
11+
- ubuntu2004_arm64
12+
- ubuntu2204
13+
- fedora39
14+
- macos
15+
# TODO: enable this once `@ape` gets Apple Silicon support as `rules_diff` uses `@ape//:diff`
16+
# https://gitlab.arm.com/bazel/ape/-/issues/1
17+
# - macos_arm64
18+
# TODO: enable this once the runner has had a certificate refresh
19+
# - windows
20+
tasks:
21+
run_tests:
22+
name: Run end-to-end Tests
23+
bazel: ${{ bazel }}
24+
platform: ${{ platform }}
25+
test_targets:
26+
- "//..."

Diff for: modules/toolchain_utils/1.0.0-beta.4/source.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"url": "https://gitlab.arm.com/bazel/toolchain_utils/-/releases/v1.0.0-beta.4/downloads/src.tar.gz",
3+
"integrity": "sha512-GVDim8MC4/zegiD97LbDE2R4nYzsr1gjbx5KJG0VNNe27fEm00gv9o7x7fjxj42g//RU8yDqAOUuOmhuxvF+Kw==",
4+
"strip_prefix": "toolchain_utils-v1.0.0-beta.4"
5+
}

Diff for: modules/toolchain_utils/metadata.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"1.0.0-alpha.16",
88
"1.0.0-beta.1",
99
"1.0.0-beta.2",
10-
"1.0.0-beta.3"
10+
"1.0.0-beta.3",
11+
"1.0.0-beta.4"
1112
],
1213
"maintainers": [
1314
{

0 commit comments

Comments
 (0)