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(
38
38
pkg_filegroup (
39
39
name = "extractor-pack-generic" ,
40
40
srcs = [
41
- ":dbscheme_files" ,
42
41
":manifest" ,
43
- "//swift/downgrades" ,
44
42
"//swift/tools" ,
45
- ],
43
+ ] + select ({
44
+ "@platforms//os:windows" : [],
45
+ "//conditions:default" : [
46
+ ":dbscheme_files" ,
47
+ "//swift/downgrades" ,
48
+ ],
49
+ }),
46
50
visibility = ["//visibility:public" ],
47
51
)
48
52
@@ -80,11 +84,14 @@ pkg_files(
80
84
81
85
pkg_filegroup (
82
86
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 ({
88
95
"@platforms//os:macos" : [
89
96
":xcode-autobuilder" ,
90
97
],
Original file line number Diff line number Diff line change @@ -19,8 +19,9 @@ sh_binary(
19
19
pkg_files (
20
20
name = "scripts" ,
21
21
srcs = [
22
- ":identify-environment " ,
22
+ "autobuild.cmd " ,
23
23
":autobuild" ,
24
+ ":identify-environment" ,
24
25
":qltest" ,
25
26
],
26
27
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