Build Information
Failed to build AsyncXPCConnection, reference 1.2.0 (a676f1
), with Swift 6.0 for Linux on 5 Nov 2024 21:35:14 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.56.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/ChimeHQ/AsyncXPCConnection.git
Reference: 1.2.0
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
From https://github.com/ChimeHQ/AsyncXPCConnection
* tag 1.2.0 -> FETCH_HEAD
HEAD is now at a676f19 Update to use latest Xcode
Cloned https://github.com/ChimeHQ/AsyncXPCConnection.git
Revision (git rev-parse @):
a676f19ca891314c4a2455319226a41267709d37
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/ChimeHQ/AsyncXPCConnection.git at 1.2.0
========================================
Build
========================================
Selected platform: linux
Swift version: 6.0
Building package at path: $PWD
https://github.com/ChimeHQ/AsyncXPCConnection.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[3/6] Emitting module AsyncXPCConnection
/host/spi-builder-workspace/Sources/AsyncXPCConnection/NSXPCConnection+Continuations.swift:8:11: error: cannot find type 'NSXPCConnection' in scope
6 | }
7 |
8 | extension NSXPCConnection {
| `- error: cannot find type 'NSXPCConnection' in scope
9 | #if compiler(<6.0)
10 | /// Begins remote method invocation that returns a value.
/host/spi-builder-workspace/Sources/AsyncXPCConnection/NSXPCConnection+Continuations.swift:137:11: error: cannot find type 'NSXPCConnection' in scope
135 | }
136 |
137 | extension NSXPCConnection {
| `- error: cannot find type 'NSXPCConnection' in scope
138 | #if compiler(<6.0)
139 | /// Begins remote method invocation that calls out to a value-error pair completion handler.
/host/spi-builder-workspace/Sources/AsyncXPCConnection/QueuedRemoteXPCService.swift:14:70: error: cannot find type 'NSXPCConnection' in scope
12 | @MainActor
13 | public struct QueuedRemoteXPCService<Service, Queue: AsyncQueuing> {
14 | public typealias ConnectionProvider = @MainActor () async throws -> NSXPCConnection
| `- error: cannot find type 'NSXPCConnection' in scope
15 |
16 | let queue: Queue
/host/spi-builder-workspace/Sources/AsyncXPCConnection/QueuedRemoteXPCService.swift:19:38: error: @escaping attribute only applies to function types
17 | private let provider: ConnectionProvider
18 |
19 | public init(queue: Queue, provider: @escaping ConnectionProvider) {
| `- error: @escaping attribute only applies to function types
20 | self.queue = queue
21 | self.provider = provider
/host/spi-builder-workspace/Sources/AsyncXPCConnection/QueuedRemoteXPCService.swift:24:40: error: cannot find type 'NSXPCConnection' in scope
22 | }
23 |
24 | public init(queue: Queue, connection: NSXPCConnection) {
| `- error: cannot find type 'NSXPCConnection' in scope
25 | self.queue = queue
26 | self.provider = { connection }
/host/spi-builder-workspace/Sources/AsyncXPCConnection/RemoteXPCService.swift:7:18: error: cannot find type 'NSXPCConnection' in scope
5 | /// Due to the strange nature of the `Protocol` type, the generic parameter cannot be used to define the NSXPCConection interface. Still a net win, but definitely annoying.
6 | public struct RemoteXPCService<Service> {
7 | let connection: NSXPCConnection
| `- error: cannot find type 'NSXPCConnection' in scope
8 |
9 | /// Create a new `XPCService` instance with an interface.
/host/spi-builder-workspace/Sources/AsyncXPCConnection/RemoteXPCService.swift:10:26: error: cannot find type 'NSXPCConnection' in scope
8 |
9 | /// Create a new `XPCService` instance with an interface.
10 | public init(connection: NSXPCConnection, remoteInterface: Protocol) {
| `- error: cannot find type 'NSXPCConnection' in scope
11 | self.connection = connection
12 |
/host/spi-builder-workspace/Sources/AsyncXPCConnection/RemoteXPCService.swift:10:60: error: cannot find type 'Protocol' in scope
8 |
9 | /// Create a new `XPCService` instance with an interface.
10 | public init(connection: NSXPCConnection, remoteInterface: Protocol) {
| `- error: cannot find type 'Protocol' in scope
11 | self.connection = connection
12 |
/host/spi-builder-workspace/Sources/AsyncXPCConnection/RemoteXPCService.swift:18:26: error: cannot find type 'NSXPCConnection' in scope
16 |
17 | /// Create a new `XPCService` instance without an explicit interface.
18 | public init(connection: NSXPCConnection) {
| `- error: cannot find type 'NSXPCConnection' in scope
19 | self.connection = connection
20 | }
[4/6] Compiling AsyncXPCConnection RemoteXPCService.swift
/host/spi-builder-workspace/Sources/AsyncXPCConnection/RemoteXPCService.swift:7:18: error: cannot find type 'NSXPCConnection' in scope
5 | /// Due to the strange nature of the `Protocol` type, the generic parameter cannot be used to define the NSXPCConection interface. Still a net win, but definitely annoying.
6 | public struct RemoteXPCService<Service> {
7 | let connection: NSXPCConnection
| `- error: cannot find type 'NSXPCConnection' in scope
8 |
9 | /// Create a new `XPCService` instance with an interface.
/host/spi-builder-workspace/Sources/AsyncXPCConnection/RemoteXPCService.swift:10:26: error: cannot find type 'NSXPCConnection' in scope
8 |
9 | /// Create a new `XPCService` instance with an interface.
10 | public init(connection: NSXPCConnection, remoteInterface: Protocol) {
| `- error: cannot find type 'NSXPCConnection' in scope
11 | self.connection = connection
12 |
/host/spi-builder-workspace/Sources/AsyncXPCConnection/RemoteXPCService.swift:10:60: error: cannot find type 'Protocol' in scope
8 |
9 | /// Create a new `XPCService` instance with an interface.
10 | public init(connection: NSXPCConnection, remoteInterface: Protocol) {
| `- error: cannot find type 'Protocol' in scope
11 | self.connection = connection
12 |
/host/spi-builder-workspace/Sources/AsyncXPCConnection/RemoteXPCService.swift:18:26: error: cannot find type 'NSXPCConnection' in scope
16 |
17 | /// Create a new `XPCService` instance without an explicit interface.
18 | public init(connection: NSXPCConnection) {
| `- error: cannot find type 'NSXPCConnection' in scope
19 | self.connection = connection
20 | }
/host/spi-builder-workspace/Sources/AsyncXPCConnection/RemoteXPCService.swift:14:38: error: cannot find 'NSXPCInterface' in scope
12 |
13 | precondition(connection.remoteObjectInterface == nil)
14 | connection.remoteObjectInterface = NSXPCInterface(with: remoteInterface)
| `- error: cannot find 'NSXPCInterface' in scope
15 | }
16 |
[5/6] Compiling AsyncXPCConnection QueuedRemoteXPCService.swift
/host/spi-builder-workspace/Sources/AsyncXPCConnection/QueuedRemoteXPCService.swift:14:70: error: cannot find type 'NSXPCConnection' in scope
12 | @MainActor
13 | public struct QueuedRemoteXPCService<Service, Queue: AsyncQueuing> {
14 | public typealias ConnectionProvider = @MainActor () async throws -> NSXPCConnection
| `- error: cannot find type 'NSXPCConnection' in scope
15 |
16 | let queue: Queue
/host/spi-builder-workspace/Sources/AsyncXPCConnection/QueuedRemoteXPCService.swift:19:38: error: @escaping attribute only applies to function types
17 | private let provider: ConnectionProvider
18 |
19 | public init(queue: Queue, provider: @escaping ConnectionProvider) {
| `- error: @escaping attribute only applies to function types
20 | self.queue = queue
21 | self.provider = provider
/host/spi-builder-workspace/Sources/AsyncXPCConnection/QueuedRemoteXPCService.swift:24:40: error: cannot find type 'NSXPCConnection' in scope
22 | }
23 |
24 | public init(queue: Queue, connection: NSXPCConnection) {
| `- error: cannot find type 'NSXPCConnection' in scope
25 | self.queue = queue
26 | self.provider = { connection }
[6/6] Compiling AsyncXPCConnection NSXPCConnection+Continuations.swift
/host/spi-builder-workspace/Sources/AsyncXPCConnection/NSXPCConnection+Continuations.swift:8:11: error: cannot find type 'NSXPCConnection' in scope
6 | }
7 |
8 | extension NSXPCConnection {
| `- error: cannot find type 'NSXPCConnection' in scope
9 | #if compiler(<6.0)
10 | /// Begins remote method invocation that returns a value.
/host/spi-builder-workspace/Sources/AsyncXPCConnection/NSXPCConnection+Continuations.swift:137:11: error: cannot find type 'NSXPCConnection' in scope
135 | }
136 |
137 | extension NSXPCConnection {
| `- error: cannot find type 'NSXPCConnection' in scope
138 | #if compiler(<6.0)
139 | /// Begins remote method invocation that calls out to a value-error pair completion handler.
BUILD FAILURE 6.0 linux