Skip to content

Commit 5f57e82

Browse files
committed
Finish re-brand to aspect_rules_buildx
1 parent f910213 commit 5f57e82

File tree

9 files changed

+107
-34
lines changed

9 files changed

+107
-34
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ If you do nothing, eventually the newest commits will be released automatically
5151
This automation is defined in .github/workflows/tag.yaml.
5252

5353
Rather than wait for the cron event, you can trigger manually. Navigate to
54-
https://github.com/thesayyn/rules_buildx/actions/workflows/tag.yaml
54+
https://github.com/aspect-build/rules_buildx/actions/workflows/tag.yaml
5555
and press the "Run workflow" button.
5656

5757
If you need control over the next release version, for example when making a release candidate for a new major,

MODULE.bazel.lock

Lines changed: 43 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

buildx/private/buildx_build.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ def buildx(
6060
execution_requirements = execution_requirements,
6161
mnemonic = "BuildX",
6262
out_dirs = [name],
63-
tool = "@rules_buildx//buildx:resolved_toolchain",
63+
tool = "@aspect_rules_buildx//buildx:resolved_toolchain",
6464
tags = tags,
6565
visibility = visibility,
6666
)

buildx/private/toolchains_repo.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ toolchain(
6363
name = "{platform}_toolchain",
6464
exec_compatible_with = {compatible_with},
6565
toolchain = "@{user_repository_name}_{platform}//:buildx_toolchain",
66-
toolchain_type = "@rules_buildx//buildx:toolchain_type",
66+
toolchain_type = "@aspect_rules_buildx//buildx:toolchain_type",
6767
)
6868
""".format(
6969
platform = platform,

buildx/repositories.bzl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def _buildx_repo_impl(rctx):
2525
# QUICK HACK
2626
load("@buildx_configuration//:defs.bzl", "TARGET_COMPATIBLE_WITH")
2727
28-
load("@rules_buildx//buildx:toolchain.bzl", "buildx_toolchain")
28+
load("@aspect_rules_buildx//buildx:toolchain.bzl", "buildx_toolchain")
2929
3030
buildx_toolchain(
3131
name = "buildx_toolchain",

e2e/smoke/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1+
load("@aspect_rules_buildx//buildx:defs.bzl", "buildx", "context")
12
load("@bazel_skylib//rules:build_test.bzl", "build_test")
2-
load("@rules_buildx//buildx:defs.bzl", "buildx", "context")
33
load("@rules_oci//oci:defs.bzl", "oci_image", "oci_load")
44

55
buildx(

e2e/smoke/MODULE.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
module(name = "smoke")
44

5-
bazel_dep(name = "rules_buildx", version = "0.0.0")
5+
bazel_dep(name = "aspect_rules_buildx", version = "0.0.0")
66
local_path_override(
7-
module_name = "rules_buildx",
7+
module_name = "aspect_rules_buildx",
88
path = "../..",
99
)
1010

e2e/smoke/MODULE.bazel.lock

Lines changed: 54 additions & 19 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

e2e/smoke/WORKSPACE.bazel

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Override http_archive for local testing
22
local_repository(
3-
name = "rules_buildx",
3+
name = "aspect_rules_buildx",
44
path = "../..",
55
)
66

@@ -15,10 +15,10 @@ local_repository(
1515
# Alternatively, you can skip calling this function, so long as you've
1616
# already fetched all the dependencies.
1717

18-
load("@rules_buildx//buildx:dependencies.bzl", "rules_buildx_dependencies")
18+
load("@aspect_rules_buildx//buildx:dependencies.bzl", "rules_buildx_dependencies")
1919

2020
rules_buildx_dependencies()
2121

22-
load("@rules_buildx//buildx:repositories.bzl", "buildx_register_toolchains")
22+
load("@aspect_rules_buildx//buildx:repositories.bzl", "buildx_register_toolchains")
2323

2424
buildx_register_toolchains()

0 commit comments

Comments
 (0)