The Swift Package Index logo.Swift Package Index

Build Information

Successful build of CopilotForXcodeKit, reference 0.7.2 (8065df), with Swift 6.2 for macOS (SPM) on 21 Jun 2025 17:01:30 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: 0.7.2
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/intitni/CopilotForXcodeKit
 * tag               0.7.2      -> FETCH_HEAD
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 0.7.2
========================================
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 NullEncoding.swift
[6/23] Compiling CodableWrappers NilFiltering.swift
[7/24] 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] 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,
[9/24] Compiling CodableWrappers DateCoding.swift
[10/24] Compiling CodableWrappers FloatingPointCoding.swift
[11/24] Compiling CodableWrappers TransientCoding.swift
[12/24] Compiling CodableWrappers Old.swift
[13/24] Compiling CodableWrappers BoolCoding.swift
[14/24] Compiling CodableWrappers DataCoding.swift
[15/24] Compiling CodableWrappers EmptyDefaults.swift
[16/24] Compiling CodableWrappers FallbackCoding.swift
[17/24] Compiling CodableWrappers ImmutableWrapper.swift
[18/24] Compiling CodableWrappers OmitCodingWrappers.swift
[19/24] Compiling CodableWrappers ConveienceAdherence.swift
[20/24] Compiling CodableWrappers CustomWrappers.swift
[21/24] Emitting module CodableWrappers
[22/24] Compiling CodableWrappers OptionalWrappers.swift
[23/24] Compiling CodableWrappers StaticCodingWrappers.swift
[24/24] Compiling CodableWrappers StaticCoding.swift
[25/42] Compiling CopilotForXcodeKit CodeSuggestion.swift
[26/42] Compiling CopilotForXcodeKit SuggestionRequest.swift
[27/42] Compiling CopilotForXcodeKit HostXPCProtocol.swift
[28/42] Compiling CopilotForXcodeKit SuggestionServiceType.swift
[29/42] Compiling CopilotForXcodeKit ExtensionXPCServer.swift
[30/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 {
[31/43] Compiling CopilotForXcodeKit WorkspaceInfo.swift
[32/43] Compiling CopilotForXcodeKit XcodeInfo.swift
[33/43] Compiling CopilotForXcodeKit GroupedScene.swift
[34/43] Compiling CopilotForXcodeKit Logger.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 CodeRange.swift
[38/43] Compiling CopilotForXcodeKit Editor.swift
[39/43] Compiling CopilotForXcodeKit ChatServiceType.swift
[40/43] Compiling CopilotForXcodeKit CodeLanguage.swift
[41/43] Compiling CopilotForXcodeKit CopilotForXcodeExtension.swift
[42/43] Compiling CopilotForXcodeKit ChatPanelSceneBuilder.swift
[43/43] Emitting module CopilotForXcodeKit
Build complete! (14.00s)
Fetching https://github.com/GottaGetSwifty/CodableWrappers.git
[1/1259] Fetching codablewrappers
Fetched https://github.com/GottaGetSwifty/CodableWrappers.git from cache (0.95s)
Computing version for https://github.com/GottaGetSwifty/CodableWrappers.git
Computed https://github.com/GottaGetSwifty/CodableWrappers.git at 2.0.7 (3.31s)
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.