mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
Previously, we were using 8.0.0rc1. In particular, this upgrade means we need to explicitly import more rules, as they've been moved out of the core bazel repo.
23 lines
475 B
Python
23 lines
475 B
Python
load("@rules_shell//shell:sh_binary.bzl", "sh_binary")
|
|
load("//misc/bazel:pkg.bzl", "codeql_pkg_files")
|
|
|
|
sh_binary(
|
|
name = "qltest",
|
|
srcs = ["qltest.sh"],
|
|
visibility = ["//swift/tools/test/qltest:__pkg__"],
|
|
)
|
|
|
|
codeql_pkg_files(
|
|
name = "tools",
|
|
srcs = [
|
|
"autobuild.cmd",
|
|
"tracing-config.lua",
|
|
],
|
|
exes = [
|
|
"autobuild.sh",
|
|
"identify-environment.sh",
|
|
"qltest.sh",
|
|
],
|
|
visibility = ["//swift:__pkg__"],
|
|
)
|