File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 17
17
linux_pre_build_command : ./.github/scripts/linux_pre_build.sh
18
18
linux_build_command : ' swift test --no-parallel'
19
19
linux_swift_versions : ' ["nightly-main", "nightly-6.2"]'
20
+ enable_macos_checks : true
21
+ macos_xcode_versions : ' ["16.3"]'
22
+ macos_build_command :
23
+ swift test --no-parallel && \
24
+ xcrun xcodebuild -workspace . -scheme SwiftBuild-Package -destination generic/platform=iOS
20
25
windows_pre_build_command : ' Invoke-Program .\.github\scripts\windows_pre_build.ps1'
21
26
windows_swift_versions : ' ["nightly-main"]'
22
27
windows_build_command : ' Invoke-Program swift test --no-parallel'
Original file line number Diff line number Diff line change @@ -26,8 +26,8 @@ extension ProcessInfo {
26
26
#endif
27
27
28
28
#if (!canImport(Foundation.NSTask) || targetEnvironment(macCatalyst)) && canImport(Darwin)
29
- public final class Process {
30
- public enum TerminationReason : Int {
29
+ public final class Process : @ unchecked Sendable {
30
+ public enum TerminationReason : Int , Sendable {
31
31
case exit = 1
32
32
case uncaughtSignal = 2
33
33
}
You can’t perform that action at this time.
0 commit comments