mirror of
https://github.com/github/codeql.git
synced 2026-04-12 10:34:02 +02:00
Upgrade from 2.2.0-codeql.1 to 2.2.2-codeql.1 which includes: - Fix Windows bzlmod builder classpath issue - Move to official bazel worker api This eliminates the need for --legacy_external_runfiles on Windows. Also fix codegen templates to be included in runfiles.
27 lines
414 B
Python
27 lines
414 B
Python
package(default_visibility = ["//misc/codegen:__subpackages__"])
|
|
|
|
filegroup(
|
|
name = "dbscheme",
|
|
srcs = ["dbscheme.mustache"],
|
|
)
|
|
|
|
filegroup(
|
|
name = "trap",
|
|
srcs = glob(["trap_*.mustache"]),
|
|
)
|
|
|
|
filegroup(
|
|
name = "cpp",
|
|
srcs = glob(["cpp_*.mustache"]),
|
|
)
|
|
|
|
filegroup(
|
|
name = "ql",
|
|
srcs = glob(["ql_*.mustache"]),
|
|
)
|
|
|
|
filegroup(
|
|
name = "rust",
|
|
srcs = glob(["rust_*.mustache"]),
|
|
)
|