File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed
Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ load ("@rules_pkg//pkg:mappings.bzl" , "pkg_filegroup" , "pkg_files" )
2+ load ("//misc/bazel:pkg.bzl" , "codeql_pack" , "codeql_pkg_files" )
3+
4+ package (default_visibility = ["//visibility:public" ])
5+
6+ [
7+ codeql_pack (
8+ name = "-" .join (parts ),
9+ srcs = [
10+ "//actions/extractor" ,
11+ ],
12+ pack_prefix = "/" .join (parts ),
13+ )
14+ for parts in (
15+ [
16+ "experimental" ,
17+ "actions" ,
18+ ],
19+ ["actions" ],
20+ )
21+ ]
Original file line number Diff line number Diff line change 1+ load ("//misc/bazel:pkg.bzl" , "codeql_pkg_files" , "strip_prefix" )
2+
3+ codeql_pkg_files (
4+ name = "extractor" ,
5+ srcs = [
6+ "codeql-extractor.yml" ,
7+ ] + glob (["tools/**" ]),
8+ strip_prefix = strip_prefix .from_pkg (),
9+ visibility = ["//actions:__pkg__" ],
10+ )
You can’t perform that action at this time.
0 commit comments