mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
24 lines
413 B
Python
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",
|
|
)
|