The Swift Package Index logo.Swift Package Index

Build Information

Successful build of bluetooth-law-energy-swift, reference 1.2.0 (fe2fd5), with Swift 6.3 for macOS (SPM) on 16 Apr 2026 18:48:40 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/swiftuiux/bluetooth-law-energy-swift.git
Reference: 1.2.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/swiftuiux/bluetooth-law-energy-swift
 * tag               1.2.0      -> FETCH_HEAD
HEAD is now at fe2fd54 update
Cloned https://github.com/swiftuiux/bluetooth-law-energy-swift.git
Revision (git rev-parse @):
fe2fd54e9ca58e1c88b0ff3746cc382645d86db5
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/swiftuiux/bluetooth-law-energy-swift.git at 1.2.0
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.67s)
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.33s)
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.22s)
Fetching https://github.com/swiftuiux/retry-policy-service.git from cache
Fetched https://github.com/swiftuiux/retry-policy-service.git from cache (0.41s)
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.46s)
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 1.2.0 (fe2fd54)
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 DispatchTimeInterval.swift
[5/7] Compiling retry_policy_service Strategy.swift
[6/7] Emitting module retry_policy_service
[7/7] Compiling retry_policy_service RetryService.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 StreamFactory.swift
[11/24] Compiling bluetooth_law_energy_swift BLEState.swift
[12/24] Compiling bluetooth_law_energy_swift IBluetoothLEManager.swift
[13/24] Emitting module bluetooth_law_energy_swift
[14/24] Compiling bluetooth_law_energy_swift State.swift
[15/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)
[16/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)
[17/24] Compiling bluetooth_law_energy_swift CBPeripheral+.swift
[18/24] Compiling bluetooth_law_energy_swift Task+.swift
[19/24] Compiling bluetooth_law_energy_swift Errors.swift
[20/24] Compiling bluetooth_law_energy_swift ServiceType.swift
[21/24] Compiling bluetooth_law_energy_swift BluetoothDelegate.swift
[22/24] Compiling bluetooth_law_energy_swift PeripheralDelegate.swift
[23/24] Compiling bluetooth_law_energy_swift CacheServices.swift
[24/24] Compiling bluetooth_law_energy_swift ServiceRegistration.swift
[25/25] Compiling bluetooth_law_energy_swift StreamRegistration.swift
Build complete! (7.18s)
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/1.2.0
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'. (27.56s)
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.32s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/swiftuiux/bluetooth-law-energy-swift/1.2.0
Fetching https://github.com/swiftlang/swift-docc-plugin
[1/2277] Fetching swift-docc-plugin
Updating https://github.com/swiftuiux/retry-policy-service.git
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.10s)
Updated https://github.com/swiftuiux/retry-policy-service.git (0.44s)
Computing version for https://github.com/swiftuiux/retry-policy-service.git
Computed https://github.com/swiftuiux/retry-policy-service.git at 1.0.1 (2.22s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.6 (0.69s)
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.05s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.82s)
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
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
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] Compiling SymbolKit Names.swift
[7/53] Compiling SymbolKit SPI.swift
[8/53] Compiling SymbolKit Snippet.swift
[9/53] Compiling SymbolKit Extension.swift
[10/53] Compiling Snippets SnippetParser.swift
[11/53] Compiling Snippets Snippet.swift
[12/53] Emitting module Snippets
[13/57] Compiling SymbolKit SemanticVersion.swift
[14/57] Compiling SymbolKit AccessControl.swift
[15/57] Compiling SymbolKit Availability.swift
[16/57] Compiling SymbolKit AvailabilityItem.swift
[17/57] Compiling SymbolKit Domain.swift
[18/57] Compiling SymbolKit Relationship.swift
[19/57] Compiling SymbolKit RelationshipKind.swift
[20/57] Compiling SymbolKit SourceOrigin.swift
[21/57] Compiling SymbolKit GenericConstraints.swift
[22/57] Compiling SymbolKit Swift.swift
[23/57] Compiling SymbolKit DeclarationFragments.swift
[24/57] Compiling SymbolKit Fragment.swift
[25/57] Compiling SymbolKit FragmentKind.swift
[26/57] Compiling SymbolKit FunctionParameter.swift
[27/57] Compiling SymbolKit FunctionSignature.swift
[28/57] Compiling SymbolKit Identifier.swift
[29/57] Compiling SymbolKit KindIdentifier.swift
[30/57] Compiling SymbolKit Location.swift
[31/57] Compiling SymbolKit Mutability.swift
[32/57] Compiling SymbolKit SourceRange.swift
[33/57] Compiling SymbolKit Metadata.swift
[34/57] Compiling SymbolKit Module.swift
[35/57] Compiling SymbolKit OperatingSystem.swift
[36/57] Compiling SymbolKit Platform.swift
[37/57] Emitting module SymbolKit
[38/57] Compiling SymbolKit Mixin+Equals.swift
[39/57] Compiling SymbolKit Mixin+Hash.swift
[40/57] Compiling SymbolKit Mixin.swift
[41/57] Compiling SymbolKit LineList.swift
[42/57] Compiling SymbolKit Position.swift
[43/57] Compiling SymbolKit GenericConstraint.swift
[44/57] Compiling SymbolKit GenericParameter.swift
[45/57] Compiling SymbolKit Generics.swift
[46/57] Compiling SymbolKit Namespace.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.02s)
Building for debugging...
[0/1] Write swift-version--6988338F2F200930.txt
Build of target: 'bluetooth-law-energy-swift' complete! (0.20s)
     154
2	/Users/admin/builder/spi-builder-workspace/.docs/swiftuiux/bluetooth-law-energy-swift/1.2.0
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/swiftuiux/bluetooth-law-energy-swift/1.2.0
File count: 154
Doc size:   2.0MB
Preparing doc bundle ...
Uploading prod-swiftuiux-bluetooth-law-energy-swift-1.2.0-02db6677.zip to s3://spi-docs-inbox/prod-swiftuiux-bluetooth-law-energy-swift-1.2.0-02db6677.zip
Copying... [14%]
Copying... [28%]
Copying... [42%]
Copying... [56%]
Copying... [70%]
Copying... [84%]
Copying... [98%]
Copying... [100%]
Done.