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 EventDrivenSwift, reference main (9b995e), with Swift 6.1 for watchOS using Xcode 16.3 on 27 Apr 2025 04:01:07 UTC.

Swift 6 data race errors: 9

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme EventDrivenSwift -destination generic/platform=watchOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures

Build Log

SwiftDriverJobDiscovery normal armv7k Compiling ObservableThreadSafeClass.swift (in target 'Observable' from project 'Observable')
SwiftEmitModule normal arm64 Emitting\ module\ for\ EventDrivenSwift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
EmitSwiftModule normal arm64 (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentral.swift:25:24: warning: static property '_shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var _shared: EventCentral = EventCentral()
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentral.swift:25:24: note: convert '_shared' to a 'let' constant to make 'Sendable' shared state immutable
    private static var _shared: EventCentral = EventCentral()
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentral.swift:25:24: note: add '@MainActor' to make static property '_shared' part of global actor 'MainActor'
    private static var _shared: EventCentral = EventCentral()
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentral.swift:25:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var _shared: EventCentral = EventCentral()
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:29:23: warning: static property 'inOrder' is not concurrency-safe because non-'Sendable' type 'ReversedCollection<[EventPriority]>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let inOrder = Self.allCases.reversed()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
public enum EventPriority: CaseIterable {
            ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:29:23: note: add '@MainActor' to make static property 'inOrder' part of global actor 'MainActor'
    public static let inOrder = Self.allCases.reversed()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:29:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let inOrder = Self.allCases.reversed()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:19:24: warning: static property '_shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var _shared: UIEventThreadable? = nil
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:19:24: note: convert '_shared' to a 'let' constant to make 'Sendable' shared state immutable
    private static var _shared: UIEventThreadable? = nil
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:19:24: note: add '@MainActor' to make static property '_shared' part of global actor 'MainActor'
    private static var _shared: UIEventThreadable? = nil
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:19:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var _shared: UIEventThreadable? = nil
                       ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ EventListenable.swift,\ EventListener.swift,\ EventListenerInterest.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListenable.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListenerInterest.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListenable.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:84:25: warning: capture of 'listener' with non-sendable type 'EventListener.EventListenerContainer' in a '@Sendable' closure
                        listener.callback(event.event, priority, event.dispatchTime)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:29:19: note: consider making struct 'EventListenerContainer' conform to the 'Sendable' protocol
    public struct EventListenerContainer {
                  ^
                                         : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:84:43: warning: capture of 'event' with non-sendable type 'EventHandler.EventDispatchContainer' in a '@Sendable' closure
                        listener.callback(event.event, priority, event.dispatchTime)
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:30:19: note: consider making struct 'EventDispatchContainer' conform to the 'Sendable' protocol
    public struct EventDispatchContainer {
                  ^
                                         : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:84:56: warning: capture of 'priority' with non-sendable type 'EventPriority' in a '@Sendable' closure
                        listener.callback(event.event, priority, event.dispatchTime)
                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
public enum EventPriority: CaseIterable {
            ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:81:22: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
                Task { // We raise a Task because we don't want the entire Listener blocked in the event the dispatchQueue is busy or blocked!
                     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:82:41: note: closure captures non-Sendable 'listener'
                    let dispatchQueue = listener.dispatchQueue ?? DispatchQueue.main
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:84:43: note: closure captures non-Sendable 'event'
                        listener.callback(event.event, priority, event.dispatchTime)
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:84:56: note: closure captures non-Sendable 'priority'
                        listener.callback(event.event, priority, event.dispatchTime)
                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:90:22: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
                Task {
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:91:21: note: closure captures non-Sendable 'listener'
                    listener.callback(event.event, priority, event.dispatchTime)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:91:39: note: closure captures non-Sendable 'event'
                    listener.callback(event.event, priority, event.dispatchTime)
                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:91:52: note: closure captures non-Sendable 'priority'
                    listener.callback(event.event, priority, event.dispatchTime)
                                                   ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListenerInterest.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ EventListening.swift,\ EventListenerHandler.swift,\ EventListenerHandling.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListening.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/Handler/EventListenerHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/Handler/EventListenerHandling.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListening.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/Handler/EventListenerHandler.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/Handler/EventListenerHandling.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftEmitModule normal arm64_32 Emitting\ module\ for\ EventDrivenSwift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
EmitSwiftModule normal arm64_32 (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentral.swift:25:24: warning: static property '_shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var _shared: EventCentral = EventCentral()
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentral.swift:25:24: note: convert '_shared' to a 'let' constant to make 'Sendable' shared state immutable
    private static var _shared: EventCentral = EventCentral()
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentral.swift:25:24: note: add '@MainActor' to make static property '_shared' part of global actor 'MainActor'
    private static var _shared: EventCentral = EventCentral()
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentral.swift:25:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var _shared: EventCentral = EventCentral()
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:29:23: warning: static property 'inOrder' is not concurrency-safe because non-'Sendable' type 'ReversedCollection<[EventPriority]>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let inOrder = Self.allCases.reversed()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
public enum EventPriority: CaseIterable {
            ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:29:23: note: add '@MainActor' to make static property 'inOrder' part of global actor 'MainActor'
    public static let inOrder = Self.allCases.reversed()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:29:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let inOrder = Self.allCases.reversed()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:19:24: warning: static property '_shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var _shared: UIEventThreadable? = nil
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:19:24: note: convert '_shared' to a 'let' constant to make 'Sendable' shared state immutable
    private static var _shared: UIEventThreadable? = nil
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:19:24: note: add '@MainActor' to make static property '_shared' part of global actor 'MainActor'
    private static var _shared: UIEventThreadable? = nil
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:19:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var _shared: UIEventThreadable? = nil
                       ^
    nonisolated(unsafe)
SwiftEmitModule normal armv7k Emitting\ module\ for\ EventDrivenSwift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
EmitSwiftModule normal armv7k (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentral.swift:25:24: warning: static property '_shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var _shared: EventCentral = EventCentral()
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentral.swift:25:24: note: convert '_shared' to a 'let' constant to make 'Sendable' shared state immutable
    private static var _shared: EventCentral = EventCentral()
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentral.swift:25:24: note: add '@MainActor' to make static property '_shared' part of global actor 'MainActor'
    private static var _shared: EventCentral = EventCentral()
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentral.swift:25:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var _shared: EventCentral = EventCentral()
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:29:23: warning: static property 'inOrder' is not concurrency-safe because non-'Sendable' type 'ReversedCollection<[EventPriority]>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let inOrder = Self.allCases.reversed()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
public enum EventPriority: CaseIterable {
            ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:29:23: note: add '@MainActor' to make static property 'inOrder' part of global actor 'MainActor'
    public static let inOrder = Self.allCases.reversed()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:29:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let inOrder = Self.allCases.reversed()
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:19:24: warning: static property '_shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var _shared: UIEventThreadable? = nil
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:19:24: note: convert '_shared' to a 'let' constant to make 'Sendable' shared state immutable
    private static var _shared: UIEventThreadable? = nil
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:19:24: note: add '@MainActor' to make static property '_shared' part of global actor 'MainActor'
    private static var _shared: UIEventThreadable? = nil
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:19:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var _shared: UIEventThreadable? = nil
                       ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling KeyedObservableThread.swift (in target 'Observable' from project 'Observable')
SwiftDriverJobDiscovery normal armv7k Compiling KeyedObservableThreadSafeClass.swift (in target 'Observable' from project 'Observable')
SwiftDriver\ Compilation Observable normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Observable' from project 'Observable')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Observable -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/arm64/Observable.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -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-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/arm64/Observable-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/Observable.build/Debug-watchos/Observable.build/Objects-normal/arm64/Observable.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/Observable.build/Debug-watchos/Observable.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/arm64/Observable_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.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/Observable.build/Debug-watchos/Observable.build/Objects-normal/arm64/Observable-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64_32 Compiling\ EventPoolScaling.swift,\ EventPoolStaticScaler.swift,\ EventPooling.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolScaler/EventPoolScaling.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolScaler/Scalers/EventPoolStaticScaler.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPooling.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolScaler/EventPoolScaling.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolScaler/Scalers/EventPoolStaticScaler.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPooling.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 Compiling\ EventPoolBalancer.swift,\ EventPoolBalancing.swift,\ EventPoolScaler.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolBalancer/EventPoolBalancer.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolBalancer/EventPoolBalancing.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolScaler/EventPoolScaler.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolBalancer/EventPoolBalancer.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolBalancer/EventPoolBalancing.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolScaler/EventPoolScaler.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling ObservableThread.swift (in target 'Observable' from project 'Observable')
SwiftCompile normal armv7k Compiling\ EventPoolScaling.swift,\ EventPoolStaticScaler.swift,\ EventPooling.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolScaler/EventPoolScaling.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolScaler/Scalers/EventPoolStaticScaler.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPooling.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolScaler/EventPoolScaling.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolScaler/Scalers/EventPoolStaticScaler.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPooling.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling EventListening.swift, EventListenerHandler.swift, EventListenerHandling.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal arm64 Compiling\ Eventable.swift,\ EventListeners.swift,\ EventMethod.swift,\ EventDispatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Eventable.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Wrappers/EventListeners.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Wrappers/EventMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventDispatcher/EventDispatcher.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Eventable.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Wrappers/EventListeners.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Wrappers/EventMethod.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventDispatcher/EventDispatcher.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling KeyedObservableClass.swift (in target 'Observable' from project 'Observable')
SwiftCompile normal arm64 Compiling\ EventCentral.swift,\ EventCentralable.swift,\ EventDispatchMethod.swift,\ EventPriority.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentral.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentralable.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventDispatchMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentral.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentral.swift:25:24: warning: static property '_shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var _shared: EventCentral = EventCentral()
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentral.swift:25:24: note: convert '_shared' to a 'let' constant to make 'Sendable' shared state immutable
    private static var _shared: EventCentral = EventCentral()
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentral.swift:25:24: note: add '@MainActor' to make static property '_shared' part of global actor 'MainActor'
    private static var _shared: EventCentral = EventCentral()
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentral.swift:25:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var _shared: EventCentral = EventCentral()
                       ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentralable.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventDispatchMethod.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:29:23: warning: static property 'inOrder' is not concurrency-safe because non-'Sendable' type 'ReversedCollection<[EventPriority]>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let inOrder = Self.allCases.reversed()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
public enum EventPriority: CaseIterable {
            ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:29:23: note: add '@MainActor' to make static property 'inOrder' part of global actor 'MainActor'
    public static let inOrder = Self.allCases.reversed()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:29:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let inOrder = Self.allCases.reversed()
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Emitting module for EventDrivenSwift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftDriver\ Compilation\ Requirements EventDrivenSwift normal arm64 com.apple.xcode.tools.swift.compiler (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name EventDrivenSwift -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64/EventDrivenSwift.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -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-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64/EventDrivenSwift-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/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64/EventDrivenSwift.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/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64/EventDrivenSwift_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.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/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64/EventDrivenSwift-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64_32 Compiling EventPoolScaling.swift, EventPoolStaticScaler.swift, EventPooling.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal armv7k Compiling\ EventListening.swift,\ EventListenerHandler.swift,\ EventListenerHandling.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListening.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/Handler/EventListenerHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/Handler/EventListenerHandling.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListening.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/Handler/EventListenerHandler.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/Handler/EventListenerHandling.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 Compiling\ EventPool.swift,\ EventPoolLowestLoadBalancer.swift,\ EventPoolRoundRobinBalancer.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPool.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolBalancer/Balancers/EventPoolLowestLoadBalancer.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolBalancer/Balancers/EventPoolRoundRobinBalancer.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPool.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolBalancer/Balancers/EventPoolLowestLoadBalancer.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolBalancer/Balancers/EventPoolRoundRobinBalancer.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ EventDispatching.swift,\ EventHandler.swift,\ EventHandling.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventDispatcher/EventDispatching.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandling.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventDispatcher/EventDispatching.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:135:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
        Task {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:17: note: closure captures 'self' which is accessible to code in the current task
                self.queueEvent(event, priority: priority)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                self.queueEvent(event, priority: priority)
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:17: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                self.queueEvent(event, priority: priority)
                ^~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:33: warning: sending 'event' risks causing data races; this is an error in the Swift 6 language mode
                self.queueEvent(event, priority: priority)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:33: note: task-isolated 'event' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                self.queueEvent(event, priority: priority)
                                ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:50: warning: sending 'priority' risks causing data races; this is an error in the Swift 6 language mode
                self.queueEvent(event, priority: priority)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:50: note: task-isolated 'priority' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                self.queueEvent(event, priority: priority)
                                                 ^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:143:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
        Task {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:17: note: closure captures 'self' which is accessible to code in the current task
                self.stackEvent(event, priority: priority)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                self.stackEvent(event, priority: priority)
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:17: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                self.stackEvent(event, priority: priority)
                ^~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:33: warning: sending 'event' risks causing data races; this is an error in the Swift 6 language mode
                self.stackEvent(event, priority: priority)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:33: note: task-isolated 'event' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                self.stackEvent(event, priority: priority)
                                ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:50: warning: sending 'priority' risks causing data races; this is an error in the Swift 6 language mode
                self.stackEvent(event, priority: priority)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:50: note: task-isolated 'priority' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                self.stackEvent(event, priority: priority)
                                                 ^~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandling.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Emitting module for EventDrivenSwift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftDriverJobDiscovery normal armv7k Emitting module for EventDrivenSwift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftDriver\ Compilation\ Requirements EventDrivenSwift normal armv7k com.apple.xcode.tools.swift.compiler (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name EventDrivenSwift -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/armv7k/EventDrivenSwift.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -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-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/armv7k/EventDrivenSwift-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/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/armv7k/EventDrivenSwift.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/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/armv7k/EventDrivenSwift_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.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/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/armv7k/EventDrivenSwift-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64_32 Compiling EventPoolBalancer.swift, EventPoolBalancing.swift, EventPoolScaler.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftDriver\ Compilation\ Requirements EventDrivenSwift normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name EventDrivenSwift -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64_32/EventDrivenSwift.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -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-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64_32/EventDrivenSwift-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/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64_32/EventDrivenSwift.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/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64_32/EventDrivenSwift_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.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/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64_32/EventDrivenSwift-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/EventDrivenSwift.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64/EventDrivenSwift.swiftmodule (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    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/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64/EventDrivenSwift.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/EventDrivenSwift.swiftmodule/arm64-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/EventDrivenSwift.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64/EventDrivenSwift.swiftdoc (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    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/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64/EventDrivenSwift.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/EventDrivenSwift.swiftmodule/arm64-apple-watchos.swiftdoc
SwiftDriverJobDiscovery normal armv7k Compiling KeyedObservable.swift (in target 'Observable' from project 'Observable')
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/EventDrivenSwift-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64/EventDrivenSwift-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64_32/EventDrivenSwift-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/armv7k/EventDrivenSwift-Swift.h (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64/EventDrivenSwift-Swift.h -arch arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64_32/EventDrivenSwift-Swift.h -arch armv7k /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/armv7k/EventDrivenSwift-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/EventDrivenSwift-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/EventDrivenSwift.swiftmodule/armv7k-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/armv7k/EventDrivenSwift.swiftmodule (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    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/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/armv7k/EventDrivenSwift.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/EventDrivenSwift.swiftmodule/armv7k-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/EventDrivenSwift.swiftmodule/armv7k-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/armv7k/EventDrivenSwift.swiftdoc (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    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/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/armv7k/EventDrivenSwift.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/EventDrivenSwift.swiftmodule/armv7k-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/EventDrivenSwift.swiftmodule/armv7k-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/armv7k/EventDrivenSwift.abi.json (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    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/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/armv7k/EventDrivenSwift.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/EventDrivenSwift.swiftmodule/armv7k-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/EventDrivenSwift.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64_32/EventDrivenSwift.swiftmodule (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    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/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64_32/EventDrivenSwift.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/EventDrivenSwift.swiftmodule/arm64_32-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/EventDrivenSwift.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64_32/EventDrivenSwift.swiftdoc (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    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/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64_32/EventDrivenSwift.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/EventDrivenSwift.swiftmodule/arm64_32-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/EventDrivenSwift.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64/EventDrivenSwift.abi.json (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    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/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64/EventDrivenSwift.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/EventDrivenSwift.swiftmodule/arm64-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/EventDrivenSwift.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64_32/EventDrivenSwift.abi.json (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    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/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64_32/EventDrivenSwift.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/EventDrivenSwift.swiftmodule/arm64_32-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/EventDrivenSwift.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/armv7k/EventDrivenSwift.swiftsourceinfo (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    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/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/armv7k/EventDrivenSwift.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/EventDrivenSwift.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/EventDrivenSwift.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64_32/EventDrivenSwift.swiftsourceinfo (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    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/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64_32/EventDrivenSwift.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/EventDrivenSwift.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/EventDrivenSwift.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64/EventDrivenSwift.swiftsourceinfo (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    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/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64/EventDrivenSwift.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/EventDrivenSwift.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
SwiftCompile normal arm64 Compiling\ EventPoolScaling.swift,\ EventPoolStaticScaler.swift,\ EventPooling.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolScaler/EventPoolScaling.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolScaler/Scalers/EventPoolStaticScaler.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPooling.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolScaler/EventPoolScaling.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolScaler/Scalers/EventPoolStaticScaler.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPooling.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 Compiling\ EventDispatching.swift,\ EventHandler.swift,\ EventHandling.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventDispatcher/EventDispatching.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandling.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventDispatcher/EventDispatching.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:135:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
        Task {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:17: note: closure captures 'self' which is accessible to code in the current task
                self.queueEvent(event, priority: priority)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                self.queueEvent(event, priority: priority)
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:17: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                self.queueEvent(event, priority: priority)
                ^~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:33: warning: sending 'event' risks causing data races; this is an error in the Swift 6 language mode
                self.queueEvent(event, priority: priority)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:33: note: task-isolated 'event' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                self.queueEvent(event, priority: priority)
                                ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:50: warning: sending 'priority' risks causing data races; this is an error in the Swift 6 language mode
                self.queueEvent(event, priority: priority)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:50: note: task-isolated 'priority' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                self.queueEvent(event, priority: priority)
                                                 ^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:143:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
        Task {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:17: note: closure captures 'self' which is accessible to code in the current task
                self.stackEvent(event, priority: priority)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                self.stackEvent(event, priority: priority)
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:17: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                self.stackEvent(event, priority: priority)
                ^~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:33: warning: sending 'event' risks causing data races; this is an error in the Swift 6 language mode
                self.stackEvent(event, priority: priority)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:33: note: task-isolated 'event' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                self.stackEvent(event, priority: priority)
                                ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:50: warning: sending 'priority' risks causing data races; this is an error in the Swift 6 language mode
                self.stackEvent(event, priority: priority)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:50: note: task-isolated 'priority' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                self.stackEvent(event, priority: priority)
                                                 ^~~~~~~~
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandling.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k Compiling\ EventReceiver.swift,\ EventReceiving.swift,\ EventThread.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventReceiver/EventReceiver.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventReceiver/EventReceiving.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventThread/EventThread.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventReceiver/EventReceiver.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventReceiver/EventReceiving.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventThread/EventThread.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling EventPoolScaling.swift, EventPoolStaticScaler.swift, EventPooling.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal arm64_32 Compiling\ EventCentral.swift,\ EventCentralable.swift,\ EventDispatchMethod.swift,\ EventPriority.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentral.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentralable.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventDispatchMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentral.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentral.swift:25:24: warning: static property '_shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var _shared: EventCentral = EventCentral()
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentral.swift:25:24: note: convert '_shared' to a 'let' constant to make 'Sendable' shared state immutable
    private static var _shared: EventCentral = EventCentral()
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentral.swift:25:24: note: add '@MainActor' to make static property '_shared' part of global actor 'MainActor'
    private static var _shared: EventCentral = EventCentral()
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentral.swift:25:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var _shared: EventCentral = EventCentral()
                       ^
    nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentralable.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventDispatchMethod.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:29:23: warning: static property 'inOrder' is not concurrency-safe because non-'Sendable' type 'ReversedCollection<[EventPriority]>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let inOrder = Self.allCases.reversed()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
public enum EventPriority: CaseIterable {
            ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:29:23: note: add '@MainActor' to make static property 'inOrder' part of global actor 'MainActor'
    public static let inOrder = Self.allCases.reversed()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:29:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let inOrder = Self.allCases.reversed()
                      ^
    nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling KeyedObservableThread.swift (in target 'Observable' from project 'Observable')
SwiftCompile normal arm64_32 Compiling\ Eventable.swift,\ EventListeners.swift,\ EventMethod.swift,\ EventDispatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Eventable.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Wrappers/EventListeners.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Wrappers/EventMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventDispatcher/EventDispatcher.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Eventable.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Wrappers/EventListeners.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Wrappers/EventMethod.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventDispatcher/EventDispatcher.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling EventListening.swift, EventListenerHandler.swift, EventListenerHandling.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftDriver\ Compilation Observable normal armv7k com.apple.xcode.tools.swift.compiler (in target 'Observable' from project 'Observable')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Observable -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/armv7k/Observable.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -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-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/armv7k/Observable-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/Observable.build/Debug-watchos/Observable.build/Objects-normal/armv7k/Observable.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/Observable.build/Debug-watchos/Observable.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/armv7k/Observable_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.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/Observable.build/Debug-watchos/Observable.build/Objects-normal/armv7k/Observable-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling EventListenable.swift, EventListener.swift, EventListenerInterest.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal armv7k Compiling\ EventCentral.swift,\ EventCentralable.swift,\ EventDispatchMethod.swift,\ EventPriority.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentral.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentralable.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventDispatchMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentral.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentral.swift:25:24: warning: static property '_shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var _shared: EventCentral = EventCentral()
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentral.swift:25:24: note: convert '_shared' to a 'let' constant to make 'Sendable' shared state immutable
    private static var _shared: EventCentral = EventCentral()
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentral.swift:25:24: note: add '@MainActor' to make static property '_shared' part of global actor 'MainActor'
    private static var _shared: EventCentral = EventCentral()
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentral.swift:25:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var _shared: EventCentral = EventCentral()
                       ^
    nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Central/EventCentralable.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventDispatchMethod.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:29:23: warning: static property 'inOrder' is not concurrency-safe because non-'Sendable' type 'ReversedCollection<[EventPriority]>' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let inOrder = Self.allCases.reversed()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
public enum EventPriority: CaseIterable {
            ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:29:23: note: add '@MainActor' to make static property 'inOrder' part of global actor 'MainActor'
    public static let inOrder = Self.allCases.reversed()
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:29:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let inOrder = Self.allCases.reversed()
                      ^
    nonisolated(unsafe)
SwiftCompile normal armv7k Compiling\ EventPoolBalancer.swift,\ EventPoolBalancing.swift,\ EventPoolScaler.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolBalancer/EventPoolBalancer.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolBalancer/EventPoolBalancing.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolScaler/EventPoolScaler.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolBalancer/EventPoolBalancer.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolBalancer/EventPoolBalancing.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolScaler/EventPoolScaler.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling EventPoolScaling.swift, EventPoolStaticScaler.swift, EventPooling.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal arm64 Compiling\ EventPoolBalancer.swift,\ EventPoolBalancing.swift,\ EventPoolScaler.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolBalancer/EventPoolBalancer.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolBalancer/EventPoolBalancing.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolScaler/EventPoolScaler.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolBalancer/EventPoolBalancer.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolBalancer/EventPoolBalancing.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolScaler/EventPoolScaler.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling EventCentral.swift, EventCentralable.swift, EventDispatchMethod.swift, EventPriority.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal armv7k Compiling\ EventDispatching.swift,\ EventHandler.swift,\ EventHandling.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventDispatcher/EventDispatching.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandling.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventDispatcher/EventDispatching.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:135:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
        Task {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:17: note: closure captures 'self' which is accessible to code in the current task
                self.queueEvent(event, priority: priority)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                self.queueEvent(event, priority: priority)
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:17: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                self.queueEvent(event, priority: priority)
                ^~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:33: warning: sending 'event' risks causing data races; this is an error in the Swift 6 language mode
                self.queueEvent(event, priority: priority)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:33: note: task-isolated 'event' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                self.queueEvent(event, priority: priority)
                                ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:50: warning: sending 'priority' risks causing data races; this is an error in the Swift 6 language mode
                self.queueEvent(event, priority: priority)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:137:50: note: task-isolated 'priority' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                self.queueEvent(event, priority: priority)
                                                 ^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:143:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
        Task {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:17: note: closure captures 'self' which is accessible to code in the current task
                self.stackEvent(event, priority: priority)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                self.stackEvent(event, priority: priority)
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:17: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                self.stackEvent(event, priority: priority)
                ^~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:33: warning: sending 'event' risks causing data races; this is an error in the Swift 6 language mode
                self.stackEvent(event, priority: priority)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:33: note: task-isolated 'event' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                self.stackEvent(event, priority: priority)
                                ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:50: warning: sending 'priority' risks causing data races; this is an error in the Swift 6 language mode
                self.stackEvent(event, priority: priority)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:145:50: note: task-isolated 'priority' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                self.stackEvent(event, priority: priority)
                                                 ^~~~~~~~
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandling.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling EventDispatching.swift, EventHandler.swift, EventHandling.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal armv7k Compiling\ EventListenable.swift,\ EventListener.swift,\ EventListenerInterest.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListenable.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListenerInterest.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListenable.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:84:25: warning: capture of 'listener' with non-sendable type 'EventListener.EventListenerContainer' in a '@Sendable' closure
                        listener.callback(event.event, priority, event.dispatchTime)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:29:19: note: consider making struct 'EventListenerContainer' conform to the 'Sendable' protocol
    public struct EventListenerContainer {
                  ^
                                         : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:84:43: warning: capture of 'event' with non-sendable type 'EventHandler.EventDispatchContainer' in a '@Sendable' closure
                        listener.callback(event.event, priority, event.dispatchTime)
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:30:19: note: consider making struct 'EventDispatchContainer' conform to the 'Sendable' protocol
    public struct EventDispatchContainer {
                  ^
                                         : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:84:56: warning: capture of 'priority' with non-sendable type 'EventPriority' in a '@Sendable' closure
                        listener.callback(event.event, priority, event.dispatchTime)
                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
public enum EventPriority: CaseIterable {
            ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:81:22: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
                Task { // We raise a Task because we don't want the entire Listener blocked in the event the dispatchQueue is busy or blocked!
                     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:82:41: note: closure captures non-Sendable 'listener'
                    let dispatchQueue = listener.dispatchQueue ?? DispatchQueue.main
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:84:43: note: closure captures non-Sendable 'event'
                        listener.callback(event.event, priority, event.dispatchTime)
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:84:56: note: closure captures non-Sendable 'priority'
                        listener.callback(event.event, priority, event.dispatchTime)
                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:90:22: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
                Task {
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:91:21: note: closure captures non-Sendable 'listener'
                    listener.callback(event.event, priority, event.dispatchTime)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:91:39: note: closure captures non-Sendable 'event'
                    listener.callback(event.event, priority, event.dispatchTime)
                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:91:52: note: closure captures non-Sendable 'priority'
                    listener.callback(event.event, priority, event.dispatchTime)
                                                   ^
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListenerInterest.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Eventable.swift, EventListeners.swift, EventMethod.swift, EventDispatcher.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal arm64_32 Compiling\ EventListening.swift,\ EventListenerHandler.swift,\ EventListenerHandling.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListening.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/Handler/EventListenerHandler.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/Handler/EventListenerHandling.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListening.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/Handler/EventListenerHandler.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/Handler/EventListenerHandling.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling EventDispatching.swift, EventHandler.swift, EventHandling.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal arm64 Compiling\ EventPool.swift,\ EventPoolLowestLoadBalancer.swift,\ EventPoolRoundRobinBalancer.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPool.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolBalancer/Balancers/EventPoolLowestLoadBalancer.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolBalancer/Balancers/EventPoolRoundRobinBalancer.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPool.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolBalancer/Balancers/EventPoolLowestLoadBalancer.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolBalancer/Balancers/EventPoolRoundRobinBalancer.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling EventPoolBalancer.swift, EventPoolBalancing.swift, EventPoolScaler.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal arm64_32 Compiling\ EventThreadable.swift,\ UIEventThread.swift,\ UIEventThreadable.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventThread/EventThreadable.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThreadable.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventThread/EventThreadable.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:19:24: warning: static property '_shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var _shared: UIEventThreadable? = nil
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:19:24: note: convert '_shared' to a 'let' constant to make 'Sendable' shared state immutable
    private static var _shared: UIEventThreadable? = nil
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:19:24: note: add '@MainActor' to make static property '_shared' part of global actor 'MainActor'
    private static var _shared: UIEventThreadable? = nil
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:19:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var _shared: UIEventThreadable? = nil
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:29:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
        Task { /// Have to use a Task because this method is not `async`
             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:17: note: closure captures 'self' which is accessible to code in the current task
                super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:17: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
                ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:46: warning: sending 'callback' risks causing data races; this is an error in the Swift 6 language mode
                super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:46: note: task-isolated 'callback' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
                                             ^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:66: warning: sending 'forEvent' risks causing data races; this is an error in the Swift 6 language mode
                super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:66: note: task-isolated 'forEvent' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
                                                                 ^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:86: warning: sending 'priority' risks causing data races; this is an error in the Swift 6 language mode
                super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:86: note: task-isolated 'priority' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
                                                                                     ^~~~~~~~
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThreadable.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling EventPoolBalancer.swift, EventPoolBalancing.swift, EventPoolScaler.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal arm64_32 Compiling\ EventListenable.swift,\ EventListener.swift,\ EventListenerInterest.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListenable.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListenerInterest.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListenable.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:84:25: warning: capture of 'listener' with non-sendable type 'EventListener.EventListenerContainer' in a '@Sendable' closure
                        listener.callback(event.event, priority, event.dispatchTime)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:29:19: note: consider making struct 'EventListenerContainer' conform to the 'Sendable' protocol
    public struct EventListenerContainer {
                  ^
                                         : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:84:43: warning: capture of 'event' with non-sendable type 'EventHandler.EventDispatchContainer' in a '@Sendable' closure
                        listener.callback(event.event, priority, event.dispatchTime)
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventHandler/EventHandler.swift:30:19: note: consider making struct 'EventDispatchContainer' conform to the 'Sendable' protocol
    public struct EventDispatchContainer {
                  ^
                                         : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:84:56: warning: capture of 'priority' with non-sendable type 'EventPriority' in a '@Sendable' closure
                        listener.callback(event.event, priority, event.dispatchTime)
                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/EventPriority.swift:16:13: note: consider making enum 'EventPriority' conform to the 'Sendable' protocol
public enum EventPriority: CaseIterable {
            ^
                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:81:22: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
                Task { // We raise a Task because we don't want the entire Listener blocked in the event the dispatchQueue is busy or blocked!
                     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:82:41: note: closure captures non-Sendable 'listener'
                    let dispatchQueue = listener.dispatchQueue ?? DispatchQueue.main
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:84:43: note: closure captures non-Sendable 'event'
                        listener.callback(event.event, priority, event.dispatchTime)
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:84:56: note: closure captures non-Sendable 'priority'
                        listener.callback(event.event, priority, event.dispatchTime)
                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:90:22: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
                Task {
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:91:21: note: closure captures non-Sendable 'listener'
                    listener.callback(event.event, priority, event.dispatchTime)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:91:39: note: closure captures non-Sendable 'event'
                    listener.callback(event.event, priority, event.dispatchTime)
                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListener.swift:91:52: note: closure captures non-Sendable 'priority'
                    listener.callback(event.event, priority, event.dispatchTime)
                                                   ^
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventListener/EventListenerInterest.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling EventCentral.swift, EventCentralable.swift, EventDispatchMethod.swift, EventPriority.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal armv7k Compiling\ Eventable.swift,\ EventListeners.swift,\ EventMethod.swift,\ EventDispatcher.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Eventable.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Wrappers/EventListeners.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Wrappers/EventMethod.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventDispatcher/EventDispatcher.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Eventable.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Wrappers/EventListeners.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/Event/Wrappers/EventMethod.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventDispatcher/EventDispatcher.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling EventCentral.swift, EventCentralable.swift, EventDispatchMethod.swift, EventPriority.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal arm64_32 Compiling\ EventReceiver.swift,\ EventReceiving.swift,\ EventThread.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventReceiver/EventReceiver.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventReceiver/EventReceiving.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventThread/EventThread.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventReceiver/EventReceiver.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventReceiver/EventReceiving.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventThread/EventThread.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling EventPool.swift, EventPoolLowestLoadBalancer.swift, EventPoolRoundRobinBalancer.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal armv7k Compiling\ EventThreadable.swift,\ UIEventThread.swift,\ UIEventThreadable.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventThread/EventThreadable.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThreadable.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventThread/EventThreadable.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:19:24: warning: static property '_shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var _shared: UIEventThreadable? = nil
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:19:24: note: convert '_shared' to a 'let' constant to make 'Sendable' shared state immutable
    private static var _shared: UIEventThreadable? = nil
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:19:24: note: add '@MainActor' to make static property '_shared' part of global actor 'MainActor'
    private static var _shared: UIEventThreadable? = nil
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:19:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var _shared: UIEventThreadable? = nil
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:29:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
        Task { /// Have to use a Task because this method is not `async`
             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:17: note: closure captures 'self' which is accessible to code in the current task
                super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:17: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
                ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:46: warning: sending 'callback' risks causing data races; this is an error in the Swift 6 language mode
                super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:46: note: task-isolated 'callback' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
                                             ^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:66: warning: sending 'forEvent' risks causing data races; this is an error in the Swift 6 language mode
                super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:66: note: task-isolated 'forEvent' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
                                                                 ^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:86: warning: sending 'priority' risks causing data races; this is an error in the Swift 6 language mode
                super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:86: note: task-isolated 'priority' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
                                                                                     ^~~~~~~~
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThreadable.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal armv7k Compiling EventReceiver.swift, EventReceiving.swift, EventThread.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal armv7k Compiling\ EventPool.swift,\ EventPoolLowestLoadBalancer.swift,\ EventPoolRoundRobinBalancer.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPool.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolBalancer/Balancers/EventPoolLowestLoadBalancer.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolBalancer/Balancers/EventPoolRoundRobinBalancer.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPool.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolBalancer/Balancers/EventPoolLowestLoadBalancer.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventPool/EventPoolBalancer/Balancers/EventPoolRoundRobinBalancer.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling Eventable.swift, EventListeners.swift, EventMethod.swift, EventDispatcher.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal arm64 Compiling\ EventReceiver.swift,\ EventReceiving.swift,\ EventThread.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventReceiver/EventReceiver.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventReceiver/EventReceiving.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventThread/EventThread.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventReceiver/EventReceiver.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventReceiver/EventReceiving.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventThread/EventThread.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling EventListening.swift, EventListenerHandler.swift, EventListenerHandling.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal arm64 Compiling\ EventThreadable.swift,\ UIEventThread.swift,\ UIEventThreadable.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventThread/EventThreadable.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThreadable.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/EventThread/EventThreadable.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:19:24: warning: static property '_shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    private static var _shared: UIEventThreadable? = nil
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:19:24: note: convert '_shared' to a 'let' constant to make 'Sendable' shared state immutable
    private static var _shared: UIEventThreadable? = nil
                   ~~~ ^
                   let
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:19:24: note: add '@MainActor' to make static property '_shared' part of global actor 'MainActor'
    private static var _shared: UIEventThreadable? = nil
                       ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:19:24: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    private static var _shared: UIEventThreadable? = nil
                       ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:29:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
        Task { /// Have to use a Task because this method is not `async`
             ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:17: note: closure captures 'self' which is accessible to code in the current task
                super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
                ^
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:17: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
                ^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:46: warning: sending 'callback' risks causing data races; this is an error in the Swift 6 language mode
                super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:46: note: task-isolated 'callback' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
                                             ^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:66: warning: sending 'forEvent' risks causing data races; this is an error in the Swift 6 language mode
                super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:66: note: task-isolated 'forEvent' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
                                                                 ^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:86: warning: sending 'priority' risks causing data races; this is an error in the Swift 6 language mode
                super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThread.swift:31:86: note: task-isolated 'priority' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                super.callTypedEventCallback(callback, forEvent: forEvent, priority: priority, dispatchTime: dispatchTime)
                                                                                     ^~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/EventDrivenSwift/UIEventThread/UIEventThreadable.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64_32 Compiling EventThreadable.swift, UIEventThread.swift, UIEventThreadable.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftDriverJobDiscovery normal armv7k Compiling EventDispatching.swift, EventHandler.swift, EventHandling.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ThreadSafeSwift.o (in target 'ThreadSafeSwift' from project 'ThreadSafeSwift')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/ThreadSafeSwift
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ThreadSafeSwift.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/armv7k/Binary/Observable.o normal armv7k (in target 'Observable' from project 'Observable')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Observable
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos6.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/armv7k/Observable.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/armv7k/Observable_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/armv7k/Observable_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/armv7k/Observable.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/armv7k/Binary/Observable.o
SwiftDriverJobDiscovery normal armv7k Compiling EventThreadable.swift, UIEventThread.swift, UIEventThreadable.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/arm64_32/Binary/Observable.o normal arm64_32 (in target 'Observable' from project 'Observable')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Observable
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos6.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/arm64_32/Observable.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/arm64_32/Observable_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/arm64_32/Observable_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/arm64_32/Observable.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/arm64_32/Binary/Observable.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/arm64/Binary/Observable.o normal arm64 (in target 'Observable' from project 'Observable')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Observable
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos6.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/arm64/Observable.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/arm64/Observable_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/arm64/Observable_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/arm64/Observable.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/arm64/Binary/Observable.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Observable.o normal arm64\ armv7k\ arm64_32 (in target 'Observable' from project 'Observable')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Observable
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/arm64/Binary/Observable.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/armv7k/Binary/Observable.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/arm64_32/Binary/Observable.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Observable.o
ExtractAppIntentsMetadata (in target 'Observable' from project 'Observable')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Observable
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name Observable --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk --xcode-version 16E140 --platform-family watchOS --deployment-target 6.0 --bundle-identifier observable.Observable --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Observable.appintents --target-triple arm64-apple-watchos6.0 --target-triple armv7k-apple-watchos6.0 --target-triple arm64_32-apple-watchos6.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Observable.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/arm64/Observable_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/armv7k/Observable_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/arm64_32/Observable_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/armv7k/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/arm64_32/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/arm64/Observable.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/armv7k/Observable.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/arm64_32/Observable.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Observable.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Observable.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/arm64/Observable.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/armv7k/Observable.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Observable.build/Debug-watchos/Observable.build/Objects-normal/arm64_32/Observable.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-26 21:01:06.274 appintentsmetadataprocessor[867:4978] Starting appintentsmetadataprocessor export
2025-04-26 21:01:06.314 appintentsmetadataprocessor[867:4978] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal armv7k Compiling EventListenable.swift, EventListener.swift, EventListenerInterest.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftDriverJobDiscovery normal armv7k Compiling Eventable.swift, EventListeners.swift, EventMethod.swift, EventDispatcher.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftDriverJobDiscovery normal arm64_32 Compiling EventReceiver.swift, EventReceiving.swift, EventThread.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftDriverJobDiscovery normal arm64 Compiling EventPool.swift, EventPoolLowestLoadBalancer.swift, EventPoolRoundRobinBalancer.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Observable.o (in target 'Observable' from project 'Observable')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Observable
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Observable.o
SwiftDriverJobDiscovery normal arm64_32 Compiling EventListenable.swift, EventListener.swift, EventListenerInterest.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftDriver\ Compilation EventDrivenSwift normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name EventDrivenSwift -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64_32/EventDrivenSwift.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -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-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64_32/EventDrivenSwift-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/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64_32/EventDrivenSwift.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/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64_32/EventDrivenSwift_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.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/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64_32/EventDrivenSwift-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64_32/Binary/EventDrivenSwift.o normal arm64_32 (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos6.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64_32/EventDrivenSwift.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64_32/EventDrivenSwift_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64_32/EventDrivenSwift_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64_32/EventDrivenSwift.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64_32/Binary/EventDrivenSwift.o
SwiftDriverJobDiscovery normal arm64 Compiling EventThreadable.swift, UIEventThread.swift, UIEventThreadable.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftDriverJobDiscovery normal arm64 Compiling EventReceiver.swift, EventReceiving.swift, EventThread.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftDriver\ Compilation EventDrivenSwift normal arm64 com.apple.xcode.tools.swift.compiler (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name EventDrivenSwift -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64/EventDrivenSwift.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -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-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64/EventDrivenSwift-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/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64/EventDrivenSwift.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/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64/EventDrivenSwift_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.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/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64/EventDrivenSwift-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64/Binary/EventDrivenSwift.o normal arm64 (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos6.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64/EventDrivenSwift.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64/EventDrivenSwift_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64/EventDrivenSwift_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64/EventDrivenSwift.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64/Binary/EventDrivenSwift.o
SwiftDriverJobDiscovery normal armv7k Compiling EventPool.swift, EventPoolLowestLoadBalancer.swift, EventPoolRoundRobinBalancer.swift (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
SwiftDriver\ Compilation EventDrivenSwift normal armv7k com.apple.xcode.tools.swift.compiler (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name EventDrivenSwift -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/armv7k/EventDrivenSwift.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -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-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/armv7k/EventDrivenSwift-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/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/armv7k/EventDrivenSwift.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/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/armv7k/EventDrivenSwift_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.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/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/armv7k/EventDrivenSwift-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/armv7k/Binary/EventDrivenSwift.o normal armv7k (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos6.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/armv7k/EventDrivenSwift.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/armv7k/EventDrivenSwift_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/armv7k/EventDrivenSwift_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/armv7k/EventDrivenSwift.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/armv7k/Binary/EventDrivenSwift.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/EventDrivenSwift.o normal arm64\ armv7k\ arm64_32 (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64/Binary/EventDrivenSwift.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/armv7k/Binary/EventDrivenSwift.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64_32/Binary/EventDrivenSwift.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/EventDrivenSwift.o
ExtractAppIntentsMetadata (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name EventDrivenSwift --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk --xcode-version 16E140 --platform-family watchOS --deployment-target 6.0 --bundle-identifier spi-builder-workspace.EventDrivenSwift --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/EventDrivenSwift.appintents --target-triple arm64-apple-watchos6.0 --target-triple armv7k-apple-watchos6.0 --target-triple arm64_32-apple-watchos6.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/EventDrivenSwift.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64/EventDrivenSwift_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/armv7k/EventDrivenSwift_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64_32/EventDrivenSwift_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/armv7k/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64_32/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64/EventDrivenSwift.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/armv7k/EventDrivenSwift.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64_32/EventDrivenSwift.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/EventDrivenSwift.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/EventDrivenSwift.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64/EventDrivenSwift.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/armv7k/EventDrivenSwift.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EventDrivenSwift.build/Debug-watchos/EventDrivenSwift.build/Objects-normal/arm64_32/EventDrivenSwift.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-26 21:01:06.467 appintentsmetadataprocessor[875:5029] Starting appintentsmetadataprocessor export
2025-04-26 21:01:06.501 appintentsmetadataprocessor[875:5029] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/EventDrivenSwift.o (in target 'EventDrivenSwift' from project 'EventDrivenSwift')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/EventDrivenSwift.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
    {
      "identity" : "threadsafeswift",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.1.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Flowduino/ThreadSafeSwift.git"
    },
    {
      "identity" : "observable",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "2.0.0",
            "upper_bound" : "3.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Flowduino/Observable.git"
    }
  ],
  "manifest_display_name" : "EventDrivenSwift",
  "name" : "EventDrivenSwift",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "EventDrivenSwift",
      "targets" : [
        "EventDrivenSwift"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "EventDrivenSwiftTests",
      "module_type" : "SwiftTarget",
      "name" : "EventDrivenSwiftTests",
      "path" : "Tests/EventDrivenSwiftTests",
      "product_dependencies" : [
        "ThreadSafeSwift",
        "Observable"
      ],
      "sources" : [
        "BasicEventListenerTests.swift",
        "BasicEventPoolTests.swift",
        "BasicEventSchedulingTests.swift",
        "BasicEventThreadTests.swift"
      ],
      "target_dependencies" : [
        "EventDrivenSwift"
      ],
      "type" : "test"
    },
    {
      "c99name" : "EventDrivenSwift",
      "module_type" : "SwiftTarget",
      "name" : "EventDrivenSwift",
      "path" : "Sources/EventDrivenSwift",
      "product_dependencies" : [
        "ThreadSafeSwift",
        "Observable"
      ],
      "product_memberships" : [
        "EventDrivenSwift"
      ],
      "sources" : [
        "Central/EventCentral.swift",
        "Central/EventCentralable.swift",
        "Event/EventDispatchMethod.swift",
        "Event/EventPriority.swift",
        "Event/Eventable.swift",
        "Event/Wrappers/EventListeners.swift",
        "Event/Wrappers/EventMethod.swift",
        "EventDispatcher/EventDispatcher.swift",
        "EventDispatcher/EventDispatching.swift",
        "EventHandler/EventHandler.swift",
        "EventHandler/EventHandling.swift",
        "EventListener/EventListenable.swift",
        "EventListener/EventListener.swift",
        "EventListener/EventListenerInterest.swift",
        "EventListener/EventListening.swift",
        "EventListener/Handler/EventListenerHandler.swift",
        "EventListener/Handler/EventListenerHandling.swift",
        "EventPool/EventPool.swift",
        "EventPool/EventPoolBalancer/Balancers/EventPoolLowestLoadBalancer.swift",
        "EventPool/EventPoolBalancer/Balancers/EventPoolRoundRobinBalancer.swift",
        "EventPool/EventPoolBalancer/EventPoolBalancer.swift",
        "EventPool/EventPoolBalancer/EventPoolBalancing.swift",
        "EventPool/EventPoolScaler/EventPoolScaler.swift",
        "EventPool/EventPoolScaler/EventPoolScaling.swift",
        "EventPool/EventPoolScaler/Scalers/EventPoolStaticScaler.swift",
        "EventPool/EventPooling.swift",
        "EventReceiver/EventReceiver.swift",
        "EventReceiver/EventReceiving.swift",
        "EventThread/EventThread.swift",
        "EventThread/EventThreadable.swift",
        "UIEventThread/UIEventThread.swift",
        "UIEventThread/UIEventThreadable.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.6"
}
Done.