File tree 1 file changed +12
-11
lines changed
1 file changed +12
-11
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,12 @@ pkg_filegroup(
48
48
prefix = "tools/{CODEQL_PLATFORM}" ,
49
49
)
50
50
51
+ pkg_filegroup (
52
+ name = "tools" ,
53
+ srcs = ["//swift/tools" ],
54
+ prefix = "tools" ,
55
+ )
56
+
51
57
pkg_filegroup (
52
58
name = "extractor" ,
53
59
srcs = select_os (
@@ -67,15 +73,6 @@ codeql_pkg_files(
67
73
],
68
74
)
69
75
70
- pkg_filegroup (
71
- name = "common" ,
72
- srcs = [
73
- ":autobuilder" ,
74
- ":root-files" ,
75
- "//swift/downgrades" ,
76
- ],
77
- )
78
-
79
76
zip_map = {
80
77
"//swift/third_party/resources:dir" : "resource-dir/{CODEQL_PLATFORM}" ,
81
78
}
@@ -84,13 +81,17 @@ zip_map = {
84
81
codeql_pack (
85
82
name = "swift-linux-included" if linux_included else "swift" ,
86
83
srcs = [
87
- ":common" ,
84
+ ":autobuilder" ,
85
+ ":root-files" ,
86
+ ":tools" ,
87
+ "//swift/downgrades" ,
88
88
] + select_os (
89
89
linux = [":extractor" ] if linux_included else [],
90
90
macos = [":extractor" ],
91
91
windows = [],
92
92
),
93
93
installer_alias = "install-linux" if linux_included else "install-other" ,
94
+ pack_prefix = "swift" ,
94
95
zips = select_os (
95
96
linux = zip_map if linux_included else {},
96
97
macos = zip_map ,
@@ -105,7 +106,7 @@ zip_map = {
105
106
106
107
alias (
107
108
name = "create-extractor-pack" ,
108
- actual = ":swift-installer " ,
109
+ actual = ":install " ,
109
110
)
110
111
111
112
alias (
You can’t perform that action at this time.
0 commit comments