Files
codeql/swift/tools/BUILD.bazel
2022-10-21 12:54:09 +02:00

24 lines
413 B
Python

package(default_visibility = ["//visibility:public"])
load("@rules_pkg//:mappings.bzl", "pkg_attributes", "pkg_files")
sh_binary(
name = "qltest",
srcs = ["qltest.sh"],
)
sh_binary(
name = "autobuild",
srcs = ["autobuild.sh"],
)
pkg_files(
name = "tools",
srcs = [
":autobuild",
":qltest",
],
attributes = pkg_attributes(mode = "0755"),
prefix = "tools",
)