File tree Expand file tree Collapse file tree 3 files changed +18
-9
lines changed
Expand file tree Collapse file tree 3 files changed +18
-9
lines changed Original file line number Diff line number Diff line change @@ -38,11 +38,15 @@ pkg_files(
3838pkg_filegroup (
3939 name = "extractor-pack-generic" ,
4040 srcs = [
41- ":dbscheme_files" ,
4241 ":manifest" ,
43- "//swift/downgrades" ,
4442 "//swift/tools" ,
45- ],
43+ ] + select ({
44+ "@platforms//os:windows" : [],
45+ "//conditions:default" : [
46+ ":dbscheme_files" ,
47+ "//swift/downgrades" ,
48+ ],
49+ }),
4650 visibility = ["//visibility:public" ],
4751)
4852
@@ -80,11 +84,14 @@ pkg_files(
8084
8185pkg_filegroup (
8286 name = "extractor-pack-arch" ,
83- srcs = [
84- ":extractor" ,
85- ":swift-test-sdk-arch" ,
86- ":resource-dir-arch" ,
87- ] + select ({
87+ srcs = select ({
88+ "@platforms//os:windows" : [],
89+ "//conditions:default" : [
90+ ":extractor" ,
91+ ":resource-dir-arch" ,
92+ ":swift-test-sdk-arch" ,
93+ ],
94+ }) + select ({
8895 "@platforms//os:macos" : [
8996 ":xcode-autobuilder" ,
9097 ],
Original file line number Diff line number Diff line change @@ -19,8 +19,9 @@ sh_binary(
1919pkg_files (
2020 name = "scripts" ,
2121 srcs = [
22- ":identify-environment " ,
22+ "autobuild.cmd " ,
2323 ":autobuild" ,
24+ ":identify-environment" ,
2425 ":qltest" ,
2526 ],
2627 attributes = pkg_attributes (mode = "0755" ),
Original file line number Diff line number Diff line change 1+ " %CODEQL_EXTRACTOR_SWIFT_ROOT% /tools/%CODEQL_PLATFORM% /autobuilder-incompatible-os.exe"
You can’t perform that action at this time.
0 commit comments