Build Information
Successful build of CharacteristicKit, reference v0.1.1 (48f67a
), with Swift 6.2 (beta) for macOS (SPM) on 20 Jun 2025 09:50:36 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/persello/CharacteristicKit.git
Reference: v0.1.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/persello/CharacteristicKit
* tag v0.1.1 -> FETCH_HEAD
HEAD is now at 48f67a6 Added documentation target to Swift Package Index.
Cloned https://github.com/persello/CharacteristicKit.git
Revision (git rev-parse @):
48f67a66136a19f574b95703757cd146b0bbf35c
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/persello/CharacteristicKit.git at v0.1.1
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/persello/CharacteristicKit.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/4] Write sources
[2/4] Compiling CRuntime dummy.c
[3/4] Write swift-version-1EA4D86E10B52AF.txt
[5/46] Compiling Runtime PropertyInfo.swift
[6/46] Compiling Runtime TypeInfo.swift
[7/46] Compiling Runtime TypeInfoConvertible.swift
[8/46] Compiling Runtime Pointers.swift
[9/46] Compiling Runtime NominalMetadataType.swift
[10/46] Compiling Runtime ProtocolMetadata.swift
[11/46] Compiling Runtime StructMetadata.swift
[12/46] Compiling Runtime TupleMetadata.swift
[13/50] Compiling Runtime MetadataLayoutType.swift
[14/50] Compiling Runtime ProtocolDescriptor.swift
[15/50] Compiling Runtime ProtocolMetadataLayout.swift
[16/50] Compiling Runtime ProtocolTypeContainer.swift
[17/50] Compiling Runtime StructMetadataLayout.swift
[18/50] Compiling Runtime ClassMetadata.swift
[19/50] Compiling Runtime EnumMetadata.swift
[20/50] Compiling Runtime FuntionMetadata.swift
[21/50] Compiling Runtime Metadata.swift
[22/50] Compiling Runtime MetadataType.swift
[23/50] Compiling Runtime StructTypeDescriptor.swift
[24/50] Compiling Runtime TargetTypeGenericContextDescriptorHeader.swift
[25/50] Compiling Runtime TupleMetadataLayout.swift
[26/50] Compiling Runtime TypeDescriptor.swift
[27/50] Compiling Runtime ValueWitnessTable.swift
[28/50] Compiling Runtime Case.swift
[29/50] Compiling Runtime Errors.swift
[30/50] Compiling Runtime FunctionInfo.swift
[31/50] Compiling Runtime Kind.swift
[32/50] Compiling Runtime RelativePointer.swift
[33/50] Compiling Runtime RelativeVectorPointer.swift
[34/50] Compiling Runtime Union.swift
[35/50] Compiling Runtime Vector.swift
[36/50] Compiling Runtime EnumMetadataLayout.swift
[37/50] Compiling Runtime EnumTypeDescriptor.swift
[38/50] Compiling Runtime ExistentialContainter.swift
[39/50] Compiling Runtime FieldDescriptor.swift
[40/50] Compiling Runtime FunctionMetadataLayout.swift
[41/50] Compiling Runtime GettersSetters.swift
[42/50] Compiling Runtime Pointer+Extensions.swift
[43/50] Compiling Runtime RetainCounts.swift
[44/50] Compiling Runtime String+Extensions.swift
[45/50] Emitting module Runtime
[46/50] Compiling Runtime DefaultValue.swift
[47/50] Compiling Runtime Factory.swift
[48/50] Compiling Runtime ClassHeader.swift
[49/50] Compiling Runtime ClassMetadataLayout.swift
[50/50] Compiling Runtime ClassTypeDescriptor.swift
[51/61] Compiling CharacteristicKit GenericPeripheralModel.swift
[52/61] Compiling CharacteristicKit PeripheralModel+Discovery.swift
[53/61] Compiling CharacteristicKit DataDecodable.swift
[54/61] Compiling CharacteristicKit Characteristic.swift
/Users/admin/builder/spi-builder-workspace/Sources/CharacteristicKit/Characteristics/Characteristic.swift:110:29: warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
108 | let size = MemoryLayout.size(ofValue: self.internalValue)
109 | peripheral.writeValue(
110 | Data(bytes: &self.internalValue, count: size),
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
111 | for: characteristic,
112 | type: .withResponse
[55/61] Compiling CharacteristicKit CharacteristicContainer.swift
/Users/admin/builder/spi-builder-workspace/Sources/CharacteristicKit/Characteristics/Characteristic.swift:110:29: warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
108 | let size = MemoryLayout.size(ofValue: self.internalValue)
109 | peripheral.writeValue(
110 | Data(bytes: &self.internalValue, count: size),
| `- warning: forming 'UnsafeRawPointer' to a variable of type 'T'; this is likely incorrect because 'T' may contain an object reference.
111 | for: characteristic,
112 | type: .withResponse
[56/61] Compiling CharacteristicKit MockCharacteristic.swift
[57/61] Emitting module CharacteristicKit
[58/62] Compiling CharacteristicKit PublishedCharacteristic.swift
[59/62] Compiling CharacteristicKit PeripheralDelegate.swift
[60/62] Compiling CharacteristicKit GeneralCharacteristicProtocol.swift
[61/62] Compiling CharacteristicKit MockPeripheralModel.swift
[62/62] Compiling CharacteristicKit PeripheralModel.swift
/Users/admin/builder/spi-builder-workspace/Sources/CharacteristicKit/Device/PeripheralModel.swift:48:18: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
46 | func initialiseDelegate() {
47 | Task {
48 | self.delegate = await PeripheralDelegate(model: self)
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
49 | peripheral.delegate = self.delegate
50 | }
/Users/admin/builder/spi-builder-workspace/Sources/CharacteristicKit/Device/PeripheralModel.swift:46:10: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
44 | public extension PeripheralModel {
45 |
46 | func initialiseDelegate() {
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
47 | Task {
48 | self.delegate = await PeripheralDelegate(model: self)
Build complete! (7.93s)
Fetching https://github.com/wickwirew/Runtime.git
[1/1966] Fetching runtime
Fetched https://github.com/wickwirew/Runtime.git from cache (0.96s)
Computing version for https://github.com/wickwirew/Runtime.git
Computed https://github.com/wickwirew/Runtime.git at 2.2.7 (1.55s)
Creating working copy for https://github.com/wickwirew/Runtime.git
Working copy of https://github.com/wickwirew/Runtime.git resolved at 2.2.7
Build complete.
{
"dependencies" : [
{
"identity" : "runtime",
"requirement" : {
"range" : [
{
"lower_bound" : "2.0.0",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/wickwirew/Runtime.git"
}
],
"manifest_display_name" : "CharacteristicKit",
"name" : "CharacteristicKit",
"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" : "CharacteristicKit",
"targets" : [
"CharacteristicKit"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "CharacteristicKit",
"module_type" : "SwiftTarget",
"name" : "CharacteristicKit",
"path" : "Sources/CharacteristicKit",
"product_dependencies" : [
"Runtime"
],
"product_memberships" : [
"CharacteristicKit"
],
"sources" : [
"Characteristics/Characteristic.swift",
"Characteristics/CharacteristicContainer.swift",
"Characteristics/DataDecodable.swift",
"Characteristics/GeneralCharacteristicProtocol.swift",
"Characteristics/MockCharacteristic.swift",
"Characteristics/PublishedCharacteristic.swift",
"Device/GenericPeripheralModel.swift",
"Device/MockPeripheralModel.swift",
"Device/PeripheralDelegate.swift",
"Device/PeripheralModel+Discovery.swift",
"Device/PeripheralModel.swift"
],
"type" : "library"
}
],
"tools_version" : "5.7"
}
Done.