Build Information
Successful build of bluetooth-law-energy-swift, reference main (607f6b), with Swift 6.3 for macOS (SPM) on 16 Apr 2026 18:48:22 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/swiftuiux/bluetooth-law-energy-swift.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/swiftuiux/bluetooth-law-energy-swift
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 607f6b6 Update README.md
Cloned https://github.com/swiftuiux/bluetooth-law-energy-swift.git
Revision (git rev-parse @):
607f6b662ee58458d1c2bab018cec8fa8b0adb8d
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/swiftuiux/bluetooth-law-energy-swift.git at main
Fetching https://github.com/swiftuiux/retry-policy-service.git
[1/101] Fetching retry-policy-service
Fetched https://github.com/swiftuiux/retry-policy-service.git from cache (0.65s)
Computing version for https://github.com/swiftuiux/retry-policy-service.git
Computed https://github.com/swiftuiux/retry-policy-service.git at 1.0.1 (1.38s)
Creating working copy for https://github.com/swiftuiux/retry-policy-service.git
Working copy of https://github.com/swiftuiux/retry-policy-service.git resolved at 1.0.1
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
"identity": ".resolve-product-dependencies",
"name": "resolve-dependencies",
"url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"traits": [
"default"
],
"dependencies": [
{
"identity": "bluetooth-law-energy-swift",
"name": "bluetooth-law-energy-swift",
"url": "https://github.com/swiftuiux/bluetooth-law-energy-swift.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/bluetooth-law-energy-swift",
"traits": [
"default"
],
"dependencies": [
{
"identity": "retry-policy-service",
"name": "retry-policy-service",
"url": "https://github.com/swiftuiux/retry-policy-service.git",
"version": "1.0.1",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/retry-policy-service",
"traits": [
"default"
],
"dependencies": [
]
}
]
}
]
}
Fetching https://github.com/swiftuiux/bluetooth-law-energy-swift.git
[1/1141] Fetching bluetooth-law-energy-swift
Fetched https://github.com/swiftuiux/bluetooth-law-energy-swift.git from cache (1.28s)
Fetching https://github.com/swiftuiux/retry-policy-service.git from cache
Fetched https://github.com/swiftuiux/retry-policy-service.git from cache (0.47s)
Computing version for https://github.com/swiftuiux/retry-policy-service.git
Computed https://github.com/swiftuiux/retry-policy-service.git at 1.0.1 (0.54s)
Creating working copy for https://github.com/swiftuiux/bluetooth-law-energy-swift.git
Working copy of https://github.com/swiftuiux/bluetooth-law-energy-swift.git resolved at main (607f6b6)
Creating working copy for https://github.com/swiftuiux/retry-policy-service.git
Working copy of https://github.com/swiftuiux/retry-policy-service.git resolved at 1.0.1
warning: '.resolve-product-dependencies': dependency 'bluetooth-law-energy-swift' is not used by any target
Found 1 product dependencies
- retry-policy-service
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.3
Building package at path: $PWD
https://github.com/swiftuiux/bluetooth-law-energy-swift.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version--6988338F2F200930.txt
[4/7] Compiling retry_policy_service Strategy.swift
[5/7] Compiling retry_policy_service RetryService.swift
[6/7] Emitting module retry_policy_service
[7/7] Compiling retry_policy_service DispatchTimeInterval.swift
[8/24] Compiling bluetooth_law_energy_swift ILogger.swift
[9/24] Compiling bluetooth_law_energy_swift AppleLogger.swift
[10/24] Compiling bluetooth_law_energy_swift CBPeripheral+.swift
[11/24] Compiling bluetooth_law_energy_swift Task+.swift
[12/24] Compiling bluetooth_law_energy_swift BLEState.swift
[13/24] Compiling bluetooth_law_energy_swift IBluetoothLEManager.swift
[14/24] Compiling bluetooth_law_energy_swift BluetoothDelegate.swift
[15/24] Compiling bluetooth_law_energy_swift PeripheralDelegate.swift
[16/24] Compiling bluetooth_law_energy_swift State.swift
[17/24] Compiling bluetooth_law_energy_swift Errors.swift
[18/24] Compiling bluetooth_law_energy_swift ServiceType.swift
[19/24] Compiling bluetooth_law_energy_swift StreamFactory.swift
[20/24] Compiling bluetooth_law_energy_swift CacheServices.swift
[21/24] Compiling bluetooth_law_energy_swift ServiceRegistration.swift
[22/24] Emitting module bluetooth_law_energy_swift
[23/24] Compiling bluetooth_law_energy_swift BluetoothLEManager.swift
/Users/admin/builder/spi-builder-workspace/Sources/bluetooth-law-energy-swift/BluetoothLEManager.swift:235:37: warning: main actor-isolated property 'bleState' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
16 | /// Publishes BLE state changes to the main actor.
17 | @MainActor
18 | public let bleState: CurrentValueSubject<BLEState, Never> = .init(.init())
| `- note: property declared here
19 |
20 | /// Internal state flags.
:
233 | guard let self = self else { return }
234 | let result = self.checkForScan(state, subscriberCount)
235 | let bleState = self.bleState
| `- warning: main actor-isolated property 'bleState' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
236 | Task { @MainActor in
237 | bleState.send(result)
[24/24] Compiling bluetooth_law_energy_swift Publisher+.swift
/Users/admin/builder/spi-builder-workspace/Sources/bluetooth-law-energy-swift/BluetoothLEManager.swift:235:37: warning: main actor-isolated property 'bleState' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
16 | /// Publishes BLE state changes to the main actor.
17 | @MainActor
18 | public let bleState: CurrentValueSubject<BLEState, Never> = .init(.init())
| `- note: property declared here
19 |
20 | /// Internal state flags.
:
233 | guard let self = self else { return }
234 | let result = self.checkForScan(state, subscriberCount)
235 | let bleState = self.bleState
| `- warning: main actor-isolated property 'bleState' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
236 | Task { @MainActor in
237 | bleState.send(result)
[25/25] Compiling bluetooth_law_energy_swift StreamRegistration.swift
Build complete! (7.19s)
Build complete.
{
"dependencies" : [
{
"identity" : "retry-policy-service",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.1",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swiftuiux/retry-policy-service.git"
}
],
"manifest_display_name" : "bluetooth-law-energy-swift",
"name" : "bluetooth-law-energy-swift",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "12.0"
},
{
"name" : "ios",
"version" : "15.0"
},
{
"name" : "watchos",
"version" : "8.0"
},
{
"name" : "tvos",
"version" : "15.0"
}
],
"products" : [
{
"name" : "bluetooth-law-energy-swift",
"targets" : [
"bluetooth-law-energy-swift"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "bluetooth_law_energy_swiftTests",
"module_type" : "SwiftTarget",
"name" : "bluetooth-law-energy-swiftTests",
"path" : "Tests/bluetooth-law-energy-swiftTests",
"sources" : [
"BluetoothLEManagerTests.swift"
],
"target_dependencies" : [
"bluetooth-law-energy-swift"
],
"type" : "test"
},
{
"c99name" : "bluetooth_law_energy_swift",
"module_type" : "SwiftTarget",
"name" : "bluetooth-law-energy-swift",
"path" : "Sources/bluetooth-law-energy-swift",
"product_dependencies" : [
"retry-policy-service"
],
"product_memberships" : [
"bluetooth-law-energy-swift"
],
"sources" : [
"BluetoothLEManager.swift",
"Combine+/Publisher+.swift",
"delegate/BluetoothDelegate.swift",
"delegate/PeripheralDelegate.swift",
"enum/Errors.swift",
"enum/ServiceType.swift",
"ext/CBPeripheral+.swift",
"ext/Task+.swift",
"model/BLEState.swift",
"protocol/IBluetoothLEManager.swift",
"protocol/ILogger.swift",
"service/AppleLogger.swift",
"service/CacheServices.swift",
"service/ServiceRegistration.swift",
"service/State.swift",
"service/StreamFactory.swift",
"service/StreamRegistration.swift"
],
"type" : "library"
}
],
"tools_version" : "5.7"
}
✅ Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path: $PWD/.docs/swiftuiux/bluetooth-law-energy-swift/main
Repository: swiftuiux/bluetooth-law-energy-swift
Swift version used: 6.3
Target: bluetooth-law-energy-swift
Extracting symbol information for 'bluetooth-law-energy-swift'...
Finished extracting symbol information for 'bluetooth-law-energy-swift'. (28.55s)
Building documentation for 'bluetooth-law-energy-swift'...
warning: No valid content was found in this file
A '.' file should contain a top-level directive ('Tutorials', 'Tutorial', or 'Article') and valid child content. Only '.md' files support content without a top-level directive
--> ../../../../..:1:1-5:2
1 + # ``bluetooth_law_energy_swift``
2 +
3 + @Metadata {
4 + @DisplayName("bluetooth-law-energy-swift")
5 + }
Finished building documentation for 'bluetooth-law-energy-swift' (0.35s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/swiftuiux/bluetooth-law-energy-swift/main
Fetching https://github.com/swiftlang/swift-docc-plugin
Updating https://github.com/swiftuiux/retry-policy-service.git
Updated https://github.com/swiftuiux/retry-policy-service.git (0.46s)
[1/2277] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.09s)
Computing version for https://github.com/swiftuiux/retry-policy-service.git
Computed https://github.com/swiftuiux/retry-policy-service.git at 1.0.1 (1.76s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.6 (0.66s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3672] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.17s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.89s)
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/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.6
Building for debugging...
[0/8] Write sources
[0/8] Write snippet-extract-tool-entitlement.plist
[0/8] Write sources
[4/8] Write swift-version--6988338F2F200930.txt
[6/53] Emitting module Snippets
[7/53] Compiling Snippets SnippetParser.swift
[8/53] Compiling Snippets Snippet.swift
[9/53] Compiling SymbolKit DeclarationFragments.swift
[10/53] Compiling SymbolKit Fragment.swift
[11/53] Compiling SymbolKit FragmentKind.swift
[12/53] Compiling SymbolKit FunctionParameter.swift
[13/53] Compiling SymbolKit FunctionSignature.swift
[14/53] Compiling SymbolKit SemanticVersion.swift
[15/53] Compiling SymbolKit AccessControl.swift
[16/53] Compiling SymbolKit Availability.swift
[17/53] Compiling SymbolKit AvailabilityItem.swift
[18/53] Compiling SymbolKit Domain.swift
[19/53] Compiling SymbolKit Relationship.swift
[20/53] Compiling SymbolKit RelationshipKind.swift
[21/53] Compiling SymbolKit SourceOrigin.swift
[22/53] Compiling SymbolKit GenericConstraints.swift
[23/53] Compiling SymbolKit Swift.swift
[24/57] Compiling SymbolKit SourceRange.swift
[25/57] Compiling SymbolKit Metadata.swift
[26/57] Compiling SymbolKit Module.swift
[27/57] Compiling SymbolKit OperatingSystem.swift
[28/57] Compiling SymbolKit Platform.swift
[29/57] Compiling SymbolKit Mixin+Equals.swift
[30/57] Compiling SymbolKit Mixin+Hash.swift
[31/57] Compiling SymbolKit Mixin.swift
[32/57] Compiling SymbolKit LineList.swift
[33/57] Compiling SymbolKit Position.swift
[34/57] Emitting module SymbolKit
[35/57] Compiling SymbolKit Identifier.swift
[36/57] Compiling SymbolKit KindIdentifier.swift
[37/57] Compiling SymbolKit Location.swift
[38/57] Compiling SymbolKit Mutability.swift
[39/57] Compiling SymbolKit GenericConstraint.swift
[40/57] Compiling SymbolKit GenericParameter.swift
[41/57] Compiling SymbolKit Generics.swift
[42/57] Compiling SymbolKit Namespace.swift
[43/57] Compiling SymbolKit Names.swift
[44/57] Compiling SymbolKit SPI.swift
[45/57] Compiling SymbolKit Snippet.swift
[46/57] Compiling SymbolKit Extension.swift
[47/57] Compiling SymbolKit Symbol.swift
[48/57] Compiling SymbolKit SymbolKind.swift
[49/57] Compiling SymbolKit SymbolGraph.swift
[50/57] Compiling SymbolKit GraphCollector.swift
[51/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[52/57] Compiling SymbolKit UnifiedSymbol.swift
[53/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[54/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (5.16s)
Building for debugging...
[0/1] Write swift-version--6988338F2F200930.txt
Build of target: 'bluetooth-law-energy-swift' complete! (0.19s)
154
2 /Users/admin/builder/spi-builder-workspace/.docs/swiftuiux/bluetooth-law-energy-swift/main
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/swiftuiux/bluetooth-law-energy-swift/main
File count: 154
Doc size: 2.0MB
Preparing doc bundle ...
Uploading prod-swiftuiux-bluetooth-law-energy-swift-main-2a05a779.zip to s3://spi-docs-inbox/prod-swiftuiux-bluetooth-law-energy-swift-main-2a05a779.zip
Copying... [14%]
Copying... [28%]
Copying... [42%]
Copying... [56%]
Copying... [70%]
Copying... [84%]
Copying... [98%]
Copying... [100%]
Done.