From 4d0c72eafecf586b0de4bc1c7ed7f59e260e0e9e Mon Sep 17 00:00:00 2001 From: Paolo Tranquilli Date: Wed, 25 Feb 2026 14:05:53 +0100 Subject: [PATCH] Bazel: add explicit `rules_shell` load --- swift/third_party/load.bzl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/swift/third_party/load.bzl b/swift/third_party/load.bzl index d19345a1880..f2ebfa74877 100644 --- a/swift/third_party/load.bzl +++ b/swift/third_party/load.bzl @@ -1,6 +1,7 @@ load("@bazel_skylib//rules:write_file.bzl", "write_file") load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive", "http_file") load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe") +load("@rules_shell//shell:sh_test.bzl", "sh_test") load("//misc/bazel:lfs.bzl", "lfs_archive", "lfs_files") _override = { @@ -117,7 +118,7 @@ def test_no_override(): content = test_body, is_executable = True, ) - native.sh_test( + sh_test( name = "test-no-override", srcs = [":test-no-override-gen"], tags = ["override"],