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

Successful build of Pusher with Swift 6.0 for macOS (Xcode) using Xcode 16.0.

Swift 6 data race errors: 31

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a xcodebuild -IDEClonedSourcePackagesDirPathOverride=$workDir/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $workDir/.derivedData build -scheme Pusher -destination platform=macos,arch=arm64 OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete

Build Log

        static let withCustomHost = try! PusherClientOptions(appId: testAppId,
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:50:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let withCustomHost = try! PusherClientOptions(appId: testAppId,
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:56:20: warning: static property 'withCustomPort' is not concurrency-safe because non-'Sendable' type 'PusherClientOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        static let withCustomPort = try! PusherClientOptions(appId: testAppId,
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Networking/Models/PusherClientOptions.swift:4:15: note: struct 'PusherClientOptions' does not conform to the 'Sendable' protocol
public struct PusherClientOptions {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:56:20: note: annotate 'withCustomPort' with '@MainActor' if property should only be accessed from the main actor
        static let withCustomPort = try! PusherClientOptions(appId: testAppId,
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:56:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let withCustomPort = try! PusherClientOptions(appId: testAppId,
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:65:20: warning: static property 'withInvalidMasterKey' is not concurrency-safe because non-'Sendable' type 'PusherClientOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        static let withInvalidMasterKey = try! PusherClientOptions(appId: testAppId,
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Networking/Models/PusherClientOptions.swift:4:15: note: struct 'PusherClientOptions' does not conform to the 'Sendable' protocol
public struct PusherClientOptions {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:65:20: note: annotate 'withInvalidMasterKey' with '@MainActor' if property should only be accessed from the main actor
        static let withInvalidMasterKey = try! PusherClientOptions(appId: testAppId,
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:65:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let withInvalidMasterKey = try! PusherClientOptions(appId: testAppId,
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:71:20: warning: static property 'withInvalidPrefixHost' is not concurrency-safe because non-'Sendable' type 'PusherClientOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        static let withInvalidPrefixHost = try! PusherClientOptions(appId: testAppId,
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Networking/Models/PusherClientOptions.swift:4:15: note: struct 'PusherClientOptions' does not conform to the 'Sendable' protocol
public struct PusherClientOptions {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:71:20: note: annotate 'withInvalidPrefixHost' with '@MainActor' if property should only be accessed from the main actor
        static let withInvalidPrefixHost = try! PusherClientOptions(appId: testAppId,
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:71:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let withInvalidPrefixHost = try! PusherClientOptions(appId: testAppId,
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:77:20: warning: static property 'withInvalidSuffixHost' is not concurrency-safe because non-'Sendable' type 'PusherClientOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        static let withInvalidSuffixHost = try! PusherClientOptions(appId: testAppId,
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Networking/Models/PusherClientOptions.swift:4:15: note: struct 'PusherClientOptions' does not conform to the 'Sendable' protocol
public struct PusherClientOptions {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:77:20: note: annotate 'withInvalidSuffixHost' with '@MainActor' if property should only be accessed from the main actor
        static let withInvalidSuffixHost = try! PusherClientOptions(appId: testAppId,
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:77:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let withInvalidSuffixHost = try! PusherClientOptions(appId: testAppId,
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:88:20: warning: static property 'encrypted' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
        static let encrypted = Channel(name: "my-channel", type: .encrypted)
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Models/Channel.swift:4:15: note: struct 'Channel' does not conform to the 'Sendable' protocol
public struct Channel: ChannelDescription {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:88:20: note: annotate 'encrypted' with '@MainActor' if property should only be accessed from the main actor
        static let encrypted = Channel(name: "my-channel", type: .encrypted)
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:88:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let encrypted = Channel(name: "my-channel", type: .encrypted)
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:90:20: warning: static property 'presence' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
        static let presence = Channel(name: "my-channel", type: .presence)
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Models/Channel.swift:4:15: note: struct 'Channel' does not conform to the 'Sendable' protocol
public struct Channel: ChannelDescription {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:90:20: note: annotate 'presence' with '@MainActor' if property should only be accessed from the main actor
        static let presence = Channel(name: "my-channel", type: .presence)
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:90:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let presence = Channel(name: "my-channel", type: .presence)
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:92:20: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
        static let `private` = Channel(name: "my-channel", type: .private)
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Models/Channel.swift:4:15: note: struct 'Channel' does not conform to the 'Sendable' protocol
public struct Channel: ChannelDescription {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:92:20: note: annotate 'private' with '@MainActor' if property should only be accessed from the main actor
        static let `private` = Channel(name: "my-channel", type: .private)
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:92:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let `private` = Channel(name: "my-channel", type: .private)
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:94:20: warning: static property 'public' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
        static let `public` = Channel(name: "my-channel", type: .public)
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Models/Channel.swift:4:15: note: struct 'Channel' does not conform to the 'Sendable' protocol
public struct Channel: ChannelDescription {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:94:20: note: annotate 'public' with '@MainActor' if property should only be accessed from the main actor
        static let `public` = Channel(name: "my-channel", type: .public)
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:94:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let `public` = Channel(name: "my-channel", type: .public)
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:101:20: warning: static property 'encrypted' is not concurrency-safe because non-'Sendable' type 'Event' may have shared mutable state; this is an error in the Swift 6 language mode
        static let encrypted = try! Event(name: "my-event",
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Models/Event.swift:4:15: note: struct 'Event' does not conform to the 'Sendable' protocol
public struct Event: EventInfoRecord, Encodable {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:101:20: note: annotate 'encrypted' with '@MainActor' if property should only be accessed from the main actor
        static let encrypted = try! Event(name: "my-event",
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:101:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let encrypted = try! Event(name: "my-event",
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:120:20: warning: static property 'eventData' is not concurrency-safe because non-'Sendable' type 'MockEventData' may have shared mutable state; this is an error in the Swift 6 language mode
        static let eventData = MockEventData(name: "Joe Bloggs",
                   ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/Mocks.swift:4:8: note: consider making struct 'MockEventData' conform to the 'Sendable' protocol
struct MockEventData: Codable {
       ^
                             , Sendable
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:120:20: note: annotate 'eventData' with '@MainActor' if property should only be accessed from the main actor
        static let eventData = MockEventData(name: "Joe Bloggs",
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:120:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let eventData = MockEventData(name: "Joe Bloggs",
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:105:20: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'Event' may have shared mutable state; this is an error in the Swift 6 language mode
        static let `private` = try! Event(name: "my-event",
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Models/Event.swift:4:15: note: struct 'Event' does not conform to the 'Sendable' protocol
public struct Event: EventInfoRecord, Encodable {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:105:20: note: annotate 'private' with '@MainActor' if property should only be accessed from the main actor
        static let `private` = try! Event(name: "my-event",
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:105:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let `private` = try! Event(name: "my-event",
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:109:20: warning: static property 'public' is not concurrency-safe because non-'Sendable' type 'Event' may have shared mutable state; this is an error in the Swift 6 language mode
        static let `public` = try! Event(name: "my-event",
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Models/Event.swift:4:15: note: struct 'Event' does not conform to the 'Sendable' protocol
public struct Event: EventInfoRecord, Encodable {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:109:20: note: annotate 'public' with '@MainActor' if property should only be accessed from the main actor
        static let `public` = try! Event(name: "my-event",
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:109:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let `public` = try! Event(name: "my-event",
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:113:20: warning: static property 'multichannel' is not concurrency-safe because non-'Sendable' type 'Event' may have shared mutable state; this is an error in the Swift 6 language mode
        static let multichannel = try! Event(name: "my-multichannel-event",
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Models/Event.swift:4:15: note: struct 'Event' does not conform to the 'Sendable' protocol
public struct Event: EventInfoRecord, Encodable {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:113:20: note: annotate 'multichannel' with '@MainActor' if property should only be accessed from the main actor
        static let multichannel = try! Event(name: "my-multichannel-event",
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:113:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let multichannel = try! Event(name: "my-multichannel-event",
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:132:20: warning: static property 'presenceUserData' is not concurrency-safe because non-'Sendable' type 'PresenceUserData' may have shared mutable state; this is an error in the Swift 6 language mode
        static let presenceUserData = PresenceUserData(userId: "user_1")
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Models/PresenceUserAuthData.swift:5:15: note: struct 'PresenceUserData' does not conform to the 'Sendable' protocol
public struct PresenceUserData: Encodable {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:132:20: note: annotate 'presenceUserData' with '@MainActor' if property should only be accessed from the main actor
        static let presenceUserData = PresenceUserData(userId: "user_1")
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:132:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let presenceUserData = PresenceUserData(userId: "user_1")
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:134:20: warning: static property 'presenceUserDataWithUserInfo' is not concurrency-safe because non-'Sendable' type 'PresenceUserData' may have shared mutable state; this is an error in the Swift 6 language mode
        static let presenceUserDataWithUserInfo = PresenceUserData(userId: "user_1",
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Models/PresenceUserAuthData.swift:5:15: note: struct 'PresenceUserData' does not conform to the 'Sendable' protocol
public struct PresenceUserData: Encodable {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:134:20: note: annotate 'presenceUserDataWithUserInfo' with '@MainActor' if property should only be accessed from the main actor
        static let presenceUserDataWithUserInfo = PresenceUserData(userId: "user_1",
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:134:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let presenceUserDataWithUserInfo = PresenceUserData(userId: "user_1",
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:188:28: warning: static property 'channelOccupied' is not concurrency-safe because non-'Sendable' type 'Webhook' may have shared mutable state; this is an error in the Swift 6 language mode
        private static let channelOccupied = Webhook(createdAt: Date(timeIntervalSince1970: 1619602993),
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Models/Webhook.swift:8:15: note: struct 'Webhook' does not conform to the 'Sendable' protocol
public struct Webhook: Codable {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:188:28: note: annotate 'channelOccupied' with '@MainActor' if property should only be accessed from the main actor
        private static let channelOccupied = Webhook(createdAt: Date(timeIntervalSince1970: 1619602993),
                           ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:188:28: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        private static let channelOccupied = Webhook(createdAt: Date(timeIntervalSince1970: 1619602993),
                           ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:192:28: warning: static property 'channelVacated' is not concurrency-safe because non-'Sendable' type 'Webhook' may have shared mutable state; this is an error in the Swift 6 language mode
        private static let channelVacated = Webhook(createdAt: Date(timeIntervalSince1970: 1619602993),
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Models/Webhook.swift:8:15: note: struct 'Webhook' does not conform to the 'Sendable' protocol
public struct Webhook: Codable {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:192:28: note: annotate 'channelVacated' with '@MainActor' if property should only be accessed from the main actor
        private static let channelVacated = Webhook(createdAt: Date(timeIntervalSince1970: 1619602993),
                           ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:192:28: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        private static let channelVacated = Webhook(createdAt: Date(timeIntervalSince1970: 1619602993),
                           ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:196:28: warning: static property 'memberAdded' is not concurrency-safe because non-'Sendable' type 'Webhook' may have shared mutable state; this is an error in the Swift 6 language mode
        private static let memberAdded = Webhook(createdAt: Date(timeIntervalSince1970: 1619602993),
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Models/Webhook.swift:8:15: note: struct 'Webhook' does not conform to the 'Sendable' protocol
public struct Webhook: Codable {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:196:28: note: annotate 'memberAdded' with '@MainActor' if property should only be accessed from the main actor
        private static let memberAdded = Webhook(createdAt: Date(timeIntervalSince1970: 1619602993),
                           ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:196:28: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        private static let memberAdded = Webhook(createdAt: Date(timeIntervalSince1970: 1619602993),
                           ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:201:28: warning: static property 'memberRemoved' is not concurrency-safe because non-'Sendable' type 'Webhook' may have shared mutable state; this is an error in the Swift 6 language mode
        private static let memberRemoved = Webhook(createdAt: Date(timeIntervalSince1970: 1619602993),
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Models/Webhook.swift:8:15: note: struct 'Webhook' does not conform to the 'Sendable' protocol
public struct Webhook: Codable {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:201:28: note: annotate 'memberRemoved' with '@MainActor' if property should only be accessed from the main actor
        private static let memberRemoved = Webhook(createdAt: Date(timeIntervalSince1970: 1619602993),
                           ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:201:28: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        private static let memberRemoved = Webhook(createdAt: Date(timeIntervalSince1970: 1619602993),
                           ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:206:28: warning: static property 'clientEvent' is not concurrency-safe because non-'Sendable' type 'Webhook' may have shared mutable state; this is an error in the Swift 6 language mode
        private static let clientEvent = Webhook(createdAt: Date(timeIntervalSince1970: 1619602993),
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Models/Webhook.swift:8:15: note: struct 'Webhook' does not conform to the 'Sendable' protocol
public struct Webhook: Codable {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:206:28: note: annotate 'clientEvent' with '@MainActor' if property should only be accessed from the main actor
        private static let clientEvent = Webhook(createdAt: Date(timeIntervalSince1970: 1619602993),
                           ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:206:28: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        private static let clientEvent = Webhook(createdAt: Date(timeIntervalSince1970: 1619602993),
                           ^
        nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ XCTest+Pusher.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Extensions/XCTest+Pusher.swift (in target 'PusherTests' from project 'Pusher')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AppStateQueryTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AuthTokenTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/ClientOptionsTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/EventTriggerTests.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Extensions/XCTest+Pusher.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/Mocks.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/WebhookTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/XCTestManifests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/XCTest+Pusher.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/XCTest+Pusher.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/XCTest+Pusher.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/XCTest+Pusher.dia -target arm64-apple-macos13.0 -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/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CTweetNacl.modulemap -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSLShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSL/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/tweetnacl-swiftwrap/Sources/CTweetNacl/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PusherTests -frontend-parseable-output -disable-clang-spi -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/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -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 -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 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/XCTest+Pusher.o -index-unit-output-path /Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/XCTest+Pusher.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Extensions/XCTest+Pusher.swift (in target 'PusherTests' from project 'Pusher')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AppStateQueryTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AuthTokenTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/ClientOptionsTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/EventTriggerTests.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Extensions/XCTest+Pusher.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/Mocks.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/WebhookTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/XCTestManifests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/XCTest+Pusher.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/XCTest+Pusher.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/XCTest+Pusher.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/XCTest+Pusher.dia -target arm64-apple-macos13.0 -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/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CTweetNacl.modulemap -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSLShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSL/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/tweetnacl-swiftwrap/Sources/CTweetNacl/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PusherTests -frontend-parseable-output -disable-clang-spi -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/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -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 -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 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/XCTest+Pusher.o -index-unit-output-path /Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/XCTest+Pusher.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ Mocks.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/Mocks.swift (in target 'PusherTests' from project 'Pusher')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AppStateQueryTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AuthTokenTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/ClientOptionsTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/EventTriggerTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Extensions/XCTest+Pusher.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/Mocks.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/WebhookTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/XCTestManifests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/Mocks.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/Mocks.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/Mocks.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/Mocks.dia -target arm64-apple-macos13.0 -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/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CTweetNacl.modulemap -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSLShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSL/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/tweetnacl-swiftwrap/Sources/CTweetNacl/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PusherTests -frontend-parseable-output -disable-clang-spi -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/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -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 -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 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/Mocks.o -index-unit-output-path /Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/Mocks.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/Mocks.swift (in target 'PusherTests' from project 'Pusher')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AppStateQueryTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AuthTokenTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/ClientOptionsTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/EventTriggerTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Extensions/XCTest+Pusher.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/Mocks.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/WebhookTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/XCTestManifests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/Mocks.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/Mocks.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/Mocks.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/Mocks.dia -target arm64-apple-macos13.0 -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/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CTweetNacl.modulemap -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSLShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSL/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/tweetnacl-swiftwrap/Sources/CTweetNacl/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PusherTests -frontend-parseable-output -disable-clang-spi -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/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -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 -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 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/Mocks.o -index-unit-output-path /Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/Mocks.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ EventTriggerTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/EventTriggerTests.swift (in target 'PusherTests' from project 'Pusher')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AppStateQueryTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AuthTokenTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/ClientOptionsTests.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/EventTriggerTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Extensions/XCTest+Pusher.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/Mocks.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/WebhookTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/XCTestManifests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/EventTriggerTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/EventTriggerTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/EventTriggerTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/EventTriggerTests.dia -target arm64-apple-macos13.0 -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/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CTweetNacl.modulemap -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSLShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSL/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/tweetnacl-swiftwrap/Sources/CTweetNacl/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PusherTests -frontend-parseable-output -disable-clang-spi -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/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -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 -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 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/EventTriggerTests.o -index-unit-output-path /Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/EventTriggerTests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/EventTriggerTests.swift (in target 'PusherTests' from project 'Pusher')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AppStateQueryTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AuthTokenTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/ClientOptionsTests.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/EventTriggerTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Extensions/XCTest+Pusher.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/Mocks.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/WebhookTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/XCTestManifests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/EventTriggerTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/EventTriggerTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/EventTriggerTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/EventTriggerTests.dia -target arm64-apple-macos13.0 -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/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CTweetNacl.modulemap -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSLShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSL/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/tweetnacl-swiftwrap/Sources/CTweetNacl/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PusherTests -frontend-parseable-output -disable-clang-spi -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/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -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 -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 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/EventTriggerTests.o -index-unit-output-path /Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/EventTriggerTests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/EventTriggerTests.swift:7:24: warning: static property 'pusher' is not concurrency-safe because non-'Sendable' type 'Pusher' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let pusher = TestObjects.Client.shared
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Pusher.swift:8:14: note: class 'Pusher' does not conform to the 'Sendable' protocol
public class Pusher {
             ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/EventTriggerTests.swift:2:11: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Pusher'
@testable import Pusher
          ^
          @preconcurrency
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/EventTriggerTests.swift:7:24: note: annotate 'pusher' with '@MainActor' if property should only be accessed from the main actor
    private static let pusher = TestObjects.Client.shared
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/EventTriggerTests.swift:7:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let pusher = TestObjects.Client.shared
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:20:20: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Pusher' may have shared mutable state; this is an error in the Swift 6 language mode
        static let shared = Pusher(options: try! PusherClientOptions(appId: testAppId,
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Pusher.swift:8:14: note: class 'Pusher' does not conform to the 'Sendable' protocol
public class Pusher {
             ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:2:11: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Pusher'
@testable import Pusher
          ^
          @preconcurrency
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:20:20: note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
        static let shared = Pusher(options: try! PusherClientOptions(appId: testAppId,
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:20:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let shared = Pusher(options: try! PusherClientOptions(appId: testAppId,
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:101:20: warning: static property 'encrypted' is not concurrency-safe because non-'Sendable' type 'Event' may have shared mutable state; this is an error in the Swift 6 language mode
        static let encrypted = try! Event(name: "my-event",
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Models/Event.swift:4:15: note: struct 'Event' does not conform to the 'Sendable' protocol
public struct Event: EventInfoRecord, Encodable {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:101:20: note: annotate 'encrypted' with '@MainActor' if property should only be accessed from the main actor
        static let encrypted = try! Event(name: "my-event",
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:101:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let encrypted = try! Event(name: "my-event",
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:105:20: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'Event' may have shared mutable state; this is an error in the Swift 6 language mode
        static let `private` = try! Event(name: "my-event",
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Models/Event.swift:4:15: note: struct 'Event' does not conform to the 'Sendable' protocol
public struct Event: EventInfoRecord, Encodable {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:105:20: note: annotate 'private' with '@MainActor' if property should only be accessed from the main actor
        static let `private` = try! Event(name: "my-event",
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:105:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let `private` = try! Event(name: "my-event",
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:109:20: warning: static property 'public' is not concurrency-safe because non-'Sendable' type 'Event' may have shared mutable state; this is an error in the Swift 6 language mode
        static let `public` = try! Event(name: "my-event",
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Models/Event.swift:4:15: note: struct 'Event' does not conform to the 'Sendable' protocol
public struct Event: EventInfoRecord, Encodable {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:109:20: note: annotate 'public' with '@MainActor' if property should only be accessed from the main actor
        static let `public` = try! Event(name: "my-event",
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:109:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let `public` = try! Event(name: "my-event",
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:113:20: warning: static property 'multichannel' is not concurrency-safe because non-'Sendable' type 'Event' may have shared mutable state; this is an error in the Swift 6 language mode
        static let multichannel = try! Event(name: "my-multichannel-event",
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Models/Event.swift:4:15: note: struct 'Event' does not conform to the 'Sendable' protocol
public struct Event: EventInfoRecord, Encodable {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:113:20: note: annotate 'multichannel' with '@MainActor' if property should only be accessed from the main actor
        static let multichannel = try! Event(name: "my-multichannel-event",
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:113:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let multichannel = try! Event(name: "my-multichannel-event",
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:120:20: warning: static property 'eventData' is not concurrency-safe because non-'Sendable' type 'MockEventData' may have shared mutable state; this is an error in the Swift 6 language mode
        static let eventData = MockEventData(name: "Joe Bloggs",
                   ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/Mocks.swift:4:8: note: consider making struct 'MockEventData' conform to the 'Sendable' protocol
struct MockEventData: Codable {
       ^
                             , Sendable
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:120:20: note: annotate 'eventData' with '@MainActor' if property should only be accessed from the main actor
        static let eventData = MockEventData(name: "Joe Bloggs",
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:120:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let eventData = MockEventData(name: "Joe Bloggs",
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:88:20: warning: static property 'encrypted' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
        static let encrypted = Channel(name: "my-channel", type: .encrypted)
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Models/Channel.swift:4:15: note: struct 'Channel' does not conform to the 'Sendable' protocol
public struct Channel: ChannelDescription {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:88:20: note: annotate 'encrypted' with '@MainActor' if property should only be accessed from the main actor
        static let encrypted = Channel(name: "my-channel", type: .encrypted)
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:88:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let encrypted = Channel(name: "my-channel", type: .encrypted)
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:94:20: warning: static property 'public' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
        static let `public` = Channel(name: "my-channel", type: .public)
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Models/Channel.swift:4:15: note: struct 'Channel' does not conform to the 'Sendable' protocol
public struct Channel: ChannelDescription {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:94:20: note: annotate 'public' with '@MainActor' if property should only be accessed from the main actor
        static let `public` = Channel(name: "my-channel", type: .public)
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:94:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let `public` = Channel(name: "my-channel", type: .public)
                   ^
        nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ ClientOptionsTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/ClientOptionsTests.swift (in target 'PusherTests' from project 'Pusher')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AppStateQueryTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AuthTokenTests.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/ClientOptionsTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/EventTriggerTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Extensions/XCTest+Pusher.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/Mocks.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/WebhookTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/XCTestManifests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/ClientOptionsTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/ClientOptionsTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/ClientOptionsTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/ClientOptionsTests.dia -target arm64-apple-macos13.0 -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/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CTweetNacl.modulemap -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSLShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSL/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/tweetnacl-swiftwrap/Sources/CTweetNacl/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PusherTests -frontend-parseable-output -disable-clang-spi -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/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -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 -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 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/ClientOptionsTests.o -index-unit-output-path /Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/ClientOptionsTests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/ClientOptionsTests.swift (in target 'PusherTests' from project 'Pusher')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AppStateQueryTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AuthTokenTests.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/ClientOptionsTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/EventTriggerTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Extensions/XCTest+Pusher.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/Mocks.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/WebhookTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/XCTestManifests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/ClientOptionsTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/ClientOptionsTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/ClientOptionsTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/ClientOptionsTests.dia -target arm64-apple-macos13.0 -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/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CTweetNacl.modulemap -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSLShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSL/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/tweetnacl-swiftwrap/Sources/CTweetNacl/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PusherTests -frontend-parseable-output -disable-clang-spi -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/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -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 -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 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/ClientOptionsTests.o -index-unit-output-path /Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/ClientOptionsTests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:44:20: warning: static property 'withCluster' is not concurrency-safe because non-'Sendable' type 'PusherClientOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        static let withCluster = try! PusherClientOptions(appId: testAppId,
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Networking/Models/PusherClientOptions.swift:4:15: note: struct 'PusherClientOptions' does not conform to the 'Sendable' protocol
public struct PusherClientOptions {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:2:11: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Pusher'
@testable import Pusher
          ^
          @preconcurrency
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:44:20: note: annotate 'withCluster' with '@MainActor' if property should only be accessed from the main actor
        static let withCluster = try! PusherClientOptions(appId: testAppId,
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:44:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let withCluster = try! PusherClientOptions(appId: testAppId,
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:50:20: warning: static property 'withCustomHost' is not concurrency-safe because non-'Sendable' type 'PusherClientOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        static let withCustomHost = try! PusherClientOptions(appId: testAppId,
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Networking/Models/PusherClientOptions.swift:4:15: note: struct 'PusherClientOptions' does not conform to the 'Sendable' protocol
public struct PusherClientOptions {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:50:20: note: annotate 'withCustomHost' with '@MainActor' if property should only be accessed from the main actor
        static let withCustomHost = try! PusherClientOptions(appId: testAppId,
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:50:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let withCustomHost = try! PusherClientOptions(appId: testAppId,
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:56:20: warning: static property 'withCustomPort' is not concurrency-safe because non-'Sendable' type 'PusherClientOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        static let withCustomPort = try! PusherClientOptions(appId: testAppId,
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Networking/Models/PusherClientOptions.swift:4:15: note: struct 'PusherClientOptions' does not conform to the 'Sendable' protocol
public struct PusherClientOptions {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:56:20: note: annotate 'withCustomPort' with '@MainActor' if property should only be accessed from the main actor
        static let withCustomPort = try! PusherClientOptions(appId: testAppId,
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:56:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let withCustomPort = try! PusherClientOptions(appId: testAppId,
                   ^
        nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling User.swift, Webhook.swift, WebhookEvent.swift, WebhookEventType.swift, APIClient.swift (in target 'Pusher' from project 'Pusher')
SwiftCompile normal arm64 Compiling\ AuthTokenTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AuthTokenTests.swift (in target 'PusherTests' from project 'Pusher')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AppStateQueryTests.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AuthTokenTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/ClientOptionsTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/EventTriggerTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Extensions/XCTest+Pusher.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/Mocks.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/WebhookTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/XCTestManifests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/AuthTokenTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/AuthTokenTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/AuthTokenTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/AuthTokenTests.dia -target arm64-apple-macos13.0 -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/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CTweetNacl.modulemap -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSLShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSL/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/tweetnacl-swiftwrap/Sources/CTweetNacl/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PusherTests -frontend-parseable-output -disable-clang-spi -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/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -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 -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 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/AuthTokenTests.o -index-unit-output-path /Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/AuthTokenTests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AuthTokenTests.swift (in target 'PusherTests' from project 'Pusher')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AppStateQueryTests.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AuthTokenTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/ClientOptionsTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/EventTriggerTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Extensions/XCTest+Pusher.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/Mocks.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/WebhookTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/XCTestManifests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/AuthTokenTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/AuthTokenTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/AuthTokenTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/AuthTokenTests.dia -target arm64-apple-macos13.0 -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/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CTweetNacl.modulemap -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSLShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSL/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/tweetnacl-swiftwrap/Sources/CTweetNacl/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PusherTests -frontend-parseable-output -disable-clang-spi -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/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -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 -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 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/AuthTokenTests.o -index-unit-output-path /Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/AuthTokenTests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AuthTokenTests.swift:7:24: warning: static property 'pusher' is not concurrency-safe because non-'Sendable' type 'Pusher' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let pusher = TestObjects.Client.shared
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Pusher.swift:8:14: note: class 'Pusher' does not conform to the 'Sendable' protocol
public class Pusher {
             ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AuthTokenTests.swift:2:11: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Pusher'
@testable import Pusher
          ^
          @preconcurrency
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AuthTokenTests.swift:7:24: note: annotate 'pusher' with '@MainActor' if property should only be accessed from the main actor
    private static let pusher = TestObjects.Client.shared
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AuthTokenTests.swift:7:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let pusher = TestObjects.Client.shared
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:20:20: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Pusher' may have shared mutable state; this is an error in the Swift 6 language mode
        static let shared = Pusher(options: try! PusherClientOptions(appId: testAppId,
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Pusher.swift:8:14: note: class 'Pusher' does not conform to the 'Sendable' protocol
public class Pusher {
             ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:2:11: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Pusher'
@testable import Pusher
          ^
          @preconcurrency
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:20:20: note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
        static let shared = Pusher(options: try! PusherClientOptions(appId: testAppId,
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:20:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let shared = Pusher(options: try! PusherClientOptions(appId: testAppId,
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:88:20: warning: static property 'encrypted' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
        static let encrypted = Channel(name: "my-channel", type: .encrypted)
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Models/Channel.swift:4:15: note: struct 'Channel' does not conform to the 'Sendable' protocol
public struct Channel: ChannelDescription {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:88:20: note: annotate 'encrypted' with '@MainActor' if property should only be accessed from the main actor
        static let encrypted = Channel(name: "my-channel", type: .encrypted)
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:88:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let encrypted = Channel(name: "my-channel", type: .encrypted)
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:92:20: warning: static property 'private' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
        static let `private` = Channel(name: "my-channel", type: .private)
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Models/Channel.swift:4:15: note: struct 'Channel' does not conform to the 'Sendable' protocol
public struct Channel: ChannelDescription {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:92:20: note: annotate 'private' with '@MainActor' if property should only be accessed from the main actor
        static let `private` = Channel(name: "my-channel", type: .private)
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:92:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let `private` = Channel(name: "my-channel", type: .private)
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:90:20: warning: static property 'presence' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
        static let presence = Channel(name: "my-channel", type: .presence)
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Models/Channel.swift:4:15: note: struct 'Channel' does not conform to the 'Sendable' protocol
public struct Channel: ChannelDescription {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:90:20: note: annotate 'presence' with '@MainActor' if property should only be accessed from the main actor
        static let presence = Channel(name: "my-channel", type: .presence)
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:90:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let presence = Channel(name: "my-channel", type: .presence)
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:132:20: warning: static property 'presenceUserData' is not concurrency-safe because non-'Sendable' type 'PresenceUserData' may have shared mutable state; this is an error in the Swift 6 language mode
        static let presenceUserData = PresenceUserData(userId: "user_1")
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Models/PresenceUserAuthData.swift:5:15: note: struct 'PresenceUserData' does not conform to the 'Sendable' protocol
public struct PresenceUserData: Encodable {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:132:20: note: annotate 'presenceUserData' with '@MainActor' if property should only be accessed from the main actor
        static let presenceUserData = PresenceUserData(userId: "user_1")
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:132:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let presenceUserData = PresenceUserData(userId: "user_1")
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:134:20: warning: static property 'presenceUserDataWithUserInfo' is not concurrency-safe because non-'Sendable' type 'PresenceUserData' may have shared mutable state; this is an error in the Swift 6 language mode
        static let presenceUserDataWithUserInfo = PresenceUserData(userId: "user_1",
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Models/PresenceUserAuthData.swift:5:15: note: struct 'PresenceUserData' does not conform to the 'Sendable' protocol
public struct PresenceUserData: Encodable {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:134:20: note: annotate 'presenceUserDataWithUserInfo' with '@MainActor' if property should only be accessed from the main actor
        static let presenceUserDataWithUserInfo = PresenceUserData(userId: "user_1",
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:134:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let presenceUserDataWithUserInfo = PresenceUserData(userId: "user_1",
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:94:20: warning: static property 'public' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
        static let `public` = Channel(name: "my-channel", type: .public)
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Models/Channel.swift:4:15: note: struct 'Channel' does not conform to the 'Sendable' protocol
public struct Channel: ChannelDescription {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:94:20: note: annotate 'public' with '@MainActor' if property should only be accessed from the main actor
        static let `public` = Channel(name: "my-channel", type: .public)
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:94:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let `public` = Channel(name: "my-channel", type: .public)
                   ^
        nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ AppStateQueryTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AppStateQueryTests.swift (in target 'PusherTests' from project 'Pusher')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AppStateQueryTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AuthTokenTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/ClientOptionsTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/EventTriggerTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Extensions/XCTest+Pusher.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/Mocks.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/WebhookTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/XCTestManifests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/AppStateQueryTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/AppStateQueryTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/AppStateQueryTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/AppStateQueryTests.dia -target arm64-apple-macos13.0 -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/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CTweetNacl.modulemap -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSLShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSL/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/tweetnacl-swiftwrap/Sources/CTweetNacl/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PusherTests -frontend-parseable-output -disable-clang-spi -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/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -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 -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 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/AppStateQueryTests.o -index-unit-output-path /Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/AppStateQueryTests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AppStateQueryTests.swift (in target 'PusherTests' from project 'Pusher')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AppStateQueryTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AuthTokenTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/ClientOptionsTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/EventTriggerTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Extensions/XCTest+Pusher.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/Mocks.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/WebhookTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/XCTestManifests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/AppStateQueryTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/AppStateQueryTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/AppStateQueryTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/AppStateQueryTests.dia -target arm64-apple-macos13.0 -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/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CTweetNacl.modulemap -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSLShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSL/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/tweetnacl-swiftwrap/Sources/CTweetNacl/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PusherTests -frontend-parseable-output -disable-clang-spi -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/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -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 -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 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/AppStateQueryTests.o -index-unit-output-path /Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/AppStateQueryTests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AppStateQueryTests.swift:7:24: warning: static property 'pusher' is not concurrency-safe because non-'Sendable' type 'Pusher' may have shared mutable state; this is an error in the Swift 6 language mode
    private static let pusher = TestObjects.Client.shared
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Pusher.swift:8:14: note: class 'Pusher' does not conform to the 'Sendable' protocol
public class Pusher {
             ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AppStateQueryTests.swift:2:11: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Pusher'
@testable import Pusher
          ^
          @preconcurrency
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AppStateQueryTests.swift:7:24: note: annotate 'pusher' with '@MainActor' if property should only be accessed from the main actor
    private static let pusher = TestObjects.Client.shared
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AppStateQueryTests.swift:7:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static let pusher = TestObjects.Client.shared
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:20:20: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'Pusher' may have shared mutable state; this is an error in the Swift 6 language mode
        static let shared = Pusher(options: try! PusherClientOptions(appId: testAppId,
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Pusher.swift:8:14: note: class 'Pusher' does not conform to the 'Sendable' protocol
public class Pusher {
             ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:2:11: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Pusher'
@testable import Pusher
          ^
          @preconcurrency
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:20:20: note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
        static let shared = Pusher(options: try! PusherClientOptions(appId: testAppId,
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:20:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let shared = Pusher(options: try! PusherClientOptions(appId: testAppId,
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Models/ChannelAttributeFetchOptions.swift:19:23: warning: static property 'userCount' is not concurrency-safe because non-'Sendable' type 'ChannelAttributeFetchOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let userCount = Self(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Models/ChannelAttributeFetchOptions.swift:8:15: note: consider making struct 'ChannelAttributeFetchOptions' conform to the 'Sendable' protocol
public struct ChannelAttributeFetchOptions: OptionSet {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Models/ChannelAttributeFetchOptions.swift:19:23: note: annotate 'userCount' with '@MainActor' if property should only be accessed from the main actor
    public static let userCount = Self(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Models/ChannelAttributeFetchOptions.swift:19:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let userCount = Self(rawValue: 1 << 0)
                      ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:94:20: warning: static property 'public' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
        static let `public` = Channel(name: "my-channel", type: .public)
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Models/Channel.swift:4:15: note: struct 'Channel' does not conform to the 'Sendable' protocol
public struct Channel: ChannelDescription {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:94:20: note: annotate 'public' with '@MainActor' if property should only be accessed from the main actor
        static let `public` = Channel(name: "my-channel", type: .public)
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:94:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let `public` = Channel(name: "my-channel", type: .public)
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:90:20: warning: static property 'presence' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
        static let presence = Channel(name: "my-channel", type: .presence)
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Pusher/Models/Channel.swift:4:15: note: struct 'Channel' does not conform to the 'Sendable' protocol
public struct Channel: ChannelDescription {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:90:20: note: annotate 'presence' with '@MainActor' if property should only be accessed from the main actor
        static let presence = Channel(name: "my-channel", type: .presence)
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift:90:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static let presence = Channel(name: "my-channel", type: .presence)
                   ^
        nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling EncryptedData.swift, Event.swift, PresenceUserAuthData.swift, PusherError.swift, SDKVersion.swift (in target 'Pusher' from project 'Pusher')
SwiftCompile normal arm64 Compiling\ XCTestManifests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/XCTestManifests.swift (in target 'PusherTests' from project 'Pusher')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AppStateQueryTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AuthTokenTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/ClientOptionsTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/EventTriggerTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Extensions/XCTest+Pusher.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/Mocks.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/WebhookTests.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/XCTestManifests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/XCTestManifests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/XCTestManifests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/XCTestManifests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/XCTestManifests.dia -target arm64-apple-macos13.0 -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/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CTweetNacl.modulemap -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSLShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSL/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/tweetnacl-swiftwrap/Sources/CTweetNacl/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PusherTests -frontend-parseable-output -disable-clang-spi -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/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -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 -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 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/XCTestManifests.o -index-unit-output-path /Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/XCTestManifests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/XCTestManifests.swift (in target 'PusherTests' from project 'Pusher')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AppStateQueryTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/AuthTokenTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/ClientOptionsTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/EventTriggerTests.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Extensions/XCTest+Pusher.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/Mocks.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/Models/TestObjects.swift /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/WebhookTests.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/PusherTests/XCTestManifests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/XCTestManifests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/XCTestManifests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/XCTestManifests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/XCTestManifests.dia -target arm64-apple-macos13.0 -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/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CTweetNacl.modulemap -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSLShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSL/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/tweetnacl-swiftwrap/Sources/CTweetNacl/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name PusherTests -frontend-parseable-output -disable-clang-spi -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/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -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 -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 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/XCTestManifests.o -index-unit-output-path /Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/XCTestManifests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Compiling Data+Extensions.swift, String+Extensions.swift, AuthenticationToken.swift, Channel.swift, ChannelAttributeFetchOptions.swift (in target 'Pusher' from project 'Pusher')
SwiftDriver\ Compilation Pusher normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Pusher' from project 'Pusher')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name Pusher -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/Pusher.build/Objects-normal/arm64/Pusher.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CTweetNacl.modulemap -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -target arm64-apple-macos10.15 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/Pusher.build/Objects-normal/arm64/Pusher-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/Pusher.build/Objects-normal/arm64/Pusher.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/Pusher.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/Pusher.build/Objects-normal/arm64/Pusher_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSLShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSL/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/tweetnacl-swiftwrap/Sources/CTweetNacl/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/Pusher.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/Pusher.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/Pusher.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/Pusher.build/Objects-normal/arm64/Pusher-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling ClientOptionsTests.swift (in target 'PusherTests' from project 'Pusher')
SwiftDriverJobDiscovery normal arm64 Compiling Mocks.swift (in target 'PusherTests' from project 'Pusher')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Pusher.o normal (in target 'Pusher' from project 'Pusher')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.15 -r -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/Pusher.build/Objects-normal/arm64/Pusher.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/Pusher.build/Objects-normal/arm64/Pusher_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/Pusher.build/Objects-normal/arm64/Pusher.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/Pusher.build/Objects-normal/arm64/Pusher_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Pusher.o
SwiftDriverJobDiscovery normal arm64 Compiling XCTest+Pusher.swift (in target 'PusherTests' from project 'Pusher')
SwiftDriverJobDiscovery normal arm64 Compiling AuthTokenTests.swift (in target 'PusherTests' from project 'Pusher')
SwiftDriverJobDiscovery normal arm64 Compiling EventTriggerTests.swift (in target 'PusherTests' from project 'Pusher')
SwiftDriverJobDiscovery normal arm64 Compiling AppStateQueryTests.swift (in target 'PusherTests' from project 'Pusher')
SwiftDriverJobDiscovery normal arm64 Emitting module for PusherTests (in target 'PusherTests' from project 'Pusher')
SwiftDriver\ Compilation\ Requirements PusherTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'PusherTests' from project 'Pusher')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name PusherTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CTweetNacl.modulemap -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -target arm64-apple-macos13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSLShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSL/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/tweetnacl-swiftwrap/Sources/CTweetNacl/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PusherTests.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests.swiftdoc (in target 'PusherTests' from project 'Pusher')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PusherTests.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PusherTests.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests.abi.json (in target 'PusherTests' from project 'Pusher')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PusherTests.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PusherTests.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests.swiftmodule (in target 'PusherTests' from project 'Pusher')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PusherTests.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PusherTests.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests.swiftsourceinfo (in target 'PusherTests' from project 'Pusher')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PusherTests.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Pusher.o (in target 'Pusher' from project 'Pusher')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Pusher.o
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/empty-PusherTests.plist (in target 'PusherTests' from project 'Pusher')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/empty-PusherTests.plist
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests.LinkFileList (in target 'PusherTests' from project 'Pusher')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests.LinkFileList
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PusherTests.xctest/Contents/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/empty-PusherTests.plist (in target 'PusherTests' from project 'Pusher')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/empty-PusherTests.plist -producttype com.apple.product-type.bundle.unit-test -expandbuildsettings -platform macosx -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PusherTests.xctest/Contents/Info.plist
SwiftDriverJobDiscovery normal arm64 Compiling TestObjects.swift (in target 'PusherTests' from project 'Pusher')
SwiftDriverJobDiscovery normal arm64 Compiling XCTestManifests.swift (in target 'PusherTests' from project 'Pusher')
SwiftDriverJobDiscovery normal arm64 Compiling WebhookTests.swift (in target 'PusherTests' from project 'Pusher')
SwiftDriver\ Compilation PusherTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'PusherTests' from project 'Pusher')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name PusherTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/CTweetNacl.modulemap -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -target arm64-apple-macos13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSLShims/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-crypto/Sources/CCryptoBoringSSL/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/tweetnacl-swiftwrap/Sources/CTweetNacl/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PusherTests.xctest/Contents/MacOS/PusherTests normal (in target 'PusherTests' from project 'Pusher')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos13.0 -bundle -isysroot /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests.LinkFileList -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/../Frameworks -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -fobjc-link-runtime -L/Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests.swiftmodule -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -framework XCTest -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PusherTests.xctest/Contents/MacOS/PusherTests -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/APIota.build/Debug/APIota.build/Objects-normal/arm64/APIota.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AnyCodable.build/Debug/AnyCodable.build/Objects-normal/arm64/AnyCodable.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-crypto.build/Debug/Crypto.build/Objects-normal/arm64/Crypto.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TweetNacl.build/Debug/TweetNacl.build/Objects-normal/arm64/TweetNacl.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/Pusher.build/Objects-normal/arm64/Pusher.swiftmodule
WriteAuxiliaryFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests.SwiftConstValuesFileList (in target 'PusherTests' from project 'Pusher')
    cd /Users/admin/builder/spi-builder-workspace
    write-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests.SwiftConstValuesFileList
CopySwiftLibs /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PusherTests.xctest (in target 'PusherTests' from project 'Pusher')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftStdLibTool --copy --verbose --scan-executable /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PusherTests.xctest/Contents/MacOS/PusherTests --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PusherTests.xctest/Contents/Frameworks --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PusherTests.xctest/Contents/PlugIns --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PusherTests.xctest/Contents/Library/SystemExtensions --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PusherTests.xctest/Contents/Extensions --platform macosx --toolchain /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain --toolchain /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain --toolchain /Applications/Xcode-15.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --destination /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PusherTests.xctest/Contents/Frameworks --strip-bitcode --scan-executable /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/libXCTestSwiftSupport.dylib --strip-bitcode-tool /Applications/Xcode-15.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip --emit-dependency-info /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/SwiftStdLibToolInputDependencies.dep --filter-for-swift-os
Ignoring --strip-bitcode because --sign was not passed
ExtractAppIntentsMetadata (in target 'PusherTests' from project 'Pusher')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-15.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PusherTests.xctest/Contents/Resources --toolchain-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain --module-name PusherTests --sdk-root /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk --xcode-version 15E204a --platform-family macOS --deployment-target 13.0 --target-triple arm64-apple-macos13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PusherTests.xctest/Contents/MacOS/PusherTests --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests.SwiftFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Pusher.build/Debug/PusherTests.build/Objects-normal/arm64/PusherTests.SwiftConstValuesFileList --compile-time-extraction --deployment-aware-processing
note: Metadata extraction skipped. No AppIntents.framework dependency found. (in target 'PusherTests' from project 'Pusher')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PusherTests.xctest (in target 'PusherTests' from project 'Pusher')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PusherTests.xctest
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PusherTests.xctest (in target 'PusherTests' from project 'Pusher')
    cd /Users/admin/builder/spi-builder-workspace
    /usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PusherTests.xctest
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'Crypto' from project 'swift-crypto')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'Pusher' from project 'Pusher')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'AnyCodable' from project 'AnyCodable')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'APIota' from project 'APIota')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'TweetNacl' from project 'TweetNacl')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'CTweetNacl' from project 'TweetNacl')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'AnyCodable' from project 'AnyCodable')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'Crypto' from project 'swift-crypto')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'CCryptoBoringSSL' from project 'swift-crypto')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'CCryptoBoringSSLShims' from project 'swift-crypto')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'TweetNacl' from project 'TweetNacl')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'Pusher' from project 'Pusher')
** BUILD SUCCEEDED **
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, id:0000FE00-8C151E3703BE51BE, name:My Mac }
{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:0000FE00-8C151E3703BE51BE, name:My Mac }
{ platform:macOS, arch:arm64, variant:DriverKit, id:0000FE00-8C151E3703BE51BE, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:0000FE00-8C151E3703BE51BE, name:My Mac }
{ platform:tvOS Simulator, id:8B1ABE64-0401-443E-812F-247A4FBB5BDB, OS:17.4, name:Apple TV }
{ platform:tvOS Simulator, id:1CFD7C1E-15D0-43C5-AF27-909F7506EEF8, OS:17.4, name:Apple TV 4K (3rd generation) }
{ platform:tvOS Simulator, id:2F8EA46A-629D-4072-B00C-F903D55C3177, OS:17.4, name:Apple TV 4K (3rd generation) (at 1080p) }
{ platform:visionOS Simulator, id:91219D42-BD52-4AED-96DD-B55E31EB00BB, OS:1.1, name:Apple Vision Pro }
{ platform:watchOS Simulator, id:DE04AC0A-986B-4FBA-9496-F35677425C97, OS:10.4, name:Apple Watch SE (40mm) (2nd generation) }
{ platform:watchOS Simulator, id:4BE5427F-5FC7-449C-B254-3F404CE79B2F, OS:10.4, name:Apple Watch SE (44mm) (2nd generation) }
{ platform:watchOS Simulator, id:B1E30F2A-196D-43FB-B903-C3CF777EDD8E, OS:10.4, name:Apple Watch Series 5 (40mm) }
{ platform:watchOS Simulator, id:2F36C8D1-FB3D-4D85-A931-07B6EFBD4E4F, OS:10.4, name:Apple Watch Series 5 (44mm) }
{ platform:watchOS Simulator, id:CF595720-5AAE-408E-8353-1C54D9068D3E, OS:10.4, name:Apple Watch Series 6 (40mm) }
{ platform:watchOS Simulator, id:8F6954D5-8415-4A06-8701-3C7F4ACB2488, OS:10.4, name:Apple Watch Series 6 (44mm) }
{ platform:watchOS Simulator, id:F60A3AB2-C846-4E63-9A50-5E6DBD6A2777, OS:10.4, name:Apple Watch Series 7 (41mm) }
{ platform:watchOS Simulator, id:F72F2121-983A-4C32-A0D4-0C7BA61073C9, OS:10.4, name:Apple Watch Series 7 (45mm) }
{ platform:watchOS Simulator, id:86A5CFD7-08C3-40A4-B2A6-2F3A8CB8BDA5, OS:10.4, name:Apple Watch Series 9 (41mm) }
{ platform:watchOS Simulator, id:B22A08B0-18B6-43BC-94F1-5C2F83724B73, OS:10.4, name:Apple Watch Series 9 (45mm) }
{ platform:watchOS Simulator, id:797FC64C-7930-4151-8822-6349FA58EFA0, OS:10.4, name:Apple Watch Ultra 2 (49mm) }
{ platform:iOS Simulator, id:80B3B926-14C6-407B-AD45-937DD9D118A2, OS:17.4, name:iPad (10th generation) }
{ platform:iOS Simulator, id:DCA453EF-4DA0-4BCB-9EDB-B627F480EC88, OS:17.4, name:iPad Air (5th generation) }
{ platform:iOS Simulator, id:1DD2445B-C99B-432E-99AB-F239A53F76A7, OS:17.4, name:iPad Pro (11-inch) (4th generation) }
{ platform:iOS Simulator, id:63A2100A-3ABC-479B-927E-0927E96A78B0, OS:17.4, name:iPad Pro (12.9-inch) (6th generation) }
{ platform:iOS Simulator, id:182006EF-3CD1-439B-B898-2FF003963B39, OS:17.4, name:iPad mini (6th generation) }
{ platform:iOS Simulator, id:E86EA00F-56E9-4BD5-BE25-B4AE5E09CD43, OS:17.4, name:iPhone 15 }
{ platform:iOS Simulator, id:724EDFB5-2285-4CCF-A274-5CEAC57CE7ED, OS:17.4, name:iPhone 15 Plus }
{ platform:iOS Simulator, id:FA8EB545-B4CA-4062-86F4-C39DEAD04F1E, OS:17.4, name:iPhone 15 Pro }
{ platform:iOS Simulator, id:4C84A4B0-ABA2-4072-B35C-2EF2B0D49AA7, OS:17.4, name:iPhone 15 Pro Max }
{ platform:iOS Simulator, id:82B3845C-C246-4FEC-B1FB-D4892A314D10, OS:17.4, name:iPhone SE (3rd generation) }
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swiftlint",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.43.1",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/realm/SwiftLint"
    },
    {
      "identity" : "apiota",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.2.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/danielrbrowne/APIota"
    },
    {
      "identity" : "anycodable",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.4.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Flight-School/AnyCodable"
    },
    {
      "identity" : "swift-crypto",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.6",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-crypto"
    },
    {
      "identity" : "tweetnacl-swiftwrap",
      "requirement" : {
        "revision" : [
          "f8fd111642bf2336b11ef9ea828510693106e954"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/bitmark-inc/tweetnacl-swiftwrap"
    }
  ],
  "manifest_display_name" : "Pusher",
  "name" : "Pusher",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "Pusher",
      "targets" : [
        "Pusher"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "PusherTests",
      "module_type" : "SwiftTarget",
      "name" : "PusherTests",
      "path" : "Tests/PusherTests",
      "sources" : [
        "AppStateQueryTests.swift",
        "AuthTokenTests.swift",
        "ClientOptionsTests.swift",
        "EventTriggerTests.swift",
        "Extensions/XCTest+Pusher.swift",
        "Models/Mocks.swift",
        "Models/TestObjects.swift",
        "WebhookTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "Pusher"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Pusher",
      "module_type" : "SwiftTarget",
      "name" : "Pusher",
      "path" : "Sources/Pusher",
      "product_dependencies" : [
        "APIota",
        "AnyCodable",
        "Crypto",
        "TweetNacl"
      ],
      "product_memberships" : [
        "Pusher"
      ],
      "sources" : [
        "Extensions/Data+Extensions.swift",
        "Extensions/String+Extensions.swift",
        "Models/AuthenticationToken.swift",
        "Models/Channel.swift",
        "Models/ChannelAttributeFetchOptions.swift",
        "Models/ChannelAttributes.swift",
        "Models/ChannelFilter.swift",
        "Models/ChannelInfo.swift",
        "Models/ChannelSummary.swift",
        "Models/ChannelType.swift",
        "Models/EncryptedData.swift",
        "Models/Event.swift",
        "Models/PresenceUserAuthData.swift",
        "Models/PusherError.swift",
        "Models/SDKVersion.swift",
        "Models/User.swift",
        "Models/Webhook.swift",
        "Models/WebhookEvent.swift",
        "Models/WebhookEventType.swift",
        "Networking/Client/APIClient.swift",
        "Networking/Client/GetChannelEndpoint.swift",
        "Networking/Client/GetChannelsEndpoint.swift",
        "Networking/Client/GetUsersEndpoint.swift",
        "Networking/Client/TriggerBatchEventsEndpoint.swift",
        "Networking/Client/TriggerEventEndpoint.swift",
        "Networking/Models/AuthInfo.swift",
        "Networking/Models/ChannelInfoListAPIResponse.swift",
        "Networking/Models/ChannelSummaryListAPIResponse.swift",
        "Networking/Models/ChannelUsersAPIResponse.swift",
        "Networking/Models/EventBatch.swift",
        "Networking/Models/JSONEncoder.swift",
        "Networking/Models/PusherClientOptions.swift",
        "Protocols/AuthInfoRecord.swift",
        "Protocols/ChannelAttributable.swift",
        "Protocols/ChannelDescription.swift",
        "Protocols/ChannelInfoRecord.swift",
        "Protocols/ChannelSummaryRecord.swift",
        "Protocols/EventInfoRecord.swift",
        "Protocols/SubscriptionCountable.swift",
        "Protocols/UserCountable.swift",
        "Protocols/UserInfoRecord.swift",
        "Protocols/WebhookEventRecord.swift",
        "Pusher.swift",
        "Services/AuthTokenService.swift",
        "Services/CryptoService.swift",
        "Services/WebhookService.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.