The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of iOSMcuManagerLibrary, reference main (81a0a9), with Swift 6.1 for iOS using Xcode 16.3 on 11 Sep 2025 22:09:30 UTC.

Swift 6 data race errors: 18

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme iOSMcuManagerLibrary-Package -destination generic/platform=iOS 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

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleTransportConfguration.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleTransportWriteState.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleTransportWriteState.swift:38:20: warning: capture of 'self' with non-sendable type 'McuMgrBleTransportWriteState' in a '@Sendable' closure
            assert(self.state[sequenceNumber]?.writeLock.isOpen ?? true)
                   ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleTransportWriteState.swift:18:13: note: class 'McuMgrBleTransportWriteState' does not conform to the 'Sendable' protocol
final class McuMgrBleTransportWriteState {
            ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleTransportWriteState.swift:39:86: warning: capture of 'lock' with non-sendable type 'ResultLock' in a '@Sendable' closure
            self.state[sequenceNumber] = (sequenceNumber: sequenceNumber, writeLock: lock, nil, nil)
                                                                                     ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Utils/ResultLock.swift:11:14: note: class 'ResultLock' does not conform to the 'Sendable' protocol
public class ResultLock {
             ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleTransportWriteState.swift:38:20: warning: implicit capture of 'self' requires that 'McuMgrBleTransportWriteState' conforms to 'Sendable'; this is an error in the Swift 6 language mode
            assert(self.state[sequenceNumber]?.writeLock.isOpen ?? true)
                   ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleTransportWriteState.swift:18:13: note: class 'McuMgrBleTransportWriteState' does not conform to the 'Sendable' protocol
final class McuMgrBleTransportWriteState {
            ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleTransportWriteState.swift:44:30: warning: capture of 'writeClosure' with non-sendable type '() -> Void' in a '@Sendable' closure
        lockingQueue.async { writeClosure() }
                             ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleTransportWriteState.swift:44:30: note: a function type must be marked '@Sendable' to conform to 'Sendable'
        lockingQueue.async { writeClosure() }
                             ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleTransportWriteState.swift:49:16: warning: capture of 'self' with non-sendable type 'McuMgrBleTransportWriteState' in a '@Sendable' closure
            if self.state[sequenceNumber]?.chunk == nil {
               ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleTransportWriteState.swift:18:13: note: class 'McuMgrBleTransportWriteState' does not conform to the 'Sendable' protocol
final class McuMgrBleTransportWriteState {
            ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleTransportWriteState.swift:89:13: warning: capture of 'self' with non-sendable type 'McuMgrBleTransportWriteState' in a '@Sendable' closure
            self.state[sequenceNumber]?.writeLock.open(error)
            ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleTransportWriteState.swift:18:13: note: class 'McuMgrBleTransportWriteState' does not conform to the 'Sendable' protocol
final class McuMgrBleTransportWriteState {
            ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleTransportWriteState.swift:95:13: warning: capture of 'self' with non-sendable type 'McuMgrBleTransportWriteState' in a '@Sendable' closure
            self.state[sequenceNumber] = nil
            ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleTransportWriteState.swift:18:13: note: class 'McuMgrBleTransportWriteState' does not conform to the 'Sendable' protocol
final class McuMgrBleTransportWriteState {
            ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleTransportWriteState.swift:101:13: warning: capture of 'self' with non-sendable type 'McuMgrBleTransportWriteState' in a '@Sendable' closure
            self.state.forEach { _, value in
            ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleTransportWriteState.swift:18:13: note: class 'McuMgrBleTransportWriteState' does not conform to the 'Sendable' protocol
final class McuMgrBleTransportWriteState {
            ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleTransportWriteState.swift:109:13: warning: capture of 'self' with non-sendable type 'McuMgrBleTransportWriteState' in a '@Sendable' closure
            self.state[sequenceNumber]?.writeLock.open(error)
            ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleTransportWriteState.swift:18:13: note: class 'McuMgrBleTransportWriteState' does not conform to the 'Sendable' protocol
final class McuMgrBleTransportWriteState {
            ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Extensions/CBOR+McuManager.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Extensions/Data+McuManager.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Extensions/Data+McuManager.swift:39:27: warning: static property 'upperCase' is not concurrency-safe because non-'Sendable' type 'Data.HexEncodingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let upperCase = HexEncodingOptions(rawValue: 1 << 0)
                          ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Extensions/Data+McuManager.swift:38:12: note: consider making struct 'HexEncodingOptions' conform to the 'Sendable' protocol
    struct HexEncodingOptions: OptionSet {
           ^
                                        , Sendable
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Extensions/Data+McuManager.swift:39:27: note: add '@MainActor' to make static property 'upperCase' part of global actor 'MainActor'
        public static let upperCase = HexEncodingOptions(rawValue: 1 << 0)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Extensions/Data+McuManager.swift:39:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let upperCase = HexEncodingOptions(rawValue: 1 << 0)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Extensions/Data+McuManager.swift:40:27: warning: static property 'byteSpacing' is not concurrency-safe because non-'Sendable' type 'Data.HexEncodingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let byteSpacing = HexEncodingOptions(rawValue: 1 << 1)
                          ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Extensions/Data+McuManager.swift:38:12: note: consider making struct 'HexEncodingOptions' conform to the 'Sendable' protocol
    struct HexEncodingOptions: OptionSet {
           ^
                                        , Sendable
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Extensions/Data+McuManager.swift:40:27: note: add '@MainActor' to make static property 'byteSpacing' part of global actor 'MainActor'
        public static let byteSpacing = HexEncodingOptions(rawValue: 1 << 1)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Extensions/Data+McuManager.swift:40:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let byteSpacing = HexEncodingOptions(rawValue: 1 << 1)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Extensions/Data+McuManager.swift:41:27: warning: static property 'prepend0x' is not concurrency-safe because non-'Sendable' type 'Data.HexEncodingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let prepend0x = HexEncodingOptions(rawValue: 1 << 2)
                          ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Extensions/Data+McuManager.swift:38:12: note: consider making struct 'HexEncodingOptions' conform to the 'Sendable' protocol
    struct HexEncodingOptions: OptionSet {
           ^
                                        , Sendable
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Extensions/Data+McuManager.swift:41:27: note: add '@MainActor' to make static property 'prepend0x' part of global actor 'MainActor'
        public static let prepend0x = HexEncodingOptions(rawValue: 1 << 2)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Extensions/Data+McuManager.swift:41:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let prepend0x = HexEncodingOptions(rawValue: 1 << 2)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Extensions/Data+McuManager.swift:42:27: warning: static property 'twoByteSpacing' is not concurrency-safe because non-'Sendable' type 'Data.HexEncodingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let twoByteSpacing = HexEncodingOptions(rawValue: 1 << 3)
                          ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Extensions/Data+McuManager.swift:38:12: note: consider making struct 'HexEncodingOptions' conform to the 'Sendable' protocol
    struct HexEncodingOptions: OptionSet {
           ^
                                        , Sendable
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Extensions/Data+McuManager.swift:42:27: note: add '@MainActor' to make static property 'twoByteSpacing' part of global actor 'MainActor'
        public static let twoByteSpacing = HexEncodingOptions(rawValue: 1 << 3)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Extensions/Data+McuManager.swift:42:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let twoByteSpacing = HexEncodingOptions(rawValue: 1 << 3)
                          ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Extensions/Data+McuManager.swift:43:27: warning: static property 'reverseEndianness' is not concurrency-safe because non-'Sendable' type 'Data.HexEncodingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
        public static let reverseEndianness = HexEncodingOptions(rawValue: 1 << 4)
                          ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Extensions/Data+McuManager.swift:38:12: note: consider making struct 'HexEncodingOptions' conform to the 'Sendable' protocol
    struct HexEncodingOptions: OptionSet {
           ^
                                        , Sendable
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Extensions/Data+McuManager.swift:43:27: note: add '@MainActor' to make static property 'reverseEndianness' part of global actor 'MainActor'
        public static let reverseEndianness = HexEncodingOptions(rawValue: 1 << 4)
                          ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Extensions/Data+McuManager.swift:43:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        public static let reverseEndianness = HexEncodingOptions(rawValue: 1 << 4)
                          ^
        nonisolated(unsafe)
SwiftEmitModule normal arm64 Emitting\ module\ for\ iOS_BLE_Library_Mock (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
EmitSwiftModule normal arm64 (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ McuMgrBleROBWriteBuffer.swift,\ McuMgrBleTransport+CBCentralManagerDelegate.swift,\ McuMgrBleTransport+CBPeripheralDelegate.swift,\ McuMgrBleTransport.swift /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleROBWriteBuffer.swift /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleTransport+CBCentralManagerDelegate.swift /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleTransport+CBPeripheralDelegate.swift /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleTransport.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleROBWriteBuffer.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleROBWriteBuffer.swift:86:13: warning: capture of 'self' with non-sendable type 'McuMgrBleROBWriteBuffer' in a '@Sendable' closure
            window.append(contentsOf: Write.split(writeNumber, sequenceNumber: sequenceNumber, chunks: data, peripheral: peripheral, characteristic: characteristic, callback: callback))
            ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleROBWriteBuffer.swift:22:22: note: class 'McuMgrBleROBWriteBuffer' does not conform to the 'Sendable' protocol
internal final class McuMgrBleROBWriteBuffer {
                     ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleROBWriteBuffer.swift:86:122: warning: capture of 'peripheral' with non-sendable type 'CBPeripheral' in a '@Sendable' closure
            window.append(contentsOf: Write.split(writeNumber, sequenceNumber: sequenceNumber, chunks: data, peripheral: peripheral, characteristic: characteristic, callback: callback))
                                                                                                                         ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/CoreBluetooth.framework/Headers/CBPeripheral.h:55:28: note: class 'CBPeripheral' does not conform to the 'Sendable' protocol
CB_EXTERN_CLASS @interface CBPeripheral : CBPeer
                           ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleROBWriteBuffer.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreBluetooth'
import CoreBluetooth
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleROBWriteBuffer.swift:86:150: warning: capture of 'characteristic' with non-sendable type 'CBCharacteristic' in a '@Sendable' closure
            window.append(contentsOf: Write.split(writeNumber, sequenceNumber: sequenceNumber, chunks: data, peripheral: peripheral, characteristic: characteristic, callback: callback))
                                                                                                                                                     ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/CoreBluetooth.framework/Headers/CBCharacteristic.h:57:28: note: class 'CBCharacteristic' does not conform to the 'Sendable' protocol
CB_EXTERN_CLASS @interface CBCharacteristic : CBAttribute
                           ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleROBWriteBuffer.swift:86:176: warning: capture of 'callback' with non-sendable type '(Data?, McuMgrTransportError?) -> Void' in a '@Sendable' closure
            window.append(contentsOf: Write.split(writeNumber, sequenceNumber: sequenceNumber, chunks: data, peripheral: peripheral, characteristic: characteristic, callback: callback))
                                                                                                                                                                               ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleROBWriteBuffer.swift:86:176: note: a function type must be marked '@Sendable' to conform to 'Sendable'
            window.append(contentsOf: Write.split(writeNumber, sequenceNumber: sequenceNumber, chunks: data, peripheral: peripheral, characteristic: characteristic, callback: callback))
                                                                                                                                                                               ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleROBWriteBuffer.swift:89:71: warning: implicit capture of 'self' requires that 'McuMgrBleROBWriteBuffer' conforms to 'Sendable'; this is an error in the Swift 6 language mode
            log(msg: "↵ Enqueued [Seq. No: \(sequenceNumber)] {WR \(writeNumber)}.", atLevel: .debug)
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleROBWriteBuffer.swift:22:22: note: class 'McuMgrBleROBWriteBuffer' does not conform to the 'Sendable' protocol
internal final class McuMgrBleROBWriteBuffer {
                     ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleROBWriteBuffer.swift:102:19: warning: capture of 'self' with non-sendable type 'McuMgrBleROBWriteBuffer' in a '@Sendable' closure
            guard pausedWritesWithoutResponse else { return }
                  ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleROBWriteBuffer.swift:22:22: note: class 'McuMgrBleROBWriteBuffer' does not conform to the 'Sendable' protocol
internal final class McuMgrBleROBWriteBuffer {
                     ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleROBWriteBuffer.swift:109:43: warning: capture of 'peripheral' with non-sendable type 'CBPeripheral' in a '@Sendable' closure
            unsafe_writeThroughWindow(to: peripheral)
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/CoreBluetooth.framework/Headers/CBPeripheral.h:55:28: note: class 'CBPeripheral' does not conform to the 'Sendable' protocol
CB_EXTERN_CLASS @interface CBPeripheral : CBPeer
                           ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleROBWriteBuffer.swift:125:31: warning: capture of 'self' with non-sendable type 'McuMgrBleROBWriteBuffer?' in a '@Sendable' closure
                    guard let self, pausedWritesWithoutResponse else { return }
                              ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleROBWriteBuffer.swift:22:22: note: class 'McuMgrBleROBWriteBuffer' does not conform to the 'Sendable' protocol
internal final class McuMgrBleROBWriteBuffer {
                     ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleROBWriteBuffer.swift:128:51: warning: capture of 'peripheral' with non-sendable type 'CBPeripheral' in a '@Sendable' closure
                    unsafe_writeThroughWindow(to: peripheral)
                                                  ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/CoreBluetooth.framework/Headers/CBPeripheral.h:55:28: note: class 'CBPeripheral' does not conform to the 'Sendable' protocol
CB_EXTERN_CLASS @interface CBPeripheral : CBPeer
                           ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleTransport+CBCentralManagerDelegate.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleTransport+CBPeripheralDelegate.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleTransport.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleTransport.swift:212:24: warning: capture of 'self' with non-sendable type 'McuMgrBleTransport' in a '@Sendable' closure
                switch self._send(data: data, timeoutInSeconds: timeout) {
                       ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleTransport.swift:37:14: note: class 'McuMgrBleTransport' does not conform to the 'Sendable' protocol
public class McuMgrBleTransport: NSObject {
             ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleTransport.swift:229:25: warning: capture of 'callback' with non-sendable type 'McuMgrCallback<T>' (aka '(Optional<T>, Optional<any Error>) -> ()') in a '@Sendable' closure
                        callback(nil, error)
                        ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleTransport.swift:229:25: note: a function type must be marked '@Sendable' to conform to 'Sendable'
                        callback(nil, error)
                        ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleTransport.swift:75:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                self.notifyPeripheralDelegate()
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleTransport.swift:75: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.notifyPeripheralDelegate()
                ^~~~
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleTransport.swift:109:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                self.notifyPeripheralDelegate()
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Bluetooth/McuMgrBleTransport.swift:109: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.notifyPeripheralDelegate()
                ^~~~
SwiftCompile normal arm64 Compiling\ McuMgrHeader.swift,\ McuMgrImage.swift,\ McuMgrLogDelegate.swift,\ McuMgrManifest.swift /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/McuMgrHeader.swift /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/McuMgrImage.swift /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/McuMgrLogDelegate.swift /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/McuMgrManifest.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/McuMgrHeader.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/McuMgrImage.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/McuMgrLogDelegate.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/McuMgrManifest.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling CBMPeripheralSpec.swift (in target 'CoreBluetoothMock' from project 'CoreBluetoothMock')
SwiftCompile normal arm64 Compiling\ StatsManager.swift,\ SuitManager.swift,\ McuManager.swift,\ McuMgrCallbackOoOBuffer.swift /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/StatsManager.swift /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/SuitManager.swift /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/McuManager.swift /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/McuMgrCallbackOoOBuffer.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/StatsManager.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/SuitManager.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/SuitManager.swift:650:10: warning: associated value 'suitDelegateRequiredForResource' of 'Sendable'-conforming enum 'SuitManagerError' has non-sendable type 'FirmwareUpgradeResource'; this is an error in the Swift 6 language mode
    case suitDelegateRequiredForResource(_ resource: FirmwareUpgradeResource)
         ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/DFU/FirmwareUpgradeController.swift:38:13: note: consider making enum 'FirmwareUpgradeResource' conform to the 'Sendable' protocol
public enum FirmwareUpgradeResource: CustomStringConvertible {
            ^
                                                            , Sendable
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/SuitManager.swift:531:21: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                    self.pollAttempts += 1
~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/SuitManager.swift:531:21: 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.pollAttempts += 1
                    ^~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/McuManager.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/McuManager.swift:420:10: warning: associated value 'groupCode' of 'Sendable'-conforming enum 'McuMgrError' has non-sendable type 'McuMgrGroupReturnCode'; this is an error in the Swift 6 language mode
    case groupCode(_ group: McuMgrGroupReturnCode)
         ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/McuManager.swift:434:14: note: class 'McuMgrGroupReturnCode' does not conform to the 'Sendable' protocol
public class McuMgrGroupReturnCode: CBORMappable {
             ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/McuManager.swift:146:21: warning: sending 'callback' risks causing data races; this is an error in the Swift 6 language mode
                    callback(response, robBufferError)
~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/McuManager.swift:146:21: note: task-isolated 'callback' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                    callback(response, robBufferError)
                    ^~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/McuManager.swift:146:30: warning: sending 'response' risks causing data races; this is an error in the Swift 6 language mode
                    callback(response, robBufferError)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/McuManager.swift:146:30: note: task-isolated 'response' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                    callback(response, robBufferError)
                             ^~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/McuMgrCallbackOoOBuffer.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/McuMgrCallbackOoOBuffer.swift:23:14: warning: associated value 'invalidKey' of 'Sendable'-conforming enum 'BufferError' has non-sendable type 'Key'; this is an error in the Swift 6 language mode
        case invalidKey(_ key: Key)
             ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/McuMgrCallbackOoOBuffer.swift:17:39: note: consider making generic parameter 'Key' conform to the 'Sendable' protocol
public struct McuMgrCallbackOoOBuffer<Key: Hashable & Comparable, Value> {
                                      ^
                                                                , Sendable
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/McuMgrCallbackOoOBuffer.swift:24:14: warning: associated value 'noValueForKey' of 'Sendable'-conforming enum 'BufferError' has non-sendable type 'Key'; this is an error in the Swift 6 language mode
        case noValueForKey(_ key: Key)
             ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/McuMgrCallbackOoOBuffer.swift:17:39: note: consider making generic parameter 'Key' conform to the 'Sendable' protocol
public struct McuMgrCallbackOoOBuffer<Key: Hashable & Comparable, Value> {
                                      ^
                                                                , Sendable
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/McuMgrCallbackOoOBuffer.swift:122:21: warning: sending 'callback' risks causing data races; this is an error in the Swift 6 language mode
                    callback(key, value)
~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/McuMgrCallbackOoOBuffer.swift:122:21: note: task-isolated 'callback' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                    callback(key, value)
                    ^~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/McuMgrCallbackOoOBuffer.swift:122:30: warning: sending 'key' risks causing data races; this is an error in the Swift 6 language mode
                    callback(key, value)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/McuMgrCallbackOoOBuffer.swift:122:30: note: task-isolated 'key' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                    callback(key, value)
                             ^~~
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/McuMgrCallbackOoOBuffer.swift:122:35: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
                    callback(key, value)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/McuMgrCallbackOoOBuffer.swift:122:35: note: task-isolated 'value' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                    callback(key, value)
                                  ^~~~~
SwiftDriverJobDiscovery normal arm64 Compiling CBMCentralManagerNative.swift, CBMDictionary.swift (in target 'CoreBluetoothMock' from project 'CoreBluetoothMock')
SwiftCompile normal arm64 Compiling\ McuMgrSuitManifest.swift,\ McuMgrTransport.swift,\ McuMgrUploadPipeline.swift /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/McuMgrSuitManifest.swift /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/McuMgrTransport.swift /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/McuMgrUploadPipeline.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/McuMgrSuitManifest.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/McuMgrTransport.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/McuMgrUploadPipeline.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling CBMAttributes.swift, CBMCentralManager.swift (in target 'CoreBluetoothMock' from project 'CoreBluetoothMock')
SwiftCompile normal arm64 Compiling\ LogManager.swift,\ RunTestManager.swift,\ SettingsManager.swift,\ ShellManager.swift /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/LogManager.swift /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/RunTestManager.swift /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/SettingsManager.swift /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/ShellManager.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/LogManager.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/RunTestManager.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/SettingsManager.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/ShellManager.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Emitting module for iOS_BLE_Library_Mock (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
SwiftDriver\ Compilation\ Requirements iOS-BLE-Library-Mock normal arm64 com.apple.xcode.tools.swift.compiler (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
    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 iOS_BLE_Library_Mock -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/Objects-normal/arm64/iOS-BLE-Library-Mock.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/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/Objects-normal/arm64/iOS-BLE-Library-Mock-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/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/Objects-normal/arm64/iOS_BLE_Library_Mock.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/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/Objects-normal/arm64/iOS-BLE-Library-Mock_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.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/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/Objects-normal/arm64/iOS-BLE-Library-Mock-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling CBMCentralManagerFactory.swift, CBMCentralManagerMock.swift (in target 'CoreBluetoothMock' from project 'CoreBluetoothMock')
SwiftCompile normal arm64 Compiling\ CBOR+String.swift,\ ResultLock.swift,\ UTI.swift /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Utils/CBOR+String.swift /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Utils/ResultLock.swift /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Utils/UTI.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Utils/CBOR+String.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Utils/ResultLock.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Utils/UTI.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Utils/UTI.swift:53:24: warning: call to main actor-isolated initializer 'init(fileURL:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let document = UIDocument(fileURL: url)
                       ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocument.h:50:1: note: calls to initializer 'init(fileURL:)' from outside of its actor context are implicitly asynchronous
- (instancetype)initWithFileURL:(NSURL *)url NS_DESIGNATED_INITIALIZER API_UNAVAILABLE(tvos);
^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Utils/UTI.swift:49:25: note: add '@MainActor' to make static method 'typeOf' part of global actor 'MainActor'
    private static func typeOf(_ url: URL) -> String? {
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Utils/UTI.swift:54:25: warning: main actor-isolated property 'fileType' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        return document.fileType
                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIDocument.h:59:48: note: property declared here
@property (readonly, copy, nullable) NSString *fileType API_UNAVAILABLE(tvos);       // The file's UTI. Derived from the fileURL by default.
                                               ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Utils/UTI.swift:49:25: note: add '@MainActor' to make static method 'typeOf' part of global actor 'MainActor'
    private static func typeOf(_ url: URL) -> String? {
                        ^
    @MainActor
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/iOS-BLE-Library-Mock-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/Objects-normal/arm64/iOS-BLE-Library-Mock-Swift.h (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/Objects-normal/arm64/iOS-BLE-Library-Mock-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/iOS-BLE-Library-Mock-Swift.h
SwiftDriverJobDiscovery normal arm64 Compiling String+McuManager.swift, BasicManager.swift, CrashManager.swift, FirmwareUpgradeController.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOS_BLE_Library_Mock.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/Objects-normal/arm64/iOS_BLE_Library_Mock.swiftmodule (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library
    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/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/Objects-normal/arm64/iOS_BLE_Library_Mock.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOS_BLE_Library_Mock.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOS_BLE_Library_Mock.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/Objects-normal/arm64/iOS_BLE_Library_Mock.swiftdoc (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library
    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/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/Objects-normal/arm64/iOS_BLE_Library_Mock.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOS_BLE_Library_Mock.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOS_BLE_Library_Mock.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/Objects-normal/arm64/iOS_BLE_Library_Mock.abi.json (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library
    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/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/Objects-normal/arm64/iOS_BLE_Library_Mock.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOS_BLE_Library_Mock.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOS_BLE_Library_Mock.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/Objects-normal/arm64/iOS_BLE_Library_Mock.swiftsourceinfo (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library
    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/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/Objects-normal/arm64/iOS_BLE_Library_Mock.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOS_BLE_Library_Mock.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
SwiftCompile normal arm64 Compiling\ FirmwareUpgradeManager.swift,\ DefaultManager.swift,\ FileSystemManager.swift,\ ImageManager.swift /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/DFU/FirmwareUpgradeManager.swift /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/DefaultManager.swift /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/FileSystemManager.swift /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/ImageManager.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/DFU/FirmwareUpgradeManager.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/DFU/FirmwareUpgradeManager.swift:1250:10: warning: associated value 'invalidResponse' of 'Sendable'-conforming enum 'FirmwareUpgradeError' has non-sendable type 'McuMgrResponse'; this is an error in the Swift 6 language mode
    case invalidResponse(McuMgrResponse)
         ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/McuMgrResponse.swift:10:12: note: class 'McuMgrResponse' does not conform to the 'Sendable' protocol
open class McuMgrResponse: CBORMappable {
           ^
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/DFU/FirmwareUpgradeManager.swift:193:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                self?.delegate?.upgradeStateDidChange(from: previousState, to: state)
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/DFU/FirmwareUpgradeManager.swift:193: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?.delegate?.upgradeStateDidChange(from: previousState, to: state)
                ^~~~
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/DFU/FirmwareUpgradeManager.swift:193:61: warning: sending 'previousState' risks causing data races; this is an error in the Swift 6 language mode
                self?.delegate?.upgradeStateDidChange(from: previousState, to: state)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/DFU/FirmwareUpgradeManager.swift:193:61: note: task-isolated 'previousState' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                self?.delegate?.upgradeStateDidChange(from: previousState, to: state)
                                                            ^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/DFU/FirmwareUpgradeManager.swift:193:80: warning: sending 'state' risks causing data races; this is an error in the Swift 6 language mode
                self?.delegate?.upgradeStateDidChange(from: previousState, to: state)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/DFU/FirmwareUpgradeManager.swift:193:80: note: task-isolated 'state' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                self?.delegate?.upgradeStateDidChange(from: previousState, to: state)
                                                                               ^~~~~
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/DFU/FirmwareUpgradeManager.swift:328:13: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
            self?.delegate?.upgradeDidComplete()
~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/DFU/FirmwareUpgradeManager.swift:328:13: 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?.delegate?.upgradeDidComplete()
            ^~~~
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/DFU/FirmwareUpgradeManager.swift:241:21: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                    self?.delegate?.uploadProgressDidChange(bytesSent: 100, imageSize: 100,
~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/DFU/FirmwareUpgradeManager.swift:241:21: 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?.delegate?.uploadProgressDidChange(bytesSent: 100, imageSize: 100,
                    ^~~~
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/DFU/FirmwareUpgradeManager.swift:352:13: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
            self?.delegate?.upgradeDidFail(inState: tmp, with: errorOverride)
~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/DFU/FirmwareUpgradeManager.swift:352:13: 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?.delegate?.upgradeDidFail(inState: tmp, with: errorOverride)
            ^~~~
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/DFU/FirmwareUpgradeManager.swift:352:53: warning: sending 'tmp' risks causing data races; this is an error in the Swift 6 language mode
            self?.delegate?.upgradeDidFail(inState: tmp, with: errorOverride)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/DFU/FirmwareUpgradeManager.swift:352:53: note: task-isolated 'tmp' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
            self?.delegate?.upgradeDidFail(inState: tmp, with: errorOverride)
                                                    ^~~
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/DFU/FirmwareUpgradeManager.swift:602:13: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
            self?.upload()
~~~~~~~~~~~~^~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/DFU/FirmwareUpgradeManager.swift:602:13: 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?.upload()
            ^~~~
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/DFU/FirmwareUpgradeManager.swift:1001:13: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
            self?.log(msg: "Reconnecting...", atLevel: .info)
~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/DFU/FirmwareUpgradeManager.swift:1001:13: 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?.log(msg: "Reconnecting...", atLevel: .info)
            ^~~~
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/DFU/FirmwareUpgradeManager.swift:1140:13: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
            self?.delegate?.uploadProgressDidChange(bytesSent: bytesSent, imageSize: imageSize, timestamp: timestamp)
~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/DFU/FirmwareUpgradeManager.swift:1140:13: 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?.delegate?.uploadProgressDidChange(bytesSent: bytesSent, imageSize: imageSize, timestamp: timestamp)
            ^~~~
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/DFU/FirmwareUpgradeManager.swift:1151:13: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
            self?.delegate?.upgradeDidCancel(state: .none)
~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/DFU/FirmwareUpgradeManager.swift:1151:13: 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?.delegate?.upgradeDidCancel(state: .none)
            ^~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/DefaultManager.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/FileSystemManager.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSMcuManagerLibrary/Source/Managers/ImageManager.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ Alias.swift,\ CentralManager.swift,\ ScanResult.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Alias.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/CentralManager/CentralManager.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/CentralManager/Model/ScanResult.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Alias.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/CentralManager/CentralManager.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/CentralManager/Model/ScanResult.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling McuMgrSuitManifest.swift, McuMgrTransport.swift, McuMgrUploadPipeline.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
SwiftCompile normal arm64 Compiling\ RSSI.swift,\ UnimplementedError.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Utilities/RSSI.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Utilities/UnimplementedError.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Utilities/RSSI.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Utilities/UnimplementedError.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling LogManager.swift, RunTestManager.swift, SettingsManager.swift, ShellManager.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
SwiftCompile normal arm64 Compiling\ ReactivePeripheralDelegate.swift,\ AdvertisementData.swift,\ AsyncCharacteristicData.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Peripheral/ReactivePeripheralDelegate.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Utilities/AdvertisementData.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Utilities/AsyncCharacteristicData.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Peripheral/ReactivePeripheralDelegate.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Utilities/AdvertisementData.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Utilities/AsyncCharacteristicData.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling McuMgrHeader.swift, McuMgrImage.swift, McuMgrLogDelegate.swift, McuMgrManifest.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
SwiftCompile normal arm64 Compiling\ CBManagerState.swift,\ CBManagerState+Ext.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Utilities/CBManagerState.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Utilities/Extensions/CBManagerState+Ext.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Utilities/CBManagerState.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Utilities/Extensions/CBManagerState+Ext.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling McuMgrBleTransportConfguration.swift, McuMgrBleTransportWriteState.swift, CBOR+McuManager.swift, Data+McuManager.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
SwiftCompile normal arm64 Compiling\ Publishers+FailablePrefix.swift.swift,\ Publishers+GuestList.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Utilities/Publishers/Publishers+FailablePrefix.swift.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Utilities/Publishers/Publishers+GuestList.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Utilities/Publishers/Publishers+FailablePrefix.swift.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Utilities/Publishers/Publishers+GuestList.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling RSSI.swift, UnimplementedError.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
SwiftCompile normal arm64 Compiling\ Data+Ext.swift.swift,\ Publishers+Async.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Utilities/Extensions/Data+Ext.swift.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Utilities/Extensions/Publishers+Async.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Utilities/Extensions/Data+Ext.swift.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Utilities/Extensions/Publishers+Async.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling CBManagerState.swift, CBManagerState+Ext.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
SwiftCompile normal arm64 Compiling\ Publishers+Bluetooth.swift,\ Publishers+Connectable.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Utilities/Publishers/Publishers+Bluetooth.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Utilities/Publishers/Publishers+Connectable.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Utilities/Publishers/Publishers+Bluetooth.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Utilities/Publishers/Publishers+Connectable.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Alias.swift, CentralManager.swift, ScanResult.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
SwiftCompile normal arm64 Compiling\ Publishers+Peripheral.swift,\ Queue.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Utilities/Publishers/Publishers+Peripheral.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Utilities/Queue.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Utilities/Publishers/Publishers+Peripheral.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Utilities/Queue.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling McuMgrBleROBWriteBuffer.swift, McuMgrBleTransport+CBCentralManagerDelegate.swift, McuMgrBleTransport+CBPeripheralDelegate.swift, McuMgrBleTransport.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
SwiftCompile normal arm64 Compiling\ ReactiveCentralManagerDelegate.swift,\ Peripheral+Writer.swift,\ Peripheral.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/CentralManager/ReactiveCentralManagerDelegate.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Peripheral/Peripheral+Writer.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Peripheral/Peripheral.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/CentralManager/ReactiveCentralManagerDelegate.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Peripheral/Peripheral+Writer.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Peripheral/Peripheral.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling McuMgrPackage.swift, McuMgrResponse.swift, McuMgrSuitEnvelope.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
SwiftCompile normal arm64 Compiling\ Logger.swift,\ ContinuationSubscriber.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Utilities/Logger.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Utilities/Publishers/ContinuationSubscriber.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Utilities/Logger.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library/Sources/iOS-BLE-Library-Mock/Utilities/Publishers/ContinuationSubscriber.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Publishers+FailablePrefix.swift.swift, Publishers+GuestList.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
SwiftDriverJobDiscovery normal arm64 Emitting module for iOSMcuManagerLibrary (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
SwiftDriver\ Compilation ZIPFoundation normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ZIPFoundation' from project 'ZIPFoundation')
    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 ZIPFoundation -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZIPFoundation.build/Debug-iphoneos/ZIPFoundation.build/Objects-normal/arm64/ZIPFoundation.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/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZIPFoundation.build/Debug-iphoneos/ZIPFoundation.build/Objects-normal/arm64/ZIPFoundation-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/ZIPFoundation.build/Debug-iphoneos/ZIPFoundation.build/Objects-normal/arm64/ZIPFoundation.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name zipfoundation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZIPFoundation.build/Debug-iphoneos/ZIPFoundation.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZIPFoundation.build/Debug-iphoneos/ZIPFoundation.build/Objects-normal/arm64/ZIPFoundation_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZIPFoundation.build/Debug-iphoneos/ZIPFoundation.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZIPFoundation.build/Debug-iphoneos/ZIPFoundation.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZIPFoundation.build/Debug-iphoneos/ZIPFoundation.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/ZIPFoundation.build/Debug-iphoneos/ZIPFoundation.build/Objects-normal/arm64/ZIPFoundation-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation\ Requirements iOSMcuManagerLibrary normal arm64 com.apple.xcode.tools.swift.compiler (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    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 iOSMcuManagerLibrary -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/Objects-normal/arm64/iOSMcuManagerLibrary.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/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/Objects-normal/arm64/iOSMcuManagerLibrary-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/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/Objects-normal/arm64/iOSMcuManagerLibrary.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/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/Objects-normal/arm64/iOSMcuManagerLibrary_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.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/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/Objects-normal/arm64/iOSMcuManagerLibrary-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/Products/Debug-iphoneos/ZIPFoundation.o normal (in target 'ZIPFoundation' from project 'ZIPFoundation')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/ZIPFoundation
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZIPFoundation.build/Debug-iphoneos/ZIPFoundation.build/Objects-normal/arm64/ZIPFoundation.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZIPFoundation.build/Debug-iphoneos/ZIPFoundation.build/Objects-normal/arm64/ZIPFoundation_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZIPFoundation.build/Debug-iphoneos/ZIPFoundation.build/Objects-normal/arm64/ZIPFoundation_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZIPFoundation.build/Debug-iphoneos/ZIPFoundation.build/Objects-normal/arm64/ZIPFoundation.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ZIPFoundation.o
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/iOSMcuManagerLibrary-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/Objects-normal/arm64/iOSMcuManagerLibrary-Swift.h (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/Objects-normal/arm64/iOSMcuManagerLibrary-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/iOSMcuManagerLibrary-Swift.h
SwiftDriverJobDiscovery normal arm64 Compiling Publishers+Bluetooth.swift, Publishers+Connectable.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOSMcuManagerLibrary.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/Objects-normal/arm64/iOSMcuManagerLibrary.swiftmodule (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    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/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/Objects-normal/arm64/iOSMcuManagerLibrary.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOSMcuManagerLibrary.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOSMcuManagerLibrary.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/Objects-normal/arm64/iOSMcuManagerLibrary.swiftdoc (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    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/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/Objects-normal/arm64/iOSMcuManagerLibrary.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOSMcuManagerLibrary.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOSMcuManagerLibrary.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/Objects-normal/arm64/iOSMcuManagerLibrary.abi.json (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    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/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/Objects-normal/arm64/iOSMcuManagerLibrary.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOSMcuManagerLibrary.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOSMcuManagerLibrary.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/Objects-normal/arm64/iOSMcuManagerLibrary.swiftsourceinfo (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    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/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/Objects-normal/arm64/iOSMcuManagerLibrary.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOSMcuManagerLibrary.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
SwiftDriver\ Compilation CoreBluetoothMock normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CoreBluetoothMock' from project 'CoreBluetoothMock')
    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 CoreBluetoothMock -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreBluetoothMock.build/Debug-iphoneos/CoreBluetoothMock.build/Objects-normal/arm64/CoreBluetoothMock.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/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreBluetoothMock.build/Debug-iphoneos/CoreBluetoothMock.build/Objects-normal/arm64/CoreBluetoothMock-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/CoreBluetoothMock.build/Debug-iphoneos/CoreBluetoothMock.build/Objects-normal/arm64/CoreBluetoothMock.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name ios_corebluetooth_mock -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreBluetoothMock.build/Debug-iphoneos/CoreBluetoothMock.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreBluetoothMock.build/Debug-iphoneos/CoreBluetoothMock.build/Objects-normal/arm64/CoreBluetoothMock_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreBluetoothMock.build/Debug-iphoneos/CoreBluetoothMock.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreBluetoothMock.build/Debug-iphoneos/CoreBluetoothMock.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreBluetoothMock.build/Debug-iphoneos/CoreBluetoothMock.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/CoreBluetoothMock.build/Debug-iphoneos/CoreBluetoothMock.build/Objects-normal/arm64/CoreBluetoothMock-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/Products/Debug-iphoneos/CoreBluetoothMock.o normal (in target 'CoreBluetoothMock' from project 'CoreBluetoothMock')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-CoreBluetooth-Mock
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreBluetoothMock.build/Debug-iphoneos/CoreBluetoothMock.build/Objects-normal/arm64/CoreBluetoothMock.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreBluetoothMock.build/Debug-iphoneos/CoreBluetoothMock.build/Objects-normal/arm64/CoreBluetoothMock_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreBluetoothMock.build/Debug-iphoneos/CoreBluetoothMock.build/Objects-normal/arm64/CoreBluetoothMock_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreBluetoothMock.build/Debug-iphoneos/CoreBluetoothMock.build/Objects-normal/arm64/CoreBluetoothMock.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CoreBluetoothMock.o
ExtractAppIntentsMetadata (in target 'ZIPFoundation' from project 'ZIPFoundation')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/ZIPFoundation
    /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 ZIPFoundation --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 12.0 --bundle-identifier zipfoundation.ZIPFoundation --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ZIPFoundation.appintents --target-triple arm64-apple-ios12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ZIPFoundation.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZIPFoundation.build/Debug-iphoneos/ZIPFoundation.build/Objects-normal/arm64/ZIPFoundation_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZIPFoundation.build/Debug-iphoneos/ZIPFoundation.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZIPFoundation.build/Debug-iphoneos/ZIPFoundation.build/Objects-normal/arm64/ZIPFoundation.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZIPFoundation.build/Debug-iphoneos/ZIPFoundation.build/ZIPFoundation.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZIPFoundation.build/Debug-iphoneos/ZIPFoundation.build/ZIPFoundation.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZIPFoundation.build/Debug-iphoneos/ZIPFoundation.build/Objects-normal/arm64/ZIPFoundation.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-09-11 15:09:27.686 appintentsmetadataprocessor[942:5139] Starting appintentsmetadataprocessor export
2025-09-11 15:09:27.727 appintentsmetadataprocessor[942:5139] Extracted no relevant App Intents symbols, skipping writing output
ExtractAppIntentsMetadata (in target 'CoreBluetoothMock' from project 'CoreBluetoothMock')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-CoreBluetooth-Mock
    /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 CoreBluetoothMock --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 12.0 --bundle-identifier ios-corebluetooth-mock.CoreBluetoothMock --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CoreBluetoothMock.appintents --target-triple arm64-apple-ios12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CoreBluetoothMock.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreBluetoothMock.build/Debug-iphoneos/CoreBluetoothMock.build/Objects-normal/arm64/CoreBluetoothMock_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreBluetoothMock.build/Debug-iphoneos/CoreBluetoothMock.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreBluetoothMock.build/Debug-iphoneos/CoreBluetoothMock.build/Objects-normal/arm64/CoreBluetoothMock.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreBluetoothMock.build/Debug-iphoneos/CoreBluetoothMock.build/CoreBluetoothMock.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreBluetoothMock.build/Debug-iphoneos/CoreBluetoothMock.build/CoreBluetoothMock.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CoreBluetoothMock.build/Debug-iphoneos/CoreBluetoothMock.build/Objects-normal/arm64/CoreBluetoothMock.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-09-11 15:09:27.714 appintentsmetadataprocessor[943:5155] Starting appintentsmetadataprocessor export
2025-09-11 15:09:27.753 appintentsmetadataprocessor[943:5155] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling Publishers+Peripheral.swift, Queue.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
SwiftDriver iOSOtaLibrary normal arm64 com.apple.xcode.tools.swift.compiler (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name iOSOtaLibrary -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/Objects-normal/arm64/iOSOtaLibrary.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/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/Objects-normal/arm64/iOSOtaLibrary-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/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/Objects-normal/arm64/iOSOtaLibrary.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/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/Objects-normal/arm64/iOSOtaLibrary_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.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/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/Objects-normal/arm64/iOSOtaLibrary-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOS-BLE-Library.o (in target 'iOS-BLE-Library' from project 'iOS-BLE-Library')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOS-BLE-Library.o
SwiftDriverJobDiscovery normal arm64 Compiling ReactivePeripheralDelegate.swift, AdvertisementData.swift, AsyncCharacteristicData.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SwiftCBOR.o (in target 'SwiftCBOR' from project 'SwiftCBOR')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftCBOR
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/SwiftCBOR.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ZIPFoundation.o (in target 'ZIPFoundation' from project 'ZIPFoundation')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/ZIPFoundation
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/ZIPFoundation.o
SwiftCompile normal arm64 Compiling\ OTAManager+Tokens.swift,\ OTAManager.swift /Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/OTAManager+Tokens.swift /Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/OTAManager.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/OTAManager+Tokens.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/OTAManager+Tokens.swift:19:39: warning: non-sendable result type 'DeviceInfoToken' cannot be sent from nonisolated context in call to instance method 'getDeviceInfoToken()'; this is an error in the Swift 6 language mode
                let token = try await getDeviceInfoToken()
                                      ^
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/Tokens/DeviceInfoToken.swift:11:15: note: consider making struct 'DeviceInfoToken' conform to the 'Sendable' protocol
public struct DeviceInfoToken {
              ^
                              : Sendable
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/OTAManager+Tokens.swift:102:39: warning: non-sendable result type 'ProjectKey' cannot be sent from nonisolated context in call to instance method 'getProjectKey()'; this is an error in the Swift 6 language mode
                let token = try await getProjectKey()
                                      ^
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/Tokens/ProjectKey.swift:13:15: note: consider making struct 'ProjectKey' conform to the 'Sendable' protocol
public struct ProjectKey {
              ^
                         : Sendable
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/OTAManager+Tokens.swift:19:39: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                let token = try await getDeviceInfoToken()
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/OTAManager+Tokens.swift:19:39: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                let token = try await getDeviceInfoToken()
                                      ^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/OTAManager+Tokens.swift:20:17: warning: sending 'callback' risks causing data races; this is an error in the Swift 6 language mode
                callback(.success(token))
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/OTAManager+Tokens.swift:20:17: note: task-isolated 'callback' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                callback(.success(token))
                ^~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/OTAManager+Tokens.swift:102:39: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                let token = try await getProjectKey()
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/OTAManager+Tokens.swift:102:39: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                let token = try await getProjectKey()
                                      ^~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/OTAManager+Tokens.swift:103:17: warning: sending 'callback' risks causing data races; this is an error in the Swift 6 language mode
                callback(.success(token))
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/OTAManager+Tokens.swift:103:17: note: task-isolated 'callback' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                callback(.success(token))
                ^~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/OTAManager.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/OTAManager.swift:53:45: warning: non-sendable result type 'LatestReleaseInfo' cannot be sent from nonisolated context in call to instance method 'getLatestReleaseInfo(deviceInfo:projectKey:)'; this is an error in the Swift 6 language mode
                let releaseInfo = try await getLatestReleaseInfo(deviceInfo: deviceInfo, projectKey: projectKey)
                                            ^
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/GetLatestReleaseInfoRequest.swift:37:15: note: consider making struct 'LatestReleaseInfo' conform to the 'Sendable' protocol
public struct LatestReleaseInfo: Codable {
              ^
                                        , Sendable
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/OTAManager.swift:53:45: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                let releaseInfo = try await getLatestReleaseInfo(deviceInfo: deviceInfo, projectKey: projectKey)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/OTAManager.swift:53:45: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                let releaseInfo = try await getLatestReleaseInfo(deviceInfo: deviceInfo, projectKey: projectKey)
                                            ^~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/OTAManager.swift:53:78: warning: sending 'deviceInfo' risks causing data races; this is an error in the Swift 6 language mode
                let releaseInfo = try await getLatestReleaseInfo(deviceInfo: deviceInfo, projectKey: projectKey)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/OTAManager.swift:53:78: note: task-isolated 'deviceInfo' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                let releaseInfo = try await getLatestReleaseInfo(deviceInfo: deviceInfo, projectKey: projectKey)
                                                                             ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/OTAManager.swift:53:102: warning: sending 'projectKey' risks causing data races; this is an error in the Swift 6 language mode
                let releaseInfo = try await getLatestReleaseInfo(deviceInfo: deviceInfo, projectKey: projectKey)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/OTAManager.swift:53:102: note: task-isolated 'projectKey' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                let releaseInfo = try await getLatestReleaseInfo(deviceInfo: deviceInfo, projectKey: projectKey)
                                                                                                     ^~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/OTAManager.swift:54:17: warning: sending 'callback' risks causing data races; this is an error in the Swift 6 language mode
                callback(.success(releaseInfo))
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/OTAManager.swift:54:17: note: task-isolated 'callback' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                callback(.success(releaseInfo))
                ^~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/OTAManager.swift:111:37: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
                let url = try await download(artifact: artifact)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/OTAManager.swift:111:37: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                let url = try await download(artifact: artifact)
                                    ^~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/OTAManager.swift:111:56: warning: sending 'artifact' risks causing data races; this is an error in the Swift 6 language mode
                let url = try await download(artifact: artifact)
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/OTAManager.swift:111:56: note: task-isolated 'artifact' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                let url = try await download(artifact: artifact)
                                                       ^~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/OTAManager.swift:112:17: warning: sending 'callback' risks causing data races; this is an error in the Swift 6 language mode
                callback(.success(url))
~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/OTAManager.swift:112:17: note: task-isolated 'callback' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
                callback(.success(url))
                ^~~~~~~~
SwiftCompile normal arm64 Compiling\ ObservabilityDevice.swift,\ ObservabilityDeviceEvent.swift /Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data\ Structures/ObservabilityDevice.swift /Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data\ Structures/ObservabilityDeviceEvent.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data\ Structures/ObservabilityDevice.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data\ Structures/ObservabilityDeviceEvent.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ URLSession.swift,\ GetLatestReleaseInfoRequest.swift /Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Network/URLSession.swift /Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/GetLatestReleaseInfoRequest.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Network/URLSession.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/GetLatestReleaseInfoRequest.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

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

/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data Structures/CBUUID+MDS.swift:17:16: warning: static property 'MDS' is not concurrency-safe because non-'Sendable' type 'CBUUID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let MDS = CBUUID(string: "54220000-F6A5-4007-A371-722F4EBD8436")
               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/CoreBluetooth.framework/Headers/CBUUID.h:85:28: note: class 'CBUUID' does not conform to the 'Sendable' protocol
CB_EXTERN_CLASS @interface CBUUID : NSObject <NSCopying>
                           ^
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data Structures/CBUUID+MDS.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreBluetooth'
import CoreBluetooth
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data Structures/CBUUID+MDS.swift:17:16: note: add '@MainActor' to make static property 'MDS' part of global actor 'MainActor'
    static let MDS = CBUUID(string: "54220000-F6A5-4007-A371-722F4EBD8436")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data Structures/CBUUID+MDS.swift:17:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let MDS = CBUUID(string: "54220000-F6A5-4007-A371-722F4EBD8436")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data Structures/CBUUID+MDS.swift:18:16: warning: static property 'MDSDeviceIdentifierCharacteristic' is not concurrency-safe because non-'Sendable' type 'CBUUID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let MDSDeviceIdentifierCharacteristic = CBUUID(string: "54220002-f6a5-4007-a371-722f4ebd8436")
               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/CoreBluetooth.framework/Headers/CBUUID.h:85:28: note: class 'CBUUID' does not conform to the 'Sendable' protocol
CB_EXTERN_CLASS @interface CBUUID : NSObject <NSCopying>
                           ^
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data Structures/CBUUID+MDS.swift:18:16: note: add '@MainActor' to make static property 'MDSDeviceIdentifierCharacteristic' part of global actor 'MainActor'
    static let MDSDeviceIdentifierCharacteristic = CBUUID(string: "54220002-f6a5-4007-a371-722f4ebd8436")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data Structures/CBUUID+MDS.swift:18:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let MDSDeviceIdentifierCharacteristic = CBUUID(string: "54220002-f6a5-4007-a371-722f4ebd8436")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data Structures/CBUUID+MDS.swift:19:16: warning: static property 'MDSDataURICharacteristic' is not concurrency-safe because non-'Sendable' type 'CBUUID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let MDSDataURICharacteristic = CBUUID(string: "54220003-f6a5-4007-a371-722f4ebd8436")
               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/CoreBluetooth.framework/Headers/CBUUID.h:85:28: note: class 'CBUUID' does not conform to the 'Sendable' protocol
CB_EXTERN_CLASS @interface CBUUID : NSObject <NSCopying>
                           ^
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data Structures/CBUUID+MDS.swift:19:16: note: add '@MainActor' to make static property 'MDSDataURICharacteristic' part of global actor 'MainActor'
    static let MDSDataURICharacteristic = CBUUID(string: "54220003-f6a5-4007-a371-722f4ebd8436")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data Structures/CBUUID+MDS.swift:19:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let MDSDataURICharacteristic = CBUUID(string: "54220003-f6a5-4007-a371-722f4ebd8436")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data Structures/CBUUID+MDS.swift:20:16: warning: static property 'MDSAuthCharacteristic' is not concurrency-safe because non-'Sendable' type 'CBUUID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let MDSAuthCharacteristic = CBUUID(string: "54220004-f6a5-4007-a371-722f4ebd8436")
               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/CoreBluetooth.framework/Headers/CBUUID.h:85:28: note: class 'CBUUID' does not conform to the 'Sendable' protocol
CB_EXTERN_CLASS @interface CBUUID : NSObject <NSCopying>
                           ^
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data Structures/CBUUID+MDS.swift:20:16: note: add '@MainActor' to make static property 'MDSAuthCharacteristic' part of global actor 'MainActor'
    static let MDSAuthCharacteristic = CBUUID(string: "54220004-f6a5-4007-a371-722f4ebd8436")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data Structures/CBUUID+MDS.swift:20:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let MDSAuthCharacteristic = CBUUID(string: "54220004-f6a5-4007-a371-722f4ebd8436")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data Structures/CBUUID+MDS.swift:21:16: warning: static property 'MDSDataExportCharacteristic' is not concurrency-safe because non-'Sendable' type 'CBUUID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let MDSDataExportCharacteristic = CBUUID(string: "54220005-f6a5-4007-a371-722f4ebd8436")
               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/CoreBluetooth.framework/Headers/CBUUID.h:85:28: note: class 'CBUUID' does not conform to the 'Sendable' protocol
CB_EXTERN_CLASS @interface CBUUID : NSObject <NSCopying>
                           ^
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data Structures/CBUUID+MDS.swift:21:16: note: add '@MainActor' to make static property 'MDSDataExportCharacteristic' part of global actor 'MainActor'
    static let MDSDataExportCharacteristic = CBUUID(string: "54220005-f6a5-4007-a371-722f4ebd8436")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data Structures/CBUUID+MDS.swift:21:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let MDSDataExportCharacteristic = CBUUID(string: "54220005-f6a5-4007-a371-722f4ebd8436")
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ ObservabilityManager.swift /Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/ObservabilityManager.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/ObservabilityManager.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/ObservabilityManager.swift:67: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/iOSOtaLibrary/Source/Observability/ObservabilityManager.swift:68:19: note: closure captures 'self' which is accessible to code in the current task
            await connectAndAuthenticate(from: identifier)
                  ^
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/ObservabilityManager.swift:74: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/iOSOtaLibrary/Source/Observability/ObservabilityManager.swift:75:32: note: closure captures 'self' which is accessible to code in the current task
            guard let device = devices[identifier],
                               ^
SwiftDriverJobDiscovery normal arm64 Compiling Data+Ext.swift.swift, Publishers+Async.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
SwiftCompile normal arm64 Compiling\ CBUUID+MDS.swift,\ ObservabilityChunk.swift /Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data\ Structures/CBUUID+MDS.swift /Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data\ Structures/ObservabilityChunk.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data\ Structures/CBUUID+MDS.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data Structures/CBUUID+MDS.swift:17:16: warning: static property 'MDS' is not concurrency-safe because non-'Sendable' type 'CBUUID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let MDS = CBUUID(string: "54220000-F6A5-4007-A371-722F4EBD8436")
               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/CoreBluetooth.framework/Headers/CBUUID.h:85:28: note: class 'CBUUID' does not conform to the 'Sendable' protocol
CB_EXTERN_CLASS @interface CBUUID : NSObject <NSCopying>
                           ^
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data Structures/CBUUID+MDS.swift:10:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'CoreBluetooth'
import CoreBluetooth
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data Structures/CBUUID+MDS.swift:17:16: note: add '@MainActor' to make static property 'MDS' part of global actor 'MainActor'
    static let MDS = CBUUID(string: "54220000-F6A5-4007-A371-722F4EBD8436")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data Structures/CBUUID+MDS.swift:17:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let MDS = CBUUID(string: "54220000-F6A5-4007-A371-722F4EBD8436")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data Structures/CBUUID+MDS.swift:18:16: warning: static property 'MDSDeviceIdentifierCharacteristic' is not concurrency-safe because non-'Sendable' type 'CBUUID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let MDSDeviceIdentifierCharacteristic = CBUUID(string: "54220002-f6a5-4007-a371-722f4ebd8436")
               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/CoreBluetooth.framework/Headers/CBUUID.h:85:28: note: class 'CBUUID' does not conform to the 'Sendable' protocol
CB_EXTERN_CLASS @interface CBUUID : NSObject <NSCopying>
                           ^
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data Structures/CBUUID+MDS.swift:18:16: note: add '@MainActor' to make static property 'MDSDeviceIdentifierCharacteristic' part of global actor 'MainActor'
    static let MDSDeviceIdentifierCharacteristic = CBUUID(string: "54220002-f6a5-4007-a371-722f4ebd8436")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data Structures/CBUUID+MDS.swift:18:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let MDSDeviceIdentifierCharacteristic = CBUUID(string: "54220002-f6a5-4007-a371-722f4ebd8436")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data Structures/CBUUID+MDS.swift:19:16: warning: static property 'MDSDataURICharacteristic' is not concurrency-safe because non-'Sendable' type 'CBUUID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let MDSDataURICharacteristic = CBUUID(string: "54220003-f6a5-4007-a371-722f4ebd8436")
               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/CoreBluetooth.framework/Headers/CBUUID.h:85:28: note: class 'CBUUID' does not conform to the 'Sendable' protocol
CB_EXTERN_CLASS @interface CBUUID : NSObject <NSCopying>
                           ^
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data Structures/CBUUID+MDS.swift:19:16: note: add '@MainActor' to make static property 'MDSDataURICharacteristic' part of global actor 'MainActor'
    static let MDSDataURICharacteristic = CBUUID(string: "54220003-f6a5-4007-a371-722f4ebd8436")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data Structures/CBUUID+MDS.swift:19:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let MDSDataURICharacteristic = CBUUID(string: "54220003-f6a5-4007-a371-722f4ebd8436")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data Structures/CBUUID+MDS.swift:20:16: warning: static property 'MDSAuthCharacteristic' is not concurrency-safe because non-'Sendable' type 'CBUUID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let MDSAuthCharacteristic = CBUUID(string: "54220004-f6a5-4007-a371-722f4ebd8436")
               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/CoreBluetooth.framework/Headers/CBUUID.h:85:28: note: class 'CBUUID' does not conform to the 'Sendable' protocol
CB_EXTERN_CLASS @interface CBUUID : NSObject <NSCopying>
                           ^
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data Structures/CBUUID+MDS.swift:20:16: note: add '@MainActor' to make static property 'MDSAuthCharacteristic' part of global actor 'MainActor'
    static let MDSAuthCharacteristic = CBUUID(string: "54220004-f6a5-4007-a371-722f4ebd8436")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data Structures/CBUUID+MDS.swift:20:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let MDSAuthCharacteristic = CBUUID(string: "54220004-f6a5-4007-a371-722f4ebd8436")
               ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data Structures/CBUUID+MDS.swift:21:16: warning: static property 'MDSDataExportCharacteristic' is not concurrency-safe because non-'Sendable' type 'CBUUID' may have shared mutable state; this is an error in the Swift 6 language mode
    static let MDSDataExportCharacteristic = CBUUID(string: "54220005-f6a5-4007-a371-722f4ebd8436")
               ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/CoreBluetooth.framework/Headers/CBUUID.h:85:28: note: class 'CBUUID' does not conform to the 'Sendable' protocol
CB_EXTERN_CLASS @interface CBUUID : NSObject <NSCopying>
                           ^
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data Structures/CBUUID+MDS.swift:21:16: note: add '@MainActor' to make static property 'MDSDataExportCharacteristic' part of global actor 'MainActor'
    static let MDSDataExportCharacteristic = CBUUID(string: "54220005-f6a5-4007-a371-722f4ebd8436")
               ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data Structures/CBUUID+MDS.swift:21:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    static let MDSDataExportCharacteristic = CBUUID(string: "54220005-f6a5-4007-a371-722f4ebd8436")
               ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data\ Structures/ObservabilityChunk.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Logger.swift, ContinuationSubscriber.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
SwiftCompile normal arm64 Compiling\ ObservabilityManagerError.swift /Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/ObservabilityManagerError.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/ObservabilityManagerError.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling StatsManager.swift, SuitManager.swift, McuManager.swift, McuMgrCallbackOoOBuffer.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
SwiftCompile normal arm64 Compiling\ PostChunkRequest.swift /Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/PostChunkRequest.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/PostChunkRequest.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling CBOR+String.swift, ResultLock.swift, UTI.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
SwiftCompile normal arm64 Compiling\ DeviceInfoToken.swift,\ ProjectKey.swift /Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/Tokens/DeviceInfoToken.swift /Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/Tokens/ProjectKey.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/Tokens/DeviceInfoToken.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/OTA/Tokens/ProjectKey.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling ReactiveCentralManagerDelegate.swift, Peripheral+Writer.swift, Peripheral.swift (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
SwiftCompile normal arm64 Compiling\ ObservabilityError.swift,\ ObservabilityManager+Internal.swift /Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data\ Structures/ObservabilityError.swift /Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/ObservabilityManager+Internal.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/Data\ Structures/ObservabilityError.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/ObservabilityManager+Internal.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/ObservabilityManager+Internal.swift:125: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/iOSOtaLibrary/Source/Observability/ObservabilityManager+Internal.swift:136:21: note: closure captures 'self' which is accessible to code in the current task
                    received(chunk, from: identifier)
                    ^
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/ObservabilityManager+Internal.swift:79:40: warning: sending value of non-Sendable type '(deviceUUID: UUID, event: ObservabilityDeviceEvent)' risks causing data races; this is an error in the Swift 6 language mode
            deviceStreams[identifier]?.yield((identifier, .authenticated(auth)))
            ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/ObservabilityManager+Internal.swift:79:40: note: Passing task-isolated value of non-Sendable type '(deviceUUID: UUID, event: ObservabilityDeviceEvent)' as a 'sending' parameter risks causing races inbetween task-isolated uses and uses reachable from the callee
            deviceStreams[identifier]?.yield((identifier, .authenticated(auth)))
                                       ^
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/ObservabilityManager+Internal.swift:184:36: warning: sending value of non-Sendable type '(deviceUUID: UUID, event: ObservabilityDeviceEvent)' risks causing data races; this is an error in the Swift 6 language mode
        deviceStreams[identifier]?.yield((identifier, .updatedChunk(chunk, status: .receivedAndPendingUpload)))
        ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/ObservabilityManager+Internal.swift:184:36: note: Passing task-isolated value of non-Sendable type '(deviceUUID: UUID, event: ObservabilityDeviceEvent)' as a 'sending' parameter risks causing races inbetween task-isolated uses and uses reachable from the callee
        deviceStreams[identifier]?.yield((identifier, .updatedChunk(chunk, status: .receivedAndPendingUpload)))
                                   ^
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/ObservabilityManager+Internal.swift:169:40: warning: sending value of non-Sendable type '(deviceUUID: UUID, event: ObservabilityDeviceEvent)' risks causing data races; this is an error in the Swift 6 language mode
            deviceStreams[identifier]?.yield((identifier, .updatedChunk(chunk, status: .uploading)))
            ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/ObservabilityManager+Internal.swift:169:40: note: Passing task-isolated value of non-Sendable type '(deviceUUID: UUID, event: ObservabilityDeviceEvent)' as a 'sending' parameter risks causing races inbetween task-isolated uses and uses reachable from the callee
            deviceStreams[identifier]?.yield((identifier, .updatedChunk(chunk, status: .uploading)))
                                       ^
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/ObservabilityManager+Internal.swift:172:40: warning: sending value of non-Sendable type '(deviceUUID: UUID, event: ObservabilityDeviceEvent)' risks causing data races; this is an error in the Swift 6 language mode
            deviceStreams[identifier]?.yield((identifier, .updatedChunk(chunk, status: .success)))
            ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/ObservabilityManager+Internal.swift:172:40: note: Passing task-isolated value of non-Sendable type '(deviceUUID: UUID, event: ObservabilityDeviceEvent)' as a 'sending' parameter risks causing races inbetween task-isolated uses and uses reachable from the callee
            deviceStreams[identifier]?.yield((identifier, .updatedChunk(chunk, status: .success)))
                                       ^
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/ObservabilityManager+Internal.swift:175:40: warning: sending value of non-Sendable type '(deviceUUID: UUID, event: ObservabilityDeviceEvent)' risks causing data races; this is an error in the Swift 6 language mode
            deviceStreams[identifier]?.yield((identifier, .updatedChunk(chunk, status: .errorUploading)))
            ~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Observability/ObservabilityManager+Internal.swift:175:40: note: Passing task-isolated value of non-Sendable type '(deviceUUID: UUID, event: ObservabilityDeviceEvent)' as a 'sending' parameter risks causing races inbetween task-isolated uses and uses reachable from the callee
            deviceStreams[identifier]?.yield((identifier, .updatedChunk(chunk, status: .errorUploading)))
                                       ^
SwiftDriverJobDiscovery normal arm64 Compiling FirmwareUpgradeManager.swift, DefaultManager.swift, FileSystemManager.swift, ImageManager.swift (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
SwiftCompile normal arm64 Compiling\ HTTPRequest.swift,\ Network.swift /Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Network/HTTPRequest.swift /Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Network/Network.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Network/HTTPRequest.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/iOSOtaLibrary/Source/Network/Network.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling ObservabilityManagerError.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
SwiftDriverJobDiscovery normal arm64 Compiling PostChunkRequest.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
SwiftDriver\ Compilation iOSMcuManagerLibrary normal arm64 com.apple.xcode.tools.swift.compiler (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    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 iOSMcuManagerLibrary -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/Objects-normal/arm64/iOSMcuManagerLibrary.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/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/Objects-normal/arm64/iOSMcuManagerLibrary-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/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/Objects-normal/arm64/iOSMcuManagerLibrary.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/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/Objects-normal/arm64/iOSMcuManagerLibrary_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.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/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/Objects-normal/arm64/iOSMcuManagerLibrary-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation iOS-BLE-Library-Mock normal arm64 com.apple.xcode.tools.swift.compiler (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
    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 iOS_BLE_Library_Mock -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/Objects-normal/arm64/iOS-BLE-Library-Mock.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/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -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-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/Objects-normal/arm64/iOS-BLE-Library-Mock-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/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/Objects-normal/arm64/iOS_BLE_Library_Mock.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/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/Objects-normal/arm64/iOS-BLE-Library-Mock_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.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/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/Objects-normal/arm64/iOS-BLE-Library-Mock-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/Products/Debug-iphoneos/iOSMcuManagerLibrary.o normal (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    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-ios13.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/Objects-normal/arm64/iOSMcuManagerLibrary.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/Objects-normal/arm64/iOSMcuManagerLibrary_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/Objects-normal/arm64/iOSMcuManagerLibrary_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/Objects-normal/arm64/iOSMcuManagerLibrary.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOSMcuManagerLibrary.o
SwiftDriverJobDiscovery normal arm64 Compiling DeviceInfoToken.swift, ProjectKey.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CoreBluetoothMock.o (in target 'CoreBluetoothMock' from project 'CoreBluetoothMock')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-CoreBluetooth-Mock
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CoreBluetoothMock.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOS-BLE-Library-Mock.o normal (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios13.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/Objects-normal/arm64/iOS-BLE-Library-Mock.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/Objects-normal/arm64/iOS-BLE-Library-Mock_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/Objects-normal/arm64/iOS-BLE-Library-Mock_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/Objects-normal/arm64/iOS_BLE_Library_Mock.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOS-BLE-Library-Mock.o
SwiftDriverJobDiscovery normal arm64 Emitting module for iOSOtaLibrary (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
SwiftDriver\ Compilation\ Requirements iOSOtaLibrary normal arm64 com.apple.xcode.tools.swift.compiler (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
    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 iOSOtaLibrary -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/Objects-normal/arm64/iOSOtaLibrary.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/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/Objects-normal/arm64/iOSOtaLibrary-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/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/Objects-normal/arm64/iOSOtaLibrary.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/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/Objects-normal/arm64/iOSOtaLibrary_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.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/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/Objects-normal/arm64/iOSOtaLibrary-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/iOSOtaLibrary-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/Objects-normal/arm64/iOSOtaLibrary-Swift.h (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/Objects-normal/arm64/iOSOtaLibrary-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/iOSOtaLibrary-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOSOtaLibrary.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/Objects-normal/arm64/iOSOtaLibrary.swiftmodule (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
    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/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/Objects-normal/arm64/iOSOtaLibrary.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOSOtaLibrary.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOSOtaLibrary.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/Objects-normal/arm64/iOSOtaLibrary.swiftdoc (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
    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/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/Objects-normal/arm64/iOSOtaLibrary.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOSOtaLibrary.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOSOtaLibrary.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/Objects-normal/arm64/iOSOtaLibrary.abi.json (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
    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/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/Objects-normal/arm64/iOSOtaLibrary.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOSOtaLibrary.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOSOtaLibrary.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/Objects-normal/arm64/iOSOtaLibrary.swiftsourceinfo (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
    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/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/Objects-normal/arm64/iOSOtaLibrary.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOSOtaLibrary.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
ExtractAppIntentsMetadata (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    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 iOSMcuManagerLibrary --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 13.0 --bundle-identifier spi-builder-workspace.iOSMcuManagerLibrary --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOSMcuManagerLibrary.appintents --target-triple arm64-apple-ios13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOSMcuManagerLibrary.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/Objects-normal/arm64/iOSMcuManagerLibrary_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/Objects-normal/arm64/iOSMcuManagerLibrary.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/iOSMcuManagerLibrary.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/iOSMcuManagerLibrary.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSMcuManagerLibrary.build/Objects-normal/arm64/iOSMcuManagerLibrary.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-09-11 15:09:28.836 appintentsmetadataprocessor[959:5224] Starting appintentsmetadataprocessor export
2025-09-11 15:09:28.879 appintentsmetadataprocessor[959:5224] Extracted no relevant App Intents symbols, skipping writing output
ExtractAppIntentsMetadata (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library
    /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 iOS_BLE_Library_Mock --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 13.0 --bundle-identifier ios-ble-library.iOS-BLE-Library-Mock --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOS_BLE_Library_Mock.appintents --target-triple arm64-apple-ios13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOS-BLE-Library-Mock.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/Objects-normal/arm64/iOS-BLE-Library-Mock_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/Objects-normal/arm64/iOS-BLE-Library-Mock.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/iOS-BLE-Library-Mock.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/iOS-BLE-Library-Mock.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOS-BLE-Library.build/Debug-iphoneos/iOS-BLE-Library-Mock.build/Objects-normal/arm64/iOS-BLE-Library-Mock.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-09-11 15:09:28.854 appintentsmetadataprocessor[960:5236] Starting appintentsmetadataprocessor export
2025-09-11 15:09:28.895 appintentsmetadataprocessor[960:5236] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling ObservabilityDevice.swift, ObservabilityDeviceEvent.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOSMcuManagerLibrary.o (in target 'iOSMcuManagerLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOSMcuManagerLibrary.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOS-BLE-Library-Mock.o (in target 'iOS-BLE-Library-Mock' from project 'iOS-BLE-Library')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/IOS-BLE-Library
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOS-BLE-Library-Mock.o
SwiftDriverJobDiscovery normal arm64 Compiling ObservabilityManager.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
SwiftDriverJobDiscovery normal arm64 Compiling URLSession.swift, GetLatestReleaseInfoRequest.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
SwiftDriverJobDiscovery normal arm64 Compiling CBUUID+MDS.swift, ObservabilityChunk.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
SwiftDriverJobDiscovery normal arm64 Compiling OTAManager+Tokens.swift, OTAManager.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
SwiftDriverJobDiscovery normal arm64 Compiling ObservabilityError.swift, ObservabilityManager+Internal.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
SwiftDriverJobDiscovery normal arm64 Compiling HTTPRequest.swift, Network.swift (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
SwiftDriver\ Compilation iOSOtaLibrary normal arm64 com.apple.xcode.tools.swift.compiler (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
    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 iOSOtaLibrary -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/Objects-normal/arm64/iOSOtaLibrary.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/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/Objects-normal/arm64/iOSOtaLibrary-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/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/Objects-normal/arm64/iOSOtaLibrary.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/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/Objects-normal/arm64/iOSOtaLibrary_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.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/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/Objects-normal/arm64/iOSOtaLibrary-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/Products/Debug-iphoneos/iOSOtaLibrary.o normal (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
    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-ios13.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/Objects-normal/arm64/iOSOtaLibrary.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/Objects-normal/arm64/iOSOtaLibrary_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/Objects-normal/arm64/iOSOtaLibrary_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/Objects-normal/arm64/iOSOtaLibrary.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOSOtaLibrary.o
ExtractAppIntentsMetadata (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
    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 iOSOtaLibrary --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 13.0 --bundle-identifier spi-builder-workspace.iOSOtaLibrary --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOSOtaLibrary.appintents --target-triple arm64-apple-ios13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOSOtaLibrary.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/Objects-normal/arm64/iOSOtaLibrary_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/Objects-normal/arm64/iOSOtaLibrary.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/iOSOtaLibrary.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/iOSOtaLibrary.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/iOSMcuManagerLibrary.build/Debug-iphoneos/iOSOtaLibrary.build/Objects-normal/arm64/iOSOtaLibrary.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-09-11 15:09:29.939 appintentsmetadataprocessor[963:5268] Starting appintentsmetadataprocessor export
2025-09-11 15:09:29.971 appintentsmetadataprocessor[963:5268] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOSOtaLibrary.o (in target 'iOSOtaLibrary' from project 'iOSMcuManagerLibrary')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/iOSOtaLibrary.o
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swiftcbor",
      "requirement" : {
        "exact" : [
          "0.4.7"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/valpackett/SwiftCBOR.git"
    },
    {
      "identity" : "zipfoundation",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.9.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/weichsel/ZIPFoundation.git"
    },
    {
      "identity" : "ios-ble-library",
      "requirement" : {
        "branch" : [
          "main"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/NordicSemiconductor/IOS-BLE-Library"
    }
  ],
  "manifest_display_name" : "iOSMcuManagerLibrary",
  "name" : "iOSMcuManagerLibrary",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.14"
    }
  ],
  "products" : [
    {
      "name" : "iOSMcuManagerLibrary",
      "targets" : [
        "iOSMcuManagerLibrary"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "iOSOtaLibrary",
      "targets" : [
        "iOSOtaLibrary"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "iOSOtaLibrary",
      "module_type" : "SwiftTarget",
      "name" : "iOSOtaLibrary",
      "path" : "iOSOtaLibrary/Source",
      "product_dependencies" : [
        "iOS-BLE-Library-Mock"
      ],
      "product_memberships" : [
        "iOSOtaLibrary"
      ],
      "sources" : [
        "Network/HTTPRequest.swift",
        "Network/Network.swift",
        "Network/URLSession.swift",
        "OTA/GetLatestReleaseInfoRequest.swift",
        "OTA/OTAManager+Tokens.swift",
        "OTA/OTAManager.swift",
        "OTA/Tokens/DeviceInfoToken.swift",
        "OTA/Tokens/ProjectKey.swift",
        "Observability/Data Structures/CBUUID+MDS.swift",
        "Observability/Data Structures/ObservabilityChunk.swift",
        "Observability/Data Structures/ObservabilityDevice.swift",
        "Observability/Data Structures/ObservabilityDeviceEvent.swift",
        "Observability/Data Structures/ObservabilityError.swift",
        "Observability/ObservabilityManager+Internal.swift",
        "Observability/ObservabilityManager.swift",
        "Observability/ObservabilityManagerError.swift",
        "Observability/PostChunkRequest.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "iOSMcuManagerLibrary",
      "module_type" : "SwiftTarget",
      "name" : "iOSMcuManagerLibrary",
      "path" : "iOSMcuManagerLibrary/Source",
      "product_dependencies" : [
        "SwiftCBOR",
        "ZIPFoundation"
      ],
      "product_memberships" : [
        "iOSMcuManagerLibrary"
      ],
      "sources" : [
        "Bluetooth/McuMgrBleROBWriteBuffer.swift",
        "Bluetooth/McuMgrBleTransport+CBCentralManagerDelegate.swift",
        "Bluetooth/McuMgrBleTransport+CBPeripheralDelegate.swift",
        "Bluetooth/McuMgrBleTransport.swift",
        "Bluetooth/McuMgrBleTransportConfguration.swift",
        "Bluetooth/McuMgrBleTransportWriteState.swift",
        "Extensions/CBOR+McuManager.swift",
        "Extensions/Data+McuManager.swift",
        "Extensions/String+McuManager.swift",
        "Managers/BasicManager.swift",
        "Managers/CrashManager.swift",
        "Managers/DFU/FirmwareUpgradeController.swift",
        "Managers/DFU/FirmwareUpgradeManager.swift",
        "Managers/DefaultManager.swift",
        "Managers/FileSystemManager.swift",
        "Managers/ImageManager.swift",
        "Managers/LogManager.swift",
        "Managers/RunTestManager.swift",
        "Managers/SettingsManager.swift",
        "Managers/ShellManager.swift",
        "Managers/StatsManager.swift",
        "Managers/SuitManager.swift",
        "McuManager.swift",
        "McuMgrCallbackOoOBuffer.swift",
        "McuMgrHeader.swift",
        "McuMgrImage.swift",
        "McuMgrLogDelegate.swift",
        "McuMgrManifest.swift",
        "McuMgrPackage.swift",
        "McuMgrResponse.swift",
        "McuMgrSuitEnvelope.swift",
        "McuMgrSuitManifest.swift",
        "McuMgrTransport.swift",
        "McuMgrUploadPipeline.swift",
        "Utils/CBOR+String.swift",
        "Utils/ResultLock.swift",
        "Utils/UTI.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
Done.