Build Information
Successful build of Extendable, reference 0.4.0 (0feac3), with Swift 6.3 for macOS (SPM) on 21 Apr 2026 19:37:50 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/ChimeHQ/Extendable.git
Reference: 0.4.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/ChimeHQ/Extendable
* tag 0.4.0 -> FETCH_HEAD
HEAD is now at 0feac3e remove note, CI now works
Cloned https://github.com/ChimeHQ/Extendable.git
Revision (git rev-parse @):
0feac3efd49320132f7c98ce85e254e439f1e835
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/ChimeHQ/Extendable.git at 0.4.0
========================================
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": "extendable",
"name": "Extendable",
"url": "https://github.com/ChimeHQ/Extendable.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/Extendable",
"traits": [
"default"
],
"dependencies": [
]
}
]
}
Fetching https://github.com/ChimeHQ/Extendable.git
[1/280] Fetching extendable
Fetched https://github.com/ChimeHQ/Extendable.git from cache (0.69s)
Creating working copy for https://github.com/ChimeHQ/Extendable.git
Working copy of https://github.com/ChimeHQ/Extendable.git resolved at 0.4.0 (0feac3e)
warning: '.resolve-product-dependencies': dependency 'extendable' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.3
Building package at path: $PWD
https://github.com/ChimeHQ/Extendable.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/14] Compiling Extendable ConnectionAccepter.swift
[5/14] Emitting module Extendable
[6/14] Compiling Extendable AppExtensionSceneGroup.swift
[7/14] Compiling Extendable AppExtension+Init.swift
/Users/admin/builder/spi-builder-workspace/Sources/Extendable/AppExtension+Init.swift:17:33: warning: type 'Value' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
7 | /// Will be obseleted by SE-0414
8 | @propertyWrapper
9 | public struct InitializerTransferred<Value>: @unchecked Sendable {
| `- note: consider making generic parameter 'Value' conform to the 'Sendable' protocol
10 | public let wrappedValue: Value
11 |
:
15 |
16 | public init(mainActorProvider: @MainActor () -> Value) {
17 | self.wrappedValue = MainActor.assumeIsolated {
| `- warning: type 'Value' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
18 | mainActorProvider()
19 | }
/Users/admin/builder/spi-builder-workspace/Sources/Extendable/AppExtension+Init.swift:18:22: warning: sending 'mainActorProvider' risks causing data races; this is an error in the Swift 6 language mode [#SendingRisksDataRace]
16 | public init(mainActorProvider: @MainActor () -> Value) {
17 | self.wrappedValue = MainActor.assumeIsolated {
18 | mainActorProvider()
| |- warning: sending 'mainActorProvider' risks causing data races; this is an error in the Swift 6 language mode [#SendingRisksDataRace]
| `- note: task-isolated 'mainActorProvider' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
19 | }
20 | }
[#SendingRisksDataRace]: <https://docs.swift.org/compiler/documentation/diagnostics/sending-risks-data-race>
[8/14] Compiling ExtendableHost ExtensionHostingView.swift
[9/14] Compiling ExtendableHost AppExtensionProcess+Utilities.swift
[10/14] Compiling ExtendableHost AppExtensionBrowserView.swift
[11/14] Emitting module ExtendableHost
[12/14] Compiling Extendable ConnectableSceneExtension.swift
/Users/admin/builder/spi-builder-workspace/Sources/Extendable/ConnectableSceneExtension.swift:20:10: warning: call to main actor-isolated initializer 'init(_:configuration:)' in a synchronous nonisolated context [#ActorIsolatedCall]
18 | public extension ConnectableSceneExtension {
19 | var configuration: AppExtensionSceneConfiguration {
20 | return AppExtensionSceneConfiguration(scene, configuration: globalConfiguration)
| `- warning: call to main actor-isolated initializer 'init(_:configuration:)' in a synchronous nonisolated context [#ActorIsolatedCall]
21 | }
22 | }
ExtensionKit.AppExtensionSceneConfiguration.init:2:35: note: calls to initializer 'init(_:configuration:)' from outside of its actor context are implicitly asynchronous
1 | struct AppExtensionSceneConfiguration {
2 | @MainActor @preconcurrency public init<Content, Configuration>(_ content: @autoclosure @escaping @MainActor () -> Content, configuration: Configuration? = nil) where Content : AppExtensionScene, Configuration : AppExtensionConfiguration}
| `- note: calls to initializer 'init(_:configuration:)' from outside of its actor context are implicitly asynchronous
3 |
/Users/admin/builder/spi-builder-workspace/Sources/Extendable/ConnectableSceneExtension.swift:20:41: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode [#SendingRisksDataRace]
18 | public extension ConnectableSceneExtension {
19 | var configuration: AppExtensionSceneConfiguration {
20 | return AppExtensionSceneConfiguration(scene, configuration: globalConfiguration)
| |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode [#SendingRisksDataRace]
| `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
21 | }
22 | }
[#ActorIsolatedCall]: <https://docs.swift.org/compiler/documentation/diagnostics/actor-isolated-call>
[#SendingRisksDataRace]: <https://docs.swift.org/compiler/documentation/diagnostics/sending-risks-data-race>
[13/14] Compiling Extendable ConnectableExtension.swift
/Users/admin/builder/spi-builder-workspace/Sources/Extendable/ConnectableExtension.swift:14:10: warning: main actor-isolated property 'accepter' can not be referenced from a nonisolated context
5 | @available(macOS 13.0, iOS 16.0, watchOS 9.0, tvOS 16.0, *)
6 | public struct ConnectingAppExtensionConfiguration: AppExtensionConfiguration {
7 | let accepter: ConnectionAccepter
| `- note: property declared here
8 |
9 | public init(_ handler: @escaping ConnectionHandler) {
:
12 |
13 | public func accept(connection: NSXPCConnection) -> Bool {
14 | return accepter.accept(connection: connection)
| `- warning: main actor-isolated property 'accepter' can not be referenced from a nonisolated context
15 | }
16 | }
/Users/admin/builder/spi-builder-workspace/Sources/Extendable/ConnectableExtension.swift:31:10: warning: call to main actor-isolated initializer 'init(_:)' in a synchronous nonisolated context [#ActorIsolatedCall]
7 | let accepter: ConnectionAccepter
8 |
9 | public init(_ handler: @escaping ConnectionHandler) {
| |- note: calls to initializer 'init(_:)' from outside of its actor context are implicitly asynchronous
| `- note: main actor isolation inferred from conformance to protocol 'AppExtensionConfiguration'
10 | self.accepter = ConnectionAccepter(handler)
11 | }
:
29 | /// will be used for the `configuration` property by default.
30 | var globalConfiguration: ConnectingAppExtensionConfiguration {
31 | return ConnectingAppExtensionConfiguration { connection in
| `- warning: call to main actor-isolated initializer 'init(_:)' in a synchronous nonisolated context [#ActorIsolatedCall]
32 | try self.acceptConnection(connection)
33 | }
/Users/admin/builder/spi-builder-workspace/Sources/Extendable/ConnectableExtension.swift:31:10: warning: sending value of non-Sendable type '(NSXPCConnection) throws -> ()' risks causing data races; this is an error in the Swift 6 language mode [#SendingRisksDataRace]
29 | /// will be used for the `configuration` property by default.
30 | var globalConfiguration: ConnectingAppExtensionConfiguration {
31 | return ConnectingAppExtensionConfiguration { connection in
| |- warning: sending value of non-Sendable type '(NSXPCConnection) throws -> ()' risks causing data races; this is an error in the Swift 6 language mode [#SendingRisksDataRace]
| `- note: sending task-isolated value of non-Sendable type '(NSXPCConnection) throws -> ()' to main actor-isolated initializer 'init(_:)' risks causing races in between task-isolated and main actor-isolated uses
32 | try self.acceptConnection(connection)
33 | }
[#ActorIsolatedCall]: <https://docs.swift.org/compiler/documentation/diagnostics/actor-isolated-call>
[#SendingRisksDataRace]: <https://docs.swift.org/compiler/documentation/diagnostics/sending-risks-data-race>
[14/14] Compiling Extendable ConnectingAppExtensionScene.swift
/Users/admin/builder/spi-builder-workspace/Sources/Extendable/ConnectingAppExtensionScene.swift:56:12: warning: capture of non-Sendable type 'Content.Type' in an isolated closure [#SendableMetatypes]
54 | connectingView
55 | } onConnection: { connection in
56 | return accepter.accept(connection: connection)
| `- warning: capture of non-Sendable type 'Content.Type' in an isolated closure [#SendableMetatypes]
57 | }
58 | }
/Users/admin/builder/spi-builder-workspace/Sources/Extendable/ConnectingAppExtensionScene.swift:56:12: warning: main actor-isolated property 'accepter' can not be referenced from a Sendable closure
29 | public struct ConnectingAppExtensionScene<Content: View>: AppExtensionScene {
30 | public let sceneID: String
31 | let accepter: ConnectionAccepter
| `- note: property declared here
32 | private let model: ConnectingSceneModel<Content>
33 | private let connectingView: ConnectingView<Content>
:
54 | connectingView
55 | } onConnection: { connection in
56 | return accepter.accept(connection: connection)
| `- warning: main actor-isolated property 'accepter' can not be referenced from a Sendable closure
57 | }
58 | }
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
Build complete! (10.68s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "Extendable",
"name" : "Extendable",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "11.0"
},
{
"name" : "maccatalyst",
"version" : "14.0"
},
{
"name" : "ios",
"version" : "14.0"
},
{
"name" : "watchos",
"version" : "7.0"
},
{
"name" : "tvos",
"version" : "14.0"
}
],
"products" : [
{
"name" : "Extendable",
"targets" : [
"Extendable"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "ExtendableHost",
"targets" : [
"ExtendableHost"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "ExtendableTests",
"module_type" : "SwiftTarget",
"name" : "ExtendableTests",
"path" : "Tests/ExtendableTests",
"sources" : [
"ConnectionAccepterTests.swift"
],
"target_dependencies" : [
"Extendable"
],
"type" : "test"
},
{
"c99name" : "ExtendableHost",
"module_type" : "SwiftTarget",
"name" : "ExtendableHost",
"path" : "Sources/ExtendableHost",
"product_memberships" : [
"ExtendableHost"
],
"sources" : [
"AppExtensionBrowserView.swift",
"AppExtensionProcess+Utilities.swift",
"ExtensionHostingView.swift"
],
"type" : "library"
},
{
"c99name" : "Extendable",
"module_type" : "SwiftTarget",
"name" : "Extendable",
"path" : "Sources/Extendable",
"product_memberships" : [
"Extendable"
],
"sources" : [
"AppExtension+Init.swift",
"AppExtensionSceneGroup.swift",
"ConnectableExtension.swift",
"ConnectableSceneExtension.swift",
"ConnectingAppExtensionScene.swift",
"ConnectionAccepter.swift"
],
"type" : "library"
}
],
"tools_version" : "5.8"
}
✅ Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path: $PWD/.docs/chimehq/extendable/0.4.0
Repository: ChimeHQ/Extendable
Swift version used: 6.3
Target: Extendable
Extracting symbol information for 'Extendable'...
Finished extracting symbol information for 'Extendable'. (45.10s)
Building documentation for 'Extendable'...
Finished building documentation for 'Extendable' (0.24s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/chimehq/extendable/0.4.0
Fetching https://github.com/swiftlang/swift-docc-plugin
[1/2277] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.13s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.6 (3.56s)
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.22s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.86s)
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
[1/8] Write snippet-extract-tool-entitlement.plist
[3/8] Write sources
[4/8] Write swift-version--6988338F2F200930.txt
[6/53] Compiling SymbolKit SourceRange.swift
[7/53] Compiling SymbolKit Metadata.swift
[8/53] Compiling SymbolKit Module.swift
[9/53] Compiling SymbolKit OperatingSystem.swift
[10/53] Compiling SymbolKit Platform.swift
[11/57] Compiling SymbolKit Mixin+Equals.swift
[12/57] Compiling SymbolKit Mixin+Hash.swift
[13/57] Compiling SymbolKit Mixin.swift
[14/57] Compiling SymbolKit LineList.swift
[15/57] Compiling SymbolKit Position.swift
[16/57] Emitting module SymbolKit
[17/57] Compiling Snippets SnippetParser.swift
[18/57] Compiling Snippets Snippet.swift
[19/57] Emitting module Snippets
[20/57] Compiling SymbolKit Relationship.swift
[21/57] Compiling SymbolKit RelationshipKind.swift
[22/57] Compiling SymbolKit SourceOrigin.swift
[23/57] Compiling SymbolKit GenericConstraints.swift
[24/57] Compiling SymbolKit Swift.swift
[25/57] Compiling SymbolKit GenericConstraint.swift
[26/57] Compiling SymbolKit GenericParameter.swift
[27/57] Compiling SymbolKit Generics.swift
[28/57] Compiling SymbolKit Namespace.swift
[29/57] Compiling SymbolKit Identifier.swift
[30/57] Compiling SymbolKit KindIdentifier.swift
[31/57] Compiling SymbolKit Location.swift
[32/57] Compiling SymbolKit Mutability.swift
[33/57] Compiling SymbolKit SemanticVersion.swift
[34/57] Compiling SymbolKit AccessControl.swift
[35/57] Compiling SymbolKit Availability.swift
[36/57] Compiling SymbolKit AvailabilityItem.swift
[37/57] Compiling SymbolKit Domain.swift
[38/57] Compiling SymbolKit Symbol.swift
[39/57] Compiling SymbolKit SymbolKind.swift
[40/57] Compiling SymbolKit SymbolGraph.swift
[41/57] Compiling SymbolKit GraphCollector.swift
[42/57] Compiling SymbolKit DeclarationFragments.swift
[43/57] Compiling SymbolKit Fragment.swift
[44/57] Compiling SymbolKit FragmentKind.swift
[45/57] Compiling SymbolKit FunctionParameter.swift
[46/57] Compiling SymbolKit FunctionSignature.swift
[47/57] Compiling SymbolKit Names.swift
[48/57] Compiling SymbolKit SPI.swift
[49/57] Compiling SymbolKit Snippet.swift
[50/57] Compiling SymbolKit Extension.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 SymbolGraph+Snippet.swift
[56/61] Compiling snippet_extract URL+Status.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! (4.54s)
Building for debugging...
[0/1] Write swift-version--6988338F2F200930.txt
Build of target: 'Extendable' complete! (0.20s)
Target: ExtendableHost
Extracting symbol information for 'ExtendableHost'...
Finished extracting symbol information for 'ExtendableHost'. (0.53s)
Building documentation for 'ExtendableHost'...
Finished building documentation for 'ExtendableHost' (1.30s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/chimehq/extendable/0.4.0
Building for debugging...
[0/3] Write swift-version--6988338F2F200930.txt
Build of product 'snippet-extract' complete! (0.21s)
Building for debugging...
[0/1] Write swift-version--6988338F2F200930.txt
Build of target: 'ExtendableHost' complete! (0.20s)
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/chimehq/extendable/0.4.0/index/index.json
Successfully merged into /Users/admin/builder/spi-builder-workspace/.docs-staging/chimehq/extendable/0.4.0/linkable-paths.json
3430
25 /Users/admin/builder/spi-builder-workspace/.docs/chimehq/extendable/0.4.0
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/chimehq/extendable/0.4.0
File count: 3430
Doc size: 25.0MB
Preparing doc bundle ...
Uploading prod-chimehq-extendable-0.4.0-140a4af0.zip to s3://spi-docs-inbox/prod-chimehq-extendable-0.4.0-140a4af0.zip
Copying... [11%]
Copying... [21%]
Copying... [31%]
Copying... [40%]
Copying... [50%]
Copying... [61%]
Copying... [71%]
Copying... [81%]
Copying... [90%]
Copying... [100%]
Done.