diff --git a/platforms/BUILD.bazel b/.aspect/workflows/BUILD.bazel similarity index 100% rename from platforms/BUILD.bazel rename to .aspect/workflows/BUILD.bazel diff --git a/.aspect/workflows/bazelrc b/.aspect/workflows/bazelrc index 33fb1ce49..f72a81bf1 100644 --- a/.aspect/workflows/bazelrc +++ b/.aspect/workflows/bazelrc @@ -3,8 +3,8 @@ common --remote_download_outputs=minimal common --nobuild_runfile_links # remote execution -common:rbe --extra_execution_platforms=//bazel/platforms:x86_64_linux_remote -common:rbe --host_platform=//bazel/platforms:x86_64_linux_remote +common:rbe --extra_execution_platforms=@aspect_rules_js//.aspect/workflows:x86_64_linux_remote +common:rbe --host_platform=@aspect_rules_js//.aspect/workflows:x86_64_linux_remote common:rbe --remote_executor=unix:///mnt/ephemeral/buildbarn/.cache/bb_clientd/grpc common:rbe --genrule_strategy=remote,local common:rbe --jobs=32 diff --git a/.aspect/workflows/config.yaml b/.aspect/workflows/config.yaml index 230c3cb79..a9c03637a 100644 --- a/.aspect/workflows/config.yaml +++ b/.aspect/workflows/config.yaml @@ -5,11 +5,17 @@ workspaces: label: rules_js tasks: - test: + bazel: + flags: + - --config=rbe e2e/bzlmod: icon: bazel tasks: - test: queue: aspect-medium + bazel: + flags: + - --config=rbe - format: without: true - buildifier: @@ -19,6 +25,9 @@ workspaces: tasks: - test: queue: aspect-medium + bazel: + flags: + - --config=rbe - format: without: true - buildifier: @@ -31,6 +40,9 @@ workspaces: tasks: - test: queue: aspect-medium + bazel: + flags: + - --config=rbe - format: without: true - buildifier: @@ -60,6 +72,9 @@ workspaces: tasks: - test: queue: aspect-medium + bazel: + flags: + - --config=rbe - format: without: true - buildifier: @@ -69,6 +84,9 @@ workspaces: tasks: - test: queue: aspect-medium + bazel: + flags: + - --config=rbe - format: without: true - buildifier: @@ -78,6 +96,9 @@ workspaces: tasks: - test: queue: aspect-medium + bazel: + flags: + - --config=rbe - format: without: true - buildifier: @@ -145,6 +166,9 @@ workspaces: tasks: - test: queue: aspect-medium + bazel: + flags: + - --config=rbe - format: without: true - buildifier: @@ -154,6 +178,9 @@ workspaces: tasks: - test: queue: aspect-medium + bazel: + flags: + - --config=rbe - format: without: true - buildifier: @@ -163,6 +190,9 @@ workspaces: tasks: - test: queue: aspect-medium + bazel: + flags: + - --config=rbe - format: without: true - buildifier: @@ -181,6 +211,9 @@ workspaces: tasks: - test: queue: aspect-medium + bazel: + flags: + - --config=rbe - format: without: true - buildifier: @@ -190,6 +223,9 @@ workspaces: tasks: - test: queue: aspect-medium + bazel: + flags: + - --config=rbe - format: without: true - buildifier: diff --git a/MODULE.bazel b/MODULE.bazel index 4318201b3..3e28b263f 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -191,6 +191,7 @@ npm.npm_translate_lock( "puppeteer": [ "no-sandbox", "requires-network", + "no-remote", ], }, npmrc = "//:.npmrc", diff --git a/bazel/platforms/BUILD.bazel b/bazel/platforms/BUILD.bazel deleted file mode 100644 index df58fbd90..000000000 --- a/bazel/platforms/BUILD.bazel +++ /dev/null @@ -1,12 +0,0 @@ -platform( - name = "x86_64_linux_remote", - constraint_values = [ - "@platforms//os:linux", - "@platforms//cpu:x86_64", - ], - exec_properties = { - "OSFamily": "Linux", - "container-image": "docker://ghcr.io/catthehacker/ubuntu:act-22.04@sha256:5f9c35c25db1d51a8ddaae5c0ba8d3c163c5e9a4a6cc97acd409ac7eae239448", - }, - visibility = ["//visibility:public"], -)