This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build Connectivity with Swift 6.0 for macOS (SPM).

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/rwbutler/Connectivity.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/rwbutler/Connectivity
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at ac5a98a Bumped to v7.0.0 to avoid breaking changes
Cloned https://github.com/rwbutler/Connectivity.git
Revision (git rev-parse @):
ac5a98af6564f6000f01e9c4cf0b89c7e8282513
SUCCESS checkout https://github.com/rwbutler/Connectivity.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/rwbutler/Connectivity.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/3] Write sources
[1/3] Write swift-version-6F35C1178C84523A.txt
[2/3] Compiling Reachability Reachability.m
[4/21] Compiling Connectivity ConnectivityResponseContainsStringValidator.swift
[5/21] Compiling Connectivity ConnectivityResponseRegExValidator.swift
[6/22] Compiling Connectivity ConnectivityResponseStringEqualityValidator.swift
[7/22] Compiling Connectivity ConnectivityResponseValidationMode.swift
[8/22] Compiling Connectivity ConnectivityResponseValidator.swift
[9/22] Compiling Connectivity ConnectivityPercentage.swift
[10/22] Compiling Connectivity ConnectivityStatus.swift
[11/22] Compiling Connectivity Factory.swift
[12/22] Compiling Connectivity ResponseValidatorFactory.swift
[13/22] Compiling Connectivity ConnectivityFramework.swift
[14/22] Compiling Connectivity ConnectivityInterface.swift
[15/22] Compiling Connectivity ConnectivityResponseStringValidator.swift
error: emit-module command failed due to signal 11 (use -v to see invocation)
[16/22] Compiling Connectivity Connectivity.swift
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Connectivity.swift:97:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 95 |
 96 |     /// Queue to callback on
 97 |     private (set) var externalQueue = DispatchQueue.main
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 98 |
 99 |     /// Whether or not to use System Configuration or Network (on iOS 12+) framework.
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Connectivity.swift:103:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
101 |
102 |     /// Used to for checks using NWPathMonitor
103 |     private (set) var internalQueue = DispatchQueue.global(qos: .default)
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
104 |
105 |     /// Whether or not we are currently deemed to have connectivity
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Connectivity.swift:109:23: warning: static property 'isHTTPSOnly' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
107 |
108 |     /// Whether or not only HTTPS URLs should be used to check connectivity
109 |     public static var isHTTPSOnly: Bool = true {
    |                       |- warning: static property 'isHTTPSOnly' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'isHTTPSOnly' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'isHTTPSOnly' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 |         didSet {
111 |             // Only set true if `allow arbitrary loads` is set
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Connectivity.swift:174:23: warning: static property 'urlSessionConfiguration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
172 |
173 |     /// URL session configuration ignoring cache
174 |     public static var urlSessionConfiguration: URLSessionConfiguration = defaultURLSessionConfiguration()
    |                       |- warning: static property 'urlSessionConfiguration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'urlSessionConfiguration' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'urlSessionConfiguration' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
175 |
176 |     /// URL session used to check connectivity
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Connectivity.swift:246:13: warning: capture of 'self' with non-sendable type 'Connectivity?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 17 |
 18 | @objcMembers
 19 | public class Connectivity: NSObject {
    |              `- note: class 'Connectivity' does not conform to the 'Sendable' protocol
 20 |     public typealias Framework = ConnectivityFramework
 21 |     public typealias Interface = ConnectivityInterface
    :
244 |         : DispatchTime.now()
245 |         internalQueue.asyncAfter(deadline: deadline) { [weak self] in
246 |             self?.checkConnectivityOnInternalQueue(completion: completion)
    |             `- warning: capture of 'self' with non-sendable type 'Connectivity?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
247 |         }
248 |     }
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Connectivity.swift:246:64: warning: capture of 'completion' with non-sendable type '((Connectivity) -> Void)?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
244 |         : DispatchTime.now()
245 |         internalQueue.asyncAfter(deadline: deadline) { [weak self] in
246 |             self?.checkConnectivityOnInternalQueue(completion: completion)
    |                                                                |- warning: capture of 'completion' with non-sendable type '((Connectivity) -> Void)?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                                                                `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
247 |         }
248 |     }
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Connectivity.swift:271:13: warning: capture of 'self' with non-sendable type 'Connectivity?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 17 |
 18 | @objcMembers
 19 | public class Connectivity: NSObject {
    |              `- note: class 'Connectivity' does not conform to the 'Sendable' protocol
 20 |     public typealias Framework = ConnectivityFramework
 21 |     public typealias Interface = ConnectivityInterface
    :
269 |         pathMonitor = monitor
270 |         monitor.pathUpdateHandler = { [weak self] _ in
271 |             self?.checkConnectivity()
    |             `- warning: capture of 'self' with non-sendable type 'Connectivity?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
272 |         }
273 |         monitor.start(queue: internalQueue)
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Connectivity.swift:395:77: warning: converting non-sendable function value to '@Sendable (Data?, URLResponse?, (any Error)?) -> Void' may introduce data races
393 |         tasks = connectivityURLRequests.map { request in
394 |             let urlRequest = authorizedURLRequest(with: request) ?? request
395 |             return urlSession.dataTask(with: urlRequest, completionHandler: completionHandlerForURLRequest(request))
    |                                                                             `- warning: converting non-sendable function value to '@Sendable (Data?, URLResponse?, (any Error)?) -> Void' may introduce data races
396 |         }
397 |
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:13:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 11 |
 12 | @objc public class ConnectivityConfiguration: NSObject {
 13 |     private (set) var authorizationHeader: String?
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 14 |     private (set) var bearerToken: String?
 15 |     let callbackQueue: DispatchQueue
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:14:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 12 | @objc public class ConnectivityConfiguration: NSObject {
 13 |     private (set) var authorizationHeader: String?
 14 |     private (set) var bearerToken: String?
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 15 |     let callbackQueue: DispatchQueue
 16 |     private (set) var checkWhenApplicationDidBecomeActive: Bool = true
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:16:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 14 |     private (set) var bearerToken: String?
 15 |     let callbackQueue: DispatchQueue
 16 |     private (set) var checkWhenApplicationDidBecomeActive: Bool = true
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 17 |     let connectivityQueue: DispatchQueue
 18 |     private (set) var connectivityURLRequests: [URLRequest]
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:18:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 16 |     private (set) var checkWhenApplicationDidBecomeActive: Bool = true
 17 |     let connectivityQueue: DispatchQueue
 18 |     private (set) var connectivityURLRequests: [URLRequest]
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 19 |     public static let defaultConnectivityURLRequests = [
 20 |         URL(string: "https://www.apple.com/library/test/success.html"),
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:37:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |         return sessionConfiguration
 36 |     }()
 37 |     private (set) var framework: Connectivity.Framework = .network
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 38 |     private (set) var pollingInterval: Double
 39 |     private (set) var pollingIsEnabled: Bool
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:38:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 36 |     }()
 37 |     private (set) var framework: Connectivity.Framework = .network
 38 |     private (set) var pollingInterval: Double
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     private (set) var pollingIsEnabled: Bool
 40 |     private (set) var pollWhileOfflineOnly: Bool
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:39:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 37 |     private (set) var framework: Connectivity.Framework = .network
 38 |     private (set) var pollingInterval: Double
 39 |     private (set) var pollingIsEnabled: Bool
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 40 |     private (set) var pollWhileOfflineOnly: Bool
 41 |     private (set) var responseValidator: ResponseValidator
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:40:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 38 |     private (set) var pollingInterval: Double
 39 |     private (set) var pollingIsEnabled: Bool
 40 |     private (set) var pollWhileOfflineOnly: Bool
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 41 |     private (set) var responseValidator: ResponseValidator
 42 |
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:41:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     private (set) var pollingIsEnabled: Bool
 40 |     private (set) var pollWhileOfflineOnly: Bool
 41 |     private (set) var responseValidator: ResponseValidator
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |
 43 |     /// % successful connections required to be deemed to have connectivity
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:45:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |     /// % successful connections required to be deemed to have connectivity
 44 |     let successThreshold: Connectivity.Percentage
 45 |     private (set) var urlSessionConfiguration: URLSessionConfiguration
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |     private (set) var validationMode: Connectivity.ValidationMode?
 47 |
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:46:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 44 |     let successThreshold: Connectivity.Percentage
 45 |     private (set) var urlSessionConfiguration: URLSessionConfiguration
 46 |     private (set) var validationMode: Connectivity.ValidationMode?
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 47 |
 48 |     public init(
[17/22] Compiling Connectivity NotificationNameAdditions.swift
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Connectivity.swift:97:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 95 |
 96 |     /// Queue to callback on
 97 |     private (set) var externalQueue = DispatchQueue.main
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 98 |
 99 |     /// Whether or not to use System Configuration or Network (on iOS 12+) framework.
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Connectivity.swift:103:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
101 |
102 |     /// Used to for checks using NWPathMonitor
103 |     private (set) var internalQueue = DispatchQueue.global(qos: .default)
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
104 |
105 |     /// Whether or not we are currently deemed to have connectivity
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Connectivity.swift:109:23: warning: static property 'isHTTPSOnly' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
107 |
108 |     /// Whether or not only HTTPS URLs should be used to check connectivity
109 |     public static var isHTTPSOnly: Bool = true {
    |                       |- warning: static property 'isHTTPSOnly' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'isHTTPSOnly' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'isHTTPSOnly' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 |         didSet {
111 |             // Only set true if `allow arbitrary loads` is set
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Connectivity.swift:174:23: warning: static property 'urlSessionConfiguration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
172 |
173 |     /// URL session configuration ignoring cache
174 |     public static var urlSessionConfiguration: URLSessionConfiguration = defaultURLSessionConfiguration()
    |                       |- warning: static property 'urlSessionConfiguration' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'urlSessionConfiguration' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'urlSessionConfiguration' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
175 |
176 |     /// URL session used to check connectivity
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Connectivity.swift:246:13: warning: capture of 'self' with non-sendable type 'Connectivity?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 17 |
 18 | @objcMembers
 19 | public class Connectivity: NSObject {
    |              `- note: class 'Connectivity' does not conform to the 'Sendable' protocol
 20 |     public typealias Framework = ConnectivityFramework
 21 |     public typealias Interface = ConnectivityInterface
    :
244 |         : DispatchTime.now()
245 |         internalQueue.asyncAfter(deadline: deadline) { [weak self] in
246 |             self?.checkConnectivityOnInternalQueue(completion: completion)
    |             `- warning: capture of 'self' with non-sendable type 'Connectivity?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
247 |         }
248 |     }
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Connectivity.swift:246:64: warning: capture of 'completion' with non-sendable type '((Connectivity) -> Void)?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
244 |         : DispatchTime.now()
245 |         internalQueue.asyncAfter(deadline: deadline) { [weak self] in
246 |             self?.checkConnectivityOnInternalQueue(completion: completion)
    |                                                                |- warning: capture of 'completion' with non-sendable type '((Connectivity) -> Void)?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
    |                                                                `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
247 |         }
248 |     }
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Connectivity.swift:271:13: warning: capture of 'self' with non-sendable type 'Connectivity?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
 17 |
 18 | @objcMembers
 19 | public class Connectivity: NSObject {
    |              `- note: class 'Connectivity' does not conform to the 'Sendable' protocol
 20 |     public typealias Framework = ConnectivityFramework
 21 |     public typealias Interface = ConnectivityInterface
    :
269 |         pathMonitor = monitor
270 |         monitor.pathUpdateHandler = { [weak self] _ in
271 |             self?.checkConnectivity()
    |             `- warning: capture of 'self' with non-sendable type 'Connectivity?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
272 |         }
273 |         monitor.start(queue: internalQueue)
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Connectivity.swift:395:77: warning: converting non-sendable function value to '@Sendable (Data?, URLResponse?, (any Error)?) -> Void' may introduce data races
393 |         tasks = connectivityURLRequests.map { request in
394 |             let urlRequest = authorizedURLRequest(with: request) ?? request
395 |             return urlSession.dataTask(with: urlRequest, completionHandler: completionHandlerForURLRequest(request))
    |                                                                             `- warning: converting non-sendable function value to '@Sendable (Data?, URLResponse?, (any Error)?) -> Void' may introduce data races
396 |         }
397 |
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:13:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 11 |
 12 | @objc public class ConnectivityConfiguration: NSObject {
 13 |     private (set) var authorizationHeader: String?
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 14 |     private (set) var bearerToken: String?
 15 |     let callbackQueue: DispatchQueue
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:14:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 12 | @objc public class ConnectivityConfiguration: NSObject {
 13 |     private (set) var authorizationHeader: String?
 14 |     private (set) var bearerToken: String?
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 15 |     let callbackQueue: DispatchQueue
 16 |     private (set) var checkWhenApplicationDidBecomeActive: Bool = true
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:16:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 14 |     private (set) var bearerToken: String?
 15 |     let callbackQueue: DispatchQueue
 16 |     private (set) var checkWhenApplicationDidBecomeActive: Bool = true
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 17 |     let connectivityQueue: DispatchQueue
 18 |     private (set) var connectivityURLRequests: [URLRequest]
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:18:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 16 |     private (set) var checkWhenApplicationDidBecomeActive: Bool = true
 17 |     let connectivityQueue: DispatchQueue
 18 |     private (set) var connectivityURLRequests: [URLRequest]
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 19 |     public static let defaultConnectivityURLRequests = [
 20 |         URL(string: "https://www.apple.com/library/test/success.html"),
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:37:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |         return sessionConfiguration
 36 |     }()
 37 |     private (set) var framework: Connectivity.Framework = .network
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 38 |     private (set) var pollingInterval: Double
 39 |     private (set) var pollingIsEnabled: Bool
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:38:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 36 |     }()
 37 |     private (set) var framework: Connectivity.Framework = .network
 38 |     private (set) var pollingInterval: Double
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     private (set) var pollingIsEnabled: Bool
 40 |     private (set) var pollWhileOfflineOnly: Bool
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:39:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 37 |     private (set) var framework: Connectivity.Framework = .network
 38 |     private (set) var pollingInterval: Double
 39 |     private (set) var pollingIsEnabled: Bool
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 40 |     private (set) var pollWhileOfflineOnly: Bool
 41 |     private (set) var responseValidator: ResponseValidator
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:40:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 38 |     private (set) var pollingInterval: Double
 39 |     private (set) var pollingIsEnabled: Bool
 40 |     private (set) var pollWhileOfflineOnly: Bool
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 41 |     private (set) var responseValidator: ResponseValidator
 42 |
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:41:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     private (set) var pollingIsEnabled: Bool
 40 |     private (set) var pollWhileOfflineOnly: Bool
 41 |     private (set) var responseValidator: ResponseValidator
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |
 43 |     /// % successful connections required to be deemed to have connectivity
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:45:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |     /// % successful connections required to be deemed to have connectivity
 44 |     let successThreshold: Connectivity.Percentage
 45 |     private (set) var urlSessionConfiguration: URLSessionConfiguration
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |     private (set) var validationMode: Connectivity.ValidationMode?
 47 |
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:46:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 44 |     let successThreshold: Connectivity.Percentage
 45 |     private (set) var urlSessionConfiguration: URLSessionConfiguration
 46 |     private (set) var validationMode: Connectivity.ValidationMode?
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 47 |
 48 |     public init(
error: compile command failed due to signal 11 (use -v to see invocation)
[18/22] Compiling Connectivity PublishersAdditions.swift
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:13:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 11 |
 12 | @objc public class ConnectivityConfiguration: NSObject {
 13 |     private (set) var authorizationHeader: String?
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 14 |     private (set) var bearerToken: String?
 15 |     let callbackQueue: DispatchQueue
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:14:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 12 | @objc public class ConnectivityConfiguration: NSObject {
 13 |     private (set) var authorizationHeader: String?
 14 |     private (set) var bearerToken: String?
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 15 |     let callbackQueue: DispatchQueue
 16 |     private (set) var checkWhenApplicationDidBecomeActive: Bool = true
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:16:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 14 |     private (set) var bearerToken: String?
 15 |     let callbackQueue: DispatchQueue
 16 |     private (set) var checkWhenApplicationDidBecomeActive: Bool = true
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 17 |     let connectivityQueue: DispatchQueue
 18 |     private (set) var connectivityURLRequests: [URLRequest]
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:18:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 16 |     private (set) var checkWhenApplicationDidBecomeActive: Bool = true
 17 |     let connectivityQueue: DispatchQueue
 18 |     private (set) var connectivityURLRequests: [URLRequest]
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 19 |     public static let defaultConnectivityURLRequests = [
 20 |         URL(string: "https://www.apple.com/library/test/success.html"),
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:37:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |         return sessionConfiguration
 36 |     }()
 37 |     private (set) var framework: Connectivity.Framework = .network
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 38 |     private (set) var pollingInterval: Double
 39 |     private (set) var pollingIsEnabled: Bool
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:38:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 36 |     }()
 37 |     private (set) var framework: Connectivity.Framework = .network
 38 |     private (set) var pollingInterval: Double
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     private (set) var pollingIsEnabled: Bool
 40 |     private (set) var pollWhileOfflineOnly: Bool
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:39:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 37 |     private (set) var framework: Connectivity.Framework = .network
 38 |     private (set) var pollingInterval: Double
 39 |     private (set) var pollingIsEnabled: Bool
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 40 |     private (set) var pollWhileOfflineOnly: Bool
 41 |     private (set) var responseValidator: ResponseValidator
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:40:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 38 |     private (set) var pollingInterval: Double
 39 |     private (set) var pollingIsEnabled: Bool
 40 |     private (set) var pollWhileOfflineOnly: Bool
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 41 |     private (set) var responseValidator: ResponseValidator
 42 |
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:41:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     private (set) var pollingIsEnabled: Bool
 40 |     private (set) var pollWhileOfflineOnly: Bool
 41 |     private (set) var responseValidator: ResponseValidator
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |
 43 |     /// % successful connections required to be deemed to have connectivity
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:45:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |     /// % successful connections required to be deemed to have connectivity
 44 |     let successThreshold: Connectivity.Percentage
 45 |     private (set) var urlSessionConfiguration: URLSessionConfiguration
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |     private (set) var validationMode: Connectivity.ValidationMode?
 47 |
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:46:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 44 |     let successThreshold: Connectivity.Percentage
 45 |     private (set) var urlSessionConfiguration: URLSessionConfiguration
 46 |     private (set) var validationMode: Connectivity.ValidationMode?
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 47 |
 48 |     public init(
[19/22] Compiling Connectivity ConnectivityConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:13:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 11 |
 12 | @objc public class ConnectivityConfiguration: NSObject {
 13 |     private (set) var authorizationHeader: String?
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 14 |     private (set) var bearerToken: String?
 15 |     let callbackQueue: DispatchQueue
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:14:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 12 | @objc public class ConnectivityConfiguration: NSObject {
 13 |     private (set) var authorizationHeader: String?
 14 |     private (set) var bearerToken: String?
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 15 |     let callbackQueue: DispatchQueue
 16 |     private (set) var checkWhenApplicationDidBecomeActive: Bool = true
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:16:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 14 |     private (set) var bearerToken: String?
 15 |     let callbackQueue: DispatchQueue
 16 |     private (set) var checkWhenApplicationDidBecomeActive: Bool = true
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 17 |     let connectivityQueue: DispatchQueue
 18 |     private (set) var connectivityURLRequests: [URLRequest]
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:18:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 16 |     private (set) var checkWhenApplicationDidBecomeActive: Bool = true
 17 |     let connectivityQueue: DispatchQueue
 18 |     private (set) var connectivityURLRequests: [URLRequest]
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 19 |     public static let defaultConnectivityURLRequests = [
 20 |         URL(string: "https://www.apple.com/library/test/success.html"),
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:37:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 35 |         return sessionConfiguration
 36 |     }()
 37 |     private (set) var framework: Connectivity.Framework = .network
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 38 |     private (set) var pollingInterval: Double
 39 |     private (set) var pollingIsEnabled: Bool
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:38:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 36 |     }()
 37 |     private (set) var framework: Connectivity.Framework = .network
 38 |     private (set) var pollingInterval: Double
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     private (set) var pollingIsEnabled: Bool
 40 |     private (set) var pollWhileOfflineOnly: Bool
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:39:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 37 |     private (set) var framework: Connectivity.Framework = .network
 38 |     private (set) var pollingInterval: Double
 39 |     private (set) var pollingIsEnabled: Bool
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 40 |     private (set) var pollWhileOfflineOnly: Bool
 41 |     private (set) var responseValidator: ResponseValidator
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:40:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 38 |     private (set) var pollingInterval: Double
 39 |     private (set) var pollingIsEnabled: Bool
 40 |     private (set) var pollWhileOfflineOnly: Bool
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 41 |     private (set) var responseValidator: ResponseValidator
 42 |
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:41:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 39 |     private (set) var pollingIsEnabled: Bool
 40 |     private (set) var pollWhileOfflineOnly: Bool
 41 |     private (set) var responseValidator: ResponseValidator
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 42 |
 43 |     /// % successful connections required to be deemed to have connectivity
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:45:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 43 |     /// % successful connections required to be deemed to have connectivity
 44 |     let successThreshold: Connectivity.Percentage
 45 |     private (set) var urlSessionConfiguration: URLSessionConfiguration
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 46 |     private (set) var validationMode: Connectivity.ValidationMode?
 47 |
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:46:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 44 |     let successThreshold: Connectivity.Percentage
 45 |     private (set) var urlSessionConfiguration: URLSessionConfiguration
 46 |     private (set) var validationMode: Connectivity.ValidationMode?
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 47 |
 48 |     public init(
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Connectivity.swift:97:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 95 |
 96 |     /// Queue to callback on
 97 |     private (set) var externalQueue = DispatchQueue.main
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 98 |
 99 |     /// Whether or not to use System Configuration or Network (on iOS 12+) framework.
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Connectivity.swift:103:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
101 |
102 |     /// Used to for checks using NWPathMonitor
103 |     private (set) var internalQueue = DispatchQueue.global(qos: .default)
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
104 |
105 |     /// Whether or not we are currently deemed to have connectivity
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:13:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 11 |
 12 | @objc public class ConnectivityConfiguration: NSObject {
 13 |     private (set) var authorizationHeader: String?
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 14 |     private (set) var bearerToken: String?
 15 |     let callbackQueue: DispatchQueue
/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift:14:5: warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 12 | @objc public class ConnectivityConfiguration: NSObject {
 13 |     private (set) var authorizationHeader: String?
 14 |     private (set) var bearerToken: String?
    |     `- warning: extraneous whitespace between attribute name and '('; this is an error in the Swift 6 language mode
 15 |     let callbackQueue: DispatchQueue
 16 |     private (set) var checkWhenApplicationDidBecomeActive: Bool = true
Please submit a bug report (https://swift.org/contributing/#reporting-bugs) and include the crash backtrace.
Stack dump:
0.	Program arguments: /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Combine/ConnectivityPublisher.swift /Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Combine/ConnectivitySubscription.swift /Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Connectivity.swift /Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Extensions/NotificationNameAdditions.swift /Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Extensions/PublishersAdditions.swift /Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityConfiguration.swift /Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityFramework.swift /Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityInterface.swift /Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityPercentage.swift /Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Model/ConnectivityStatus.swift "/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Response Validation/ConnectivityResponseValidationMode.swift" "/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Response Validation/ConnectivityResponseValidator.swift" "/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Response Validation/Factory/Factory.swift" "/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Response Validation/Factory/ResponseValidatorFactory.swift" "/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Response Validation/Validators/ConnectivityResponseContainsStringValidator.swift" "/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Response Validation/Validators/ConnectivityResponseRegExValidator.swift" "/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Response Validation/Validators/ConnectivityResponseStringEqualityValidator.swift" "/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Response Validation/Validators/ConnectivityResponseStringValidator.swift" -target arm64-apple-macosx10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/Modules -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -enable-testing -g -debug-info-format=dwarf -dwarf-version=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/ModuleCache -swift-version 5 -Onone -D SWIFT_PACKAGE -D DEBUG -D IMPORT_REACHABILITY -stats-output-dir .stats -strict-concurrency=complete -empty-abi-descriptor -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace -Xcc -fmodule-map-file=/Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/Reachability.build/module.modulemap -Xcc -I -Xcc /Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Reachability -Xcc -isysroot -Xcc /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -Xcc -F -Xcc /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -Xcc -fPIC -Xcc -g -module-name Connectivity -package-name spi_builder_workspace -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/Modules/Connectivity.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/Modules/Connectivity.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/Connectivity.build/Connectivity-Swift.h -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/Connectivity.build/Connectivity.emit-module.d -parse-as-library -o /Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/Modules/Connectivity.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.build/arm64-apple-macosx/debug/Modules/Connectivity.abi.json
1.	Apple Swift version 6.0-dev (LLVM 4b0b1f9e1a69523, Swift 91a3abcf816bc36)
2.	Compiling with effective version 5.10
3.	While evaluating request TypeCheckSourceFileRequest(source_file "/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Combine/ConnectivityPublisher.swift")
4.	While type-checking 'ConnectivityPublisher' (at /Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Combine/ConnectivityPublisher.swift:14:8)
5.	While type-checking 'init(configuration:)' (at /Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Combine/ConnectivityPublisher.swift:19:12)
6.	While evaluating request DefaultArgumentExprRequest(Connectivity.(file).ConnectivityPublisher.init(configuration:).configuration@/Users/admin/builder/spi-builder-workspace/Connectivity/Classes/Combine/ConnectivityPublisher.swift:19:17)
Stack dump without symbol names (ensure you have llvm-symbolizer in your PATH or set the environment var `LLVM_SYMBOLIZER_PATH` to point to it):
0  swift-frontend           0x0000000106333bf0 llvm::sys::PrintStackTrace(llvm::raw_ostream&, int) + 56
1  swift-frontend           0x00000001063323bc llvm::sys::RunSignalHandlers() + 112
2  swift-frontend           0x0000000106334238 SignalHandler(int) + 304
3  libsystem_platform.dylib 0x00000001829eda24 _sigtramp + 56
4  swift-frontend           0x0000000102638488 swift::DiagnosticEngine::formatDiagnosticText(llvm::raw_ostream&, llvm::StringRef, llvm::ArrayRef<swift::DiagnosticArgument>, swift::DiagnosticFormatOptions) + 312
5  swift-frontend           0x0000000102638e48 swift::DiagnosticEngine::formatDiagnosticText(llvm::raw_ostream&, llvm::StringRef, llvm::ArrayRef<swift::DiagnosticArgument>, swift::DiagnosticFormatOptions) + 2808
6  swift-frontend           0x0000000101112d88 swift::PrintingDiagnosticConsumer::handleDiagnostic(swift::SourceManager&, swift::DiagnosticInfo const&) + 540
7  swift-frontend           0x000000010263a528 swift::DiagnosticEngine::emitDiagnostic(swift::Diagnostic const&) + 1064
8  swift-frontend           0x000000010263a83c swift::DiagnosticEngine::emitTentativeDiagnostics() + 52
9  swift-frontend           0x00000001020f4ae0 swift::TypeChecker::typeCheckParameterDefault(swift::Expr*&, swift::DeclContext*, swift::Type, bool, bool) + 380
10 swift-frontend           0x000000010213b4dc swift::DefaultArgumentExprRequest::evaluate(swift::Evaluator&, swift::ParamDecl*) const + 676
11 swift-frontend           0x00000001026019f0 swift::DefaultArgumentExprRequest::OutputType swift::Evaluator::getResultUncached<swift::DefaultArgumentExprRequest, swift::DefaultArgumentExprRequest::OutputType swift::evaluateOrDefault<swift::DefaultArgumentExprRequest>(swift::Evaluator&, swift::DefaultArgumentExprRequest, swift::DefaultArgumentExprRequest::OutputType)::'lambda'()>(swift::DefaultArgumentExprRequest const&, swift::DefaultArgumentExprRequest::OutputType swift::evaluateOrDefault<swift::DefaultArgumentExprRequest>(swift::Evaluator&, swift::DefaultArgumentExprRequest, swift::DefaultArgumentExprRequest::OutputType)::'lambda'()) + 228
12 swift-frontend           0x00000001025767e0 swift::ParamDecl::getTypeCheckedDefaultExpr() const + 300
13 swift-frontend           0x00000001021513e4 checkDefaultArguments(swift::ParameterList*) + 148
14 swift-frontend           0x0000000102140f54 (anonymous namespace)::DeclChecker::visit(swift::Decl*) + 15084
15 swift-frontend           0x000000010213e710 (anonymous namespace)::DeclChecker::visit(swift::Decl*) + 4776
16 swift-frontend           0x000000010213d454 swift::TypeChecker::typeCheckDecl(swift::Decl*) + 136
17 swift-frontend           0x0000000102206200 swift::TypeCheckSourceFileRequest::evaluate(swift::Evaluator&, swift::SourceFile*) const + 176
18 swift-frontend           0x0000000102207da8 swift::TypeCheckSourceFileRequest::OutputType swift::Evaluator::getResultUncached<swift::TypeCheckSourceFileRequest, swift::TypeCheckSourceFileRequest::OutputType swift::evaluateOrDefault<swift::TypeCheckSourceFileRequest>(swift::Evaluator&, swift::TypeCheckSourceFileRequest, swift::TypeCheckSourceFileRequest::OutputType)::'lambda'()>(swift::TypeCheckSourceFileRequest const&, swift::TypeCheckSourceFileRequest::OutputType swift::evaluateOrDefault<swift::TypeCheckSourceFileRequest>(swift::Evaluator&, swift::TypeCheckSourceFileRequest, swift::TypeCheckSourceFileRequest::OutputType)::'lambda'()) + 232
19 swift-frontend           0x0000000102206128 swift::performTypeChecking(swift::SourceFile&) + 84
20 swift-frontend           0x00000001010f1844 bool llvm::function_ref<bool (swift::SourceFile&)>::callback_fn<swift::CompilerInstance::performSema()::$_7>(long, swift::SourceFile&) + 16
21 swift-frontend           0x00000001010eb2d4 swift::CompilerInstance::forEachFileToTypeCheck(llvm::function_ref<bool (swift::SourceFile&)>) + 156
22 swift-frontend           0x00000001010eb218 swift::CompilerInstance::performSema() + 76
23 swift-frontend           0x0000000100ebe1e4 withSemanticAnalysis(swift::CompilerInstance&, swift::FrontendObserver*, llvm::function_ref<bool (swift::CompilerInstance&)>, bool) + 60
24 swift-frontend           0x0000000100eaf590 performCompile(swift::CompilerInstance&, int&, swift::FrontendObserver*) + 708
25 swift-frontend           0x0000000100eae4fc swift::performFrontend(llvm::ArrayRef<char const*>, char const*, void*, swift::FrontendObserver*) + 2388
26 swift-frontend           0x0000000100cc83b0 swift::mainEntry(int, char const**) + 3096
27 dyld                     0x000000018263d0e0 start + 2360
BUILD FAILURE 6.0 macosSpm
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.