File tree Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Expand file tree Collapse file tree 4 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -59,8 +59,8 @@ pkg_runfiles(
59
59
)
60
60
61
61
pkg_runfiles (
62
- name = "incompatible-os " ,
63
- srcs = ["//swift/tools/autobuilder- diagnostics:incompatible-os" ],
62
+ name = "diagnostics " ,
63
+ srcs = ["//swift/tools/diagnostics:autobuilder- incompatible-os" ],
64
64
prefix = "tools/" + codeql_platform ,
65
65
)
66
66
@@ -89,7 +89,7 @@ pkg_filegroup(
89
89
":xcode-autobuilder" ,
90
90
],
91
91
"//conditions:default" : [
92
- ":incompatible-os " ,
92
+ ":diagnostics " ,
93
93
],
94
94
}),
95
95
visibility = ["//visibility:public" ],
@@ -122,7 +122,7 @@ generate_cmake(
122
122
"//swift/extractor:extractor.real" ,
123
123
"//swift/logging/tests/assertion-diagnostics:assert-false" ,
124
124
] + select ({
125
- "@platforms//os:linux" : ["//swift/tools/autobuilder- diagnostics:incompatible-os" ],
125
+ "@platforms//os:linux" : ["//swift/tools/diagnostics:autobuilder- incompatible-os" ],
126
126
"@platforms//os:macos" : ["//swift/xcode-autobuilder" ],
127
127
}),
128
128
visibility = ["//visibility:public" ],
Original file line number Diff line number Diff line change 3
3
if [[ " $OSTYPE " == " darwin" * ]]; then
4
4
exec " ${CODEQL_EXTRACTOR_SWIFT_ROOT} /tools/${CODEQL_PLATFORM} /xcode-autobuilder"
5
5
else
6
- exec " ${CODEQL_EXTRACTOR_SWIFT_ROOT} /tools/${CODEQL_PLATFORM} /incompatible-os"
6
+ exec " ${CODEQL_EXTRACTOR_SWIFT_ROOT} /tools/${CODEQL_PLATFORM} /autobuilder- incompatible-os"
7
7
fi
File renamed without changes.
Original file line number Diff line number Diff line change 1
1
load ("//swift:rules.bzl" , "swift_cc_binary" )
2
2
3
3
swift_cc_binary (
4
- name = "incompatible-os" ,
5
- srcs = ["IncompatibleOs.cpp" ],
4
+ name = "autobuilder-incompatible-os" ,
5
+ srcs = ["AutobuilderIncompatibleOs.cpp" ],
6
+ # No restrictions (Windows allowed)
7
+ target_compatible_with = [],
6
8
visibility = ["//swift:__subpackages__" ],
7
9
deps = [
8
10
"//swift/logging" ,
9
11
],
10
- # No restrictions (Windows allowed)
11
- target_compatible_with = [],
12
12
)
You can’t perform that action at this time.
0 commit comments