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 1717 linux_pre_build_command : ./.github/scripts/linux_pre_build.sh
1818 linux_build_command : ' swift test --no-parallel'
1919 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
2025 windows_pre_build_command : ' Invoke-Program .\.github\scripts\windows_pre_build.ps1'
2126 windows_swift_versions : ' ["nightly-main"]'
2227 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 {
2626#endif
2727
2828#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 {
3131 case exit = 1
3232 case uncaughtSignal = 2
3333 }
You can’t perform that action at this time.
0 commit comments