Build Information
Successful build of CopilotForXcodeKit, reference main (8065df
), with Swift 6.2 (beta) for macOS (SPM) on 21 Jun 2025 17:01:44 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/intitni/CopilotForXcodeKit.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/intitni/CopilotForXcodeKit
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 8065dfa Merge branch 'develop'
Cloned https://github.com/intitni/CopilotForXcodeKit.git
Revision (git rev-parse @):
8065dfaf839a9dd0f20b65b76d009ead2927b18d
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/intitni/CopilotForXcodeKit.git at main
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/intitni/CopilotForXcodeKit.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
[3/4] Write swift-version-1EA4D86E10B52AF.txt
[5/23] Compiling CodableWrappers NilFiltering.swift
[6/23] Emitting module XPCConcurrency
/Users/admin/builder/spi-builder-workspace/Sources/XPCConcurrency/XPCConnection+Concurrency.swift:41:13: warning: @_unsafeInheritExecutor attribute is deprecated; consider an 'isolated' parameter defaulted to '#isolation' instead; this is an error in the Swift 6 language mode
39 | /// Connects to the XPC service and calls the given function with the service proxy.
40 | @_unsafeInheritExecutor
41 | public func withXPCServiceConnected<T, P>(
| `- warning: @_unsafeInheritExecutor attribute is deprecated; consider an 'isolated' parameter defaulted to '#isolation' instead; this is an error in the Swift 6 language mode
42 | connection: NSXPCConnection,
43 | as _: P.Type = P.self,
[7/23] Compiling XPCConcurrency XPCConnection+Concurrency.swift
/Users/admin/builder/spi-builder-workspace/Sources/XPCConcurrency/XPCConnection+Concurrency.swift:41:13: warning: @_unsafeInheritExecutor attribute is deprecated; consider an 'isolated' parameter defaulted to '#isolation' instead; this is an error in the Swift 6 language mode
39 | /// Connects to the XPC service and calls the given function with the service proxy.
40 | @_unsafeInheritExecutor
41 | public func withXPCServiceConnected<T, P>(
| `- warning: @_unsafeInheritExecutor attribute is deprecated; consider an 'isolated' parameter defaulted to '#isolation' instead; this is an error in the Swift 6 language mode
42 | connection: NSXPCConnection,
43 | as _: P.Type = P.self,
[8/24] Compiling CodableWrappers NullEncoding.swift
[9/24] Compiling CodableWrappers BoolCoding.swift
[10/24] Compiling CodableWrappers DataCoding.swift
[11/24] Compiling CodableWrappers ConveienceAdherence.swift
[12/24] Compiling CodableWrappers CustomWrappers.swift
[13/24] Emitting module CodableWrappers
[14/24] Compiling CodableWrappers OptionalWrappers.swift
[15/24] Compiling CodableWrappers StaticCodingWrappers.swift
[16/24] Compiling CodableWrappers ImmutableWrapper.swift
[17/24] Compiling CodableWrappers OmitCodingWrappers.swift
[18/24] Compiling CodableWrappers EmptyDefaults.swift
[19/24] Compiling CodableWrappers FallbackCoding.swift
[20/24] Compiling CodableWrappers DateCoding.swift
[21/24] Compiling CodableWrappers FloatingPointCoding.swift
[22/24] Compiling CodableWrappers TransientCoding.swift
[23/24] Compiling CodableWrappers Old.swift
[24/24] Compiling CodableWrappers StaticCoding.swift
[25/42] Compiling CopilotForXcodeKit CodeSuggestion.swift
[26/42] Compiling CopilotForXcodeKit SuggestionRequest.swift
[27/43] Compiling CopilotForXcodeKit CodeRange.swift
[28/43] Compiling CopilotForXcodeKit Editor.swift
[29/43] Compiling CopilotForXcodeKit XPCProtocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/CopilotForXcodeKit/XPC/XPCProtocol.swift:93:44: warning: capture of non-sendable type 'Response.Type' in an isolated closure; this is an error in the Swift 6 language mode
91 | Task {
92 | do {
93 | let responseBody = try await handler(requestBody)
| `- warning: capture of non-sendable type 'Response.Type' in an isolated closure; this is an error in the Swift 6 language mode
94 | let responseBodyData = try JSONEncoder().encode(responseBody)
95 | reply(responseBodyData, nil)
/Users/admin/builder/spi-builder-workspace/Sources/CopilotForXcodeKit/XPC/XPCProtocol.swift:93:50: warning: capture of non-sendable type 'Request.Type' in an isolated closure; this is an error in the Swift 6 language mode
91 | Task {
92 | do {
93 | let responseBody = try await handler(requestBody)
| `- warning: capture of non-sendable type 'Request.Type' in an isolated closure; this is an error in the Swift 6 language mode
94 | let responseBodyData = try JSONEncoder().encode(responseBody)
95 | reply(responseBodyData, nil)
/Users/admin/builder/spi-builder-workspace/Sources/CopilotForXcodeKit/XPC/XPCProtocol.swift:83:9: warning: capture of non-sendable type 'Request.Type' in an isolated closure; this is an error in the Swift 6 language mode
81 | requestBody data: Data,
82 | reply: @escaping (Data?, Error?) -> Void,
83 | handler: @escaping (Request) async throws -> Response,
| `- warning: capture of non-sendable type 'Request.Type' in an isolated closure; this is an error in the Swift 6 language mode
84 | onceResponded: @escaping () -> Void
85 | ) throws {
/Users/admin/builder/spi-builder-workspace/Sources/CopilotForXcodeKit/XPC/XPCProtocol.swift:83:9: warning: capture of non-sendable type 'Response.Type' in an isolated closure; this is an error in the Swift 6 language mode
81 | requestBody data: Data,
82 | reply: @escaping (Data?, Error?) -> Void,
83 | handler: @escaping (Request) async throws -> Response,
| `- warning: capture of non-sendable type 'Response.Type' in an isolated closure; this is an error in the Swift 6 language mode
84 | onceResponded: @escaping () -> Void
85 | ) throws {
[30/43] Compiling CopilotForXcodeKit SuggestionServiceType.swift
[31/43] Compiling CopilotForXcodeKit ExtensionXPCServer.swift
[32/43] Compiling CopilotForXcodeKit WorkspaceInfo.swift
[33/43] Compiling CopilotForXcodeKit XcodeInfo.swift
[34/43] Compiling CopilotForXcodeKit HostXPCProtocol.swift
[35/43] Compiling CopilotForXcodeKit PromptToCodeServiceType.swift
/Users/admin/builder/spi-builder-workspace/Sources/CopilotForXcodeKit/SceneConfiguration.swift:158:13: warning: capture of non-sendable type 'Content.Type' in an isolated closure
156 | } onConnection: { connection in
157 | Logger.info("Configuration scene did receive connection.")
158 | self.sceneModel.connect(to: connection)
| `- warning: capture of non-sendable type 'Content.Type' in an isolated closure
159 | return self.onConnection(connection)
160 | }
/Users/admin/builder/spi-builder-workspace/Sources/CopilotForXcodeKit/SceneConfiguration.swift:153:45: warning: capture of non-sendable type 'Content.Type' in an isolated closure
151 | }
152 |
153 | public var body: some AppExtensionScene {
| `- warning: capture of non-sendable type 'Content.Type' in an isolated closure
154 | return PrimitiveAppExtensionScene(id: CopilotForXcodeConfigurationSceneId) {
155 | self.content(self.sceneModel)
/Users/admin/builder/spi-builder-workspace/Sources/CopilotForXcodeKit/SceneConfiguration.swift:201:13: warning: capture of non-sendable type 'Content.Type' in an isolated closure
199 | } onConnection: { connection in
200 | Logger.info("Chat panel scene did receive connection.")
201 | sceneModel.connect(to: connection)
| `- warning: capture of non-sendable type 'Content.Type' in an isolated closure
202 | return onConnection(connection)
203 | }
/Users/admin/builder/spi-builder-workspace/Sources/CopilotForXcodeKit/SceneConfiguration.swift:196:45: warning: capture of non-sendable type 'Content.Type' in an isolated closure
194 | }
195 |
196 | public var body: some AppExtensionScene {
| `- warning: capture of non-sendable type 'Content.Type' in an isolated closure
197 | PrimitiveAppExtensionScene(id: id) {
198 | content(sceneModel)
[36/43] Compiling CopilotForXcodeKit SceneConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Sources/CopilotForXcodeKit/SceneConfiguration.swift:158:13: warning: capture of non-sendable type 'Content.Type' in an isolated closure
156 | } onConnection: { connection in
157 | Logger.info("Configuration scene did receive connection.")
158 | self.sceneModel.connect(to: connection)
| `- warning: capture of non-sendable type 'Content.Type' in an isolated closure
159 | return self.onConnection(connection)
160 | }
/Users/admin/builder/spi-builder-workspace/Sources/CopilotForXcodeKit/SceneConfiguration.swift:153:45: warning: capture of non-sendable type 'Content.Type' in an isolated closure
151 | }
152 |
153 | public var body: some AppExtensionScene {
| `- warning: capture of non-sendable type 'Content.Type' in an isolated closure
154 | return PrimitiveAppExtensionScene(id: CopilotForXcodeConfigurationSceneId) {
155 | self.content(self.sceneModel)
/Users/admin/builder/spi-builder-workspace/Sources/CopilotForXcodeKit/SceneConfiguration.swift:201:13: warning: capture of non-sendable type 'Content.Type' in an isolated closure
199 | } onConnection: { connection in
200 | Logger.info("Chat panel scene did receive connection.")
201 | sceneModel.connect(to: connection)
| `- warning: capture of non-sendable type 'Content.Type' in an isolated closure
202 | return onConnection(connection)
203 | }
/Users/admin/builder/spi-builder-workspace/Sources/CopilotForXcodeKit/SceneConfiguration.swift:196:45: warning: capture of non-sendable type 'Content.Type' in an isolated closure
194 | }
195 |
196 | public var body: some AppExtensionScene {
| `- warning: capture of non-sendable type 'Content.Type' in an isolated closure
197 | PrimitiveAppExtensionScene(id: id) {
198 | content(sceneModel)
[37/43] Compiling CopilotForXcodeKit GroupedScene.swift
[38/43] Compiling CopilotForXcodeKit Logger.swift
[39/43] Compiling CopilotForXcodeKit ChatServiceType.swift
[40/43] Compiling CopilotForXcodeKit CodeLanguage.swift
[41/43] Emitting module CopilotForXcodeKit
[42/43] Compiling CopilotForXcodeKit CopilotForXcodeExtension.swift
[43/43] Compiling CopilotForXcodeKit ChatPanelSceneBuilder.swift
Build complete! (13.92s)
Fetching https://github.com/GottaGetSwifty/CodableWrappers.git
[1/1259] Fetching codablewrappers
Fetched https://github.com/GottaGetSwifty/CodableWrappers.git from cache (0.97s)
Computing version for https://github.com/GottaGetSwifty/CodableWrappers.git
Computed https://github.com/GottaGetSwifty/CodableWrappers.git at 2.0.7 (3.35s)
Creating working copy for https://github.com/GottaGetSwifty/CodableWrappers.git
Working copy of https://github.com/GottaGetSwifty/CodableWrappers.git resolved at 2.0.7
Build complete.
{
"dependencies" : [
{
"identity" : "codablewrappers",
"requirement" : {
"range" : [
{
"lower_bound" : "2.0.7",
"upper_bound" : "3.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/GottaGetSwifty/CodableWrappers.git"
}
],
"manifest_display_name" : "CopilotForXcodeKit",
"name" : "CopilotForXcodeKit",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "12.0"
}
],
"products" : [
{
"name" : "CopilotForXcodeKit",
"targets" : [
"CopilotForXcodeKit"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "XPCConcurrency",
"targets" : [
"XPCConcurrency"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "XPCConcurrency",
"module_type" : "SwiftTarget",
"name" : "XPCConcurrency",
"path" : "Sources/XPCConcurrency",
"product_memberships" : [
"CopilotForXcodeKit",
"XPCConcurrency"
],
"sources" : [
"XPCConnection+Concurrency.swift"
],
"type" : "library"
},
{
"c99name" : "CopilotForXcodeKitTests",
"module_type" : "SwiftTarget",
"name" : "CopilotForXcodeKitTests",
"path" : "Tests/CopilotForXcodeKitTests",
"sources" : [
"CopilotForXcodeKitTests.swift"
],
"target_dependencies" : [
"CopilotForXcodeKit"
],
"type" : "test"
},
{
"c99name" : "CopilotForXcodeKit",
"module_type" : "SwiftTarget",
"name" : "CopilotForXcodeKit",
"path" : "Sources/CopilotForXcodeKit",
"product_dependencies" : [
"CodableWrappers"
],
"product_memberships" : [
"CopilotForXcodeKit"
],
"sources" : [
"Chat/ChatServiceType.swift",
"CodeModel/CodeLanguage.swift",
"CodeModel/CodeRange.swift",
"CodeModel/Editor.swift",
"CodeModel/WorkspaceInfo.swift",
"CodeModel/XcodeInfo.swift",
"CopilotForXcodeExtension.swift",
"Helper/ChatPanelSceneBuilder.swift",
"Helper/GroupedScene.swift",
"Helper/Logger.swift",
"PromptToCode/PromptToCodeServiceType.swift",
"SceneConfiguration.swift",
"Suggestion/CodeSuggestion.swift",
"Suggestion/SuggestionRequest.swift",
"Suggestion/SuggestionServiceType.swift",
"XPC/ExtensionXPCServer.swift",
"XPC/HostXPCProtocol.swift",
"XPC/XPCProtocol.swift"
],
"target_dependencies" : [
"XPCConcurrency"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
Done.