Build Information
Successful build of CoreBluetoothMock, reference main (10845e), with Swift 6.2 for macOS (SPM) on 22 Jun 2025 19:11:29 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/meech-ward/IOS-CoreBluetooth-Mock.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/meech-ward/IOS-CoreBluetooth-Mock
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 10845e9 Merge pull request #1 from NordicSemiconductor/main
Cloned https://github.com/meech-ward/IOS-CoreBluetooth-Mock.git
Revision (git rev-parse @):
10845e90f870a20c5b0a0471a28c8bff8ca2027a
SUCCESS checkout https://github.com/meech-ward/IOS-CoreBluetooth-Mock.git at main
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/meech-ward/IOS-CoreBluetooth-Mock.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
[1/1] Compiling plugin Swift-DocC Preview
[2/2] Compiling plugin Swift-DocC
Building for debugging...
[2/4] Write sources
[3/4] Write swift-version-1EA4D86E10B52AF.txt
[5/19] Compiling CoreBluetoothMock CBMPeripheralPreview.swift
[6/20] Compiling CoreBluetoothMock CBMCentralManagerNative.swift
[7/20] Compiling CoreBluetoothMock CBMManagerTypes.swift
[8/20] Compiling CoreBluetoothMock CBMPeer.swift
[9/20] Compiling CoreBluetoothMock CBMPeripheral.swift
[10/20] Compiling CoreBluetoothMock CBMPeripheralDelegateProxy.swift
[11/20] Compiling CoreBluetoothMock CBMPeripheralDelegate.swift
[12/20] Compiling CoreBluetoothMock CBMCentralManagerDelegate.swift
[13/20] Compiling CoreBluetoothMock CBMCentralManagerDelegateProxy.swift
[14/20] Emitting module CoreBluetoothMock
[15/20] Compiling CoreBluetoothMock CBMCentralManagerFactory.swift
[16/20] Compiling CoreBluetoothMock CBMCentralManagerMock.swift
[17/20] Compiling CoreBluetoothMock CBMPeripheralSpec.swift
[18/20] Compiling CoreBluetoothMock CBMAttributes.swift
[19/20] Compiling CoreBluetoothMock CBMCentralManager.swift
[20/20] Compiling CoreBluetoothMock CBMPeripheralSpecDelegate.swift
/Users/admin/builder/spi-builder-workspace/CoreBluetoothMock/CBMPeripheralSpecDelegate.swift:283:20: warning: 'peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)' is deprecated: Use similar method with CBMServiceMock parameter type. [#DeprecatedDeclaration]
281 | for service: CBMServiceMock)
282 | -> Result<Void, Error> {
283 | return peripheral(p, didReceiveIncludedServiceDiscoveryRequest: serviceUUIDs, for: service as CBMService)
| `- warning: 'peripheral(_:didReceiveIncludedServiceDiscoveryRequest:for:)' is deprecated: Use similar method with CBMServiceMock parameter type. [#DeprecatedDeclaration]
284 | }
285 |
/Users/admin/builder/spi-builder-workspace/CoreBluetoothMock/CBMPeripheralSpecDelegate.swift:297:20: warning: 'peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)' is deprecated: Use similar method with CBMServiceMock parameter type. [#DeprecatedDeclaration]
295 | for service: CBMServiceMock)
296 | -> Result<Void, Error> {
297 | return peripheral(p, didReceiveCharacteristicsDiscoveryRequest: characteristicUUIDs, for: service as CBMService)
| `- warning: 'peripheral(_:didReceiveCharacteristicsDiscoveryRequest:for:)' is deprecated: Use similar method with CBMServiceMock parameter type. [#DeprecatedDeclaration]
298 | }
299 |
/Users/admin/builder/spi-builder-workspace/CoreBluetoothMock/CBMPeripheralSpecDelegate.swift:309:20: warning: 'peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)' is deprecated: Use similar method with CBMCharacteristicMock parameter type. [#DeprecatedDeclaration]
307 | didReceiveDescriptorsDiscoveryRequestFor characteristic: CBMCharacteristicMock)
308 | -> Result<Void, Error> {
309 | return peripheral(p, didReceiveDescriptorsDiscoveryRequestFor: characteristic as CBMCharacteristic)
| `- warning: 'peripheral(_:didReceiveDescriptorsDiscoveryRequestFor:)' is deprecated: Use similar method with CBMCharacteristicMock parameter type. [#DeprecatedDeclaration]
310 | }
311 |
/Users/admin/builder/spi-builder-workspace/CoreBluetoothMock/CBMPeripheralSpecDelegate.swift:321:20: warning: 'peripheral(_:didReceiveReadRequestFor:)' is deprecated: Use similar method with CBMCharacteristicMock parameter type. [#DeprecatedDeclaration]
319 | didReceiveReadRequestFor characteristic: CBMCharacteristicMock)
320 | -> Result<Data, Error> {
321 | return peripheral(p, didReceiveReadRequestFor: characteristic as CBMCharacteristic)
| `- warning: 'peripheral(_:didReceiveReadRequestFor:)' is deprecated: Use similar method with CBMCharacteristicMock parameter type. [#DeprecatedDeclaration]
322 | }
323 |
/Users/admin/builder/spi-builder-workspace/CoreBluetoothMock/CBMPeripheralSpecDelegate.swift:333:20: warning: 'peripheral(_:didReceiveReadRequestFor:)' is deprecated: Use similar method with CBMDescriptorMock parameter type. [#DeprecatedDeclaration]
331 | didReceiveReadRequestFor descriptor: CBMDescriptorMock)
332 | -> Result<Data, Error> {
333 | return peripheral(p, didReceiveReadRequestFor: descriptor as CBMDescriptor)
| `- warning: 'peripheral(_:didReceiveReadRequestFor:)' is deprecated: Use similar method with CBMDescriptorMock parameter type. [#DeprecatedDeclaration]
334 | }
335 |
/Users/admin/builder/spi-builder-workspace/CoreBluetoothMock/CBMPeripheralSpecDelegate.swift:347:20: warning: 'peripheral(_:didReceiveWriteRequestFor:data:)' is deprecated: Use similar method with CBMCharacteristicMock parameter type. [#DeprecatedDeclaration]
345 | data: Data)
346 | -> Result<Void, Error> {
347 | return peripheral(p, didReceiveWriteRequestFor: characteristic as CBMCharacteristic, data: data)
| `- warning: 'peripheral(_:didReceiveWriteRequestFor:data:)' is deprecated: Use similar method with CBMCharacteristicMock parameter type. [#DeprecatedDeclaration]
348 | }
349 |
/Users/admin/builder/spi-builder-workspace/CoreBluetoothMock/CBMPeripheralSpecDelegate.swift:359:9: warning: 'peripheral(_:didReceiveWriteCommandFor:data:)' is deprecated: Use similar method with CBMCharacteristicMock parameter type. [#DeprecatedDeclaration]
357 | didReceiveWriteCommandFor characteristic: CBMCharacteristicMock,
358 | data: Data) {
359 | peripheral(p, didReceiveWriteCommandFor: characteristic as CBMCharacteristic, data: data)
| `- warning: 'peripheral(_:didReceiveWriteCommandFor:data:)' is deprecated: Use similar method with CBMCharacteristicMock parameter type. [#DeprecatedDeclaration]
360 | }
361 |
/Users/admin/builder/spi-builder-workspace/CoreBluetoothMock/CBMPeripheralSpecDelegate.swift:373:20: warning: 'peripheral(_:didReceiveWriteRequestFor:data:)' is deprecated: Use similar method with CBMDescriptorMock parameter type. [#DeprecatedDeclaration]
371 | data: Data)
372 | -> Result<Void, Error> {
373 | return peripheral(p, didReceiveWriteRequestFor: descriptor as CBMDescriptor, data: data)
| `- warning: 'peripheral(_:didReceiveWriteRequestFor:data:)' is deprecated: Use similar method with CBMDescriptorMock parameter type. [#DeprecatedDeclaration]
374 | }
375 |
/Users/admin/builder/spi-builder-workspace/CoreBluetoothMock/CBMPeripheralSpecDelegate.swift:396:20: warning: 'peripheral(_:didReceiveSetNotifyRequest:for:)' is deprecated: Use similar method with CBMCharacteristicMock parameter type. [#DeprecatedDeclaration]
394 | for characteristic: CBMCharacteristicMock)
395 | -> Result<Void, Error> {
396 | return peripheral(p, didReceiveSetNotifyRequest: enabled, for: characteristic as CBMCharacteristic)
| `- warning: 'peripheral(_:didReceiveSetNotifyRequest:for:)' is deprecated: Use similar method with CBMCharacteristicMock parameter type. [#DeprecatedDeclaration]
397 | }
398 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
Build complete! (17.69s)
Fetching https://github.com/apple/swift-docc-plugin
[1/2082] Fetching swift-docc-plugin
Fetched https://github.com/apple/swift-docc-plugin from cache (1.25s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.4.4 (1.78s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3415] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.15s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.73s)
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/apple/swift-docc-plugin
Working copy of https://github.com/apple/swift-docc-plugin resolved at 1.4.4
Build complete.
{
"dependencies" : [
{
"identity" : "swift-docc-plugin",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-docc-plugin"
}
],
"manifest_display_name" : "CoreBluetoothMock",
"name" : "CoreBluetoothMock",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.13"
},
{
"name" : "ios",
"version" : "11.0"
},
{
"name" : "watchos",
"version" : "4.0"
},
{
"name" : "tvos",
"version" : "11.0"
}
],
"products" : [
{
"name" : "CoreBluetoothMock",
"targets" : [
"CoreBluetoothMock"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "CoreBluetoothMock",
"module_type" : "SwiftTarget",
"name" : "CoreBluetoothMock",
"path" : "CoreBluetoothMock",
"product_memberships" : [
"CoreBluetoothMock"
],
"sources" : [
"CBMAttributes.swift",
"CBMCentralManager.swift",
"CBMCentralManagerDelegate.swift",
"CBMCentralManagerDelegateProxy.swift",
"CBMCentralManagerFactory.swift",
"CBMCentralManagerMock.swift",
"CBMCentralManagerNative.swift",
"CBMManagerTypes.swift",
"CBMPeer.swift",
"CBMPeripheral.swift",
"CBMPeripheralDelegate.swift",
"CBMPeripheralDelegateProxy.swift",
"CBMPeripheralPreview.swift",
"CBMPeripheralSpec.swift",
"CBMPeripheralSpecDelegate.swift"
],
"type" : "library"
}
],
"tools_version" : "5.6"
}
Done.