Build Information
Failed to build SimulatorServices, reference 1.1.0-beta.3 (5b6f1e), with Swift 6.3 for Wasm on 15 Apr 2026 18:01:26 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/brightdigit/SimulatorServices.git
Reference: 1.1.0-beta.3
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/brightdigit/SimulatorServices
* tag 1.1.0-beta.3 -> FETCH_HEAD
HEAD is now at 5b6f1e5 Merge pull request #24 from brightdigit/v1.1.0-beta.3
Cloned https://github.com/brightdigit/SimulatorServices.git
Revision (git rev-parse @):
5b6f1e59f1192494e940152ef744ae5014758260
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/brightdigit/SimulatorServices.git at 1.1.0-beta.3
========================================
Build
========================================
Selected platform: wasm
Swift version: 6.3
Building package at path: $PWD
https://github.com/brightdigit/SimulatorServices.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1
wasm-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:d69f4e7582c319245442d62a08b2d7c7fd5a0c0c69f5d2ef11d1530cd8d3329b
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest
Fetching https://github.com/brightdigit/OSVer.git
[1/261] Fetching osver
Fetched https://github.com/brightdigit/OSVer.git from cache (0.47s)
Computing version for https://github.com/brightdigit/OSVer.git
Computed https://github.com/brightdigit/OSVer.git at 1.0.0 (1.24s)
Creating working copy for https://github.com/brightdigit/OSVer.git
Working copy of https://github.com/brightdigit/OSVer.git resolved at 1.0.0
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-24593BA9C3E375BF.txt
[4/10] Compiling OSVer OSVerParseable.swift
[5/10] Emitting module OSVer
[6/10] Compiling OSVer OSVer+Comparable.swift
[7/10] Compiling OSVer OSVer+Hashable.swift
[8/10] Compiling OSVer OSVer+CustomStringConvertible.swift
[9/10] Compiling OSVer OSVer.swift
[10/10] Compiling OSVer OSVer+Init.swift
[12/45] Compiling SimulatorServices InternalAsyncableProcess.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/InternalAsyncableProcess.swift:65:30: error: cannot find type 'DispatchTime' in scope
63 | /// - Returns: Data if there anything output from the process.
64 | /// - Throws: The `error` either from failure to complete or from the data returned.
65 | internal func run(timeout: DispatchTime) async throws -> Data? {
| `- error: cannot find type 'DispatchTime' in scope
66 | var handles = fileHandles()
67 | let semaphore = promise()
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessResult.swift:34:17: error: cannot find type 'DispatchTime' in scope
32 | internal enum ProcessResult {
33 | case success(TerminationResult)
34 | case timedOut(DispatchTime)
| `- error: cannot find type 'DispatchTime' in scope
35 | }
36 |
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessError.swift:35:16: error: cannot find type 'DispatchTime' in scope
33 | public enum ProcessError: Error, LocalizedError, Equatable {
34 | /// Represents a timeout from running a process asynchronously.
35 | case timeout(DispatchTime)
| `- error: cannot find type 'DispatchTime' in scope
36 |
37 | /// Represents a process that exited with an error exit code.
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessCompletionPromise.swift:34:18: error: cannot find type 'DispatchTime' in scope
32 | internal protocol ProcessCompletionPromise {
33 | func waitForCompletion(
34 | for timeout: DispatchTime, with result: @autoclosure @escaping () -> TerminationResult
| `- error: cannot find type 'DispatchTime' in scope
35 | ) -> ProcessResult
36 | }
/host/spi-builder-workspace/Sources/SimulatorServices/Process/InternalSimCtlProcess.swift:44:21: error: cannot find type 'DispatchTime' in scope
42 | /// - Returns: The data output of the process.
43 | /// - Throws: An error is the process fails.
44 | func run(timeout: DispatchTime) async throws -> Data?
| `- error: cannot find type 'DispatchTime' in scope
45 | }
46 |
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessError.swift:33:13: error: type 'ProcessError' does not conform to protocol 'Equatable'
31 |
32 | /// An error that occurred while running a process.
33 | public enum ProcessError: Error, LocalizedError, Equatable {
| |- error: type 'ProcessError' does not conform to protocol 'Equatable'
| `- note: add stubs for conformance
34 | /// Represents a timeout from running a process asynchronously.
35 | case timeout(DispatchTime)
| `- note: associated value type '_' does not conform to protocol 'Equatable', preventing synthesized conformance of 'ProcessError' to 'Equatable'
36 |
37 | /// Represents a process that exited with an error exit code.
Swift.==:1:24: note: candidate would match if 'ProcessError' conformed to 'RawRepresentable'
1 | @inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
| `- note: candidate would match if 'ProcessError' conformed to 'RawRepresentable'
Swift.FloatingPoint.==:2:20: note: candidate would match if 'ProcessError' conformed to 'FloatingPoint'
1 | protocol FloatingPoint {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to 'FloatingPoint'
3 |
Swift.BinaryInteger.==:2:20: note: candidate would match if 'ProcessError' conformed to 'BinaryInteger'
1 | protocol BinaryInteger {
2 | public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger}
| `- note: candidate would match if 'ProcessError' conformed to 'BinaryInteger'
3 |
Swift._Pointer.==:2:20: note: candidate would match if 'ProcessError' conformed to '_Pointer'
1 | protocol _Pointer {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to '_Pointer'
3 |
Swift._Pointer.==:2:31: note: candidate would match if 'ProcessError' conformed to '_Pointer'
1 | protocol _Pointer {
2 | @inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer}
| `- note: candidate would match if 'ProcessError' conformed to '_Pointer'
3 |
Swift.Strideable.==:2:31: note: candidate would match if 'ProcessError' conformed to 'Strideable'
1 | protocol Strideable {
2 | @inlinable public static func == (x: Self, y: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to 'Strideable'
3 |
Swift.StringProtocol.==:2:31: note: candidate would match if 'ProcessError' conformed to 'StringProtocol'
1 | protocol StringProtocol {
2 | @inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol}
| `- note: candidate would match if 'ProcessError' conformed to 'StringProtocol'
3 |
Swift.SIMD.==:2:20: note: candidate would match if 'ProcessError' conformed to 'SIMD'
1 | protocol SIMD {
2 | public static func == (a: Self, b: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to 'SIMD'
3 |
Foundation.__BridgedNSError.==:2:20: note: candidate would match if 'ProcessError' conformed to '__BridgedNSError'
1 | protocol __BridgedNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to '__BridgedNSError'
3 |
Foundation._BridgedStoredNSError.==:2:20: note: candidate would match if 'ProcessError' conformed to '_BridgedStoredNSError'
1 | protocol _BridgedStoredNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to '_BridgedStoredNSError'
3 |
FoundationEssentials.AttributedStringProtocol.==:2:20: note: candidate would match if 'ProcessError' conformed to 'AttributedStringProtocol'
1 | protocol AttributedStringProtocol {
2 | public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : AttributedStringProtocol}
| `- note: candidate would match if 'ProcessError' conformed to 'AttributedStringProtocol'
3 |
Swift.Equatable.==:2:13: note: protocol requires function '==' with type '(ProcessError, ProcessError) -> Bool'
1 | protocol Equatable {
2 | static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: protocol requires function '==' with type '(ProcessError, ProcessError) -> Bool'
3 |
[13/45] Compiling SimulatorServices InternalSimCtlProcess.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/InternalAsyncableProcess.swift:65:30: error: cannot find type 'DispatchTime' in scope
63 | /// - Returns: Data if there anything output from the process.
64 | /// - Throws: The `error` either from failure to complete or from the data returned.
65 | internal func run(timeout: DispatchTime) async throws -> Data? {
| `- error: cannot find type 'DispatchTime' in scope
66 | var handles = fileHandles()
67 | let semaphore = promise()
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessResult.swift:34:17: error: cannot find type 'DispatchTime' in scope
32 | internal enum ProcessResult {
33 | case success(TerminationResult)
34 | case timedOut(DispatchTime)
| `- error: cannot find type 'DispatchTime' in scope
35 | }
36 |
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessError.swift:35:16: error: cannot find type 'DispatchTime' in scope
33 | public enum ProcessError: Error, LocalizedError, Equatable {
34 | /// Represents a timeout from running a process asynchronously.
35 | case timeout(DispatchTime)
| `- error: cannot find type 'DispatchTime' in scope
36 |
37 | /// Represents a process that exited with an error exit code.
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessCompletionPromise.swift:34:18: error: cannot find type 'DispatchTime' in scope
32 | internal protocol ProcessCompletionPromise {
33 | func waitForCompletion(
34 | for timeout: DispatchTime, with result: @autoclosure @escaping () -> TerminationResult
| `- error: cannot find type 'DispatchTime' in scope
35 | ) -> ProcessResult
36 | }
/host/spi-builder-workspace/Sources/SimulatorServices/Process/InternalSimCtlProcess.swift:44:21: error: cannot find type 'DispatchTime' in scope
42 | /// - Returns: The data output of the process.
43 | /// - Throws: An error is the process fails.
44 | func run(timeout: DispatchTime) async throws -> Data?
| `- error: cannot find type 'DispatchTime' in scope
45 | }
46 |
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessError.swift:33:13: error: type 'ProcessError' does not conform to protocol 'Equatable'
31 |
32 | /// An error that occurred while running a process.
33 | public enum ProcessError: Error, LocalizedError, Equatable {
| |- error: type 'ProcessError' does not conform to protocol 'Equatable'
| `- note: add stubs for conformance
34 | /// Represents a timeout from running a process asynchronously.
35 | case timeout(DispatchTime)
| `- note: associated value type '_' does not conform to protocol 'Equatable', preventing synthesized conformance of 'ProcessError' to 'Equatable'
36 |
37 | /// Represents a process that exited with an error exit code.
Swift.==:1:24: note: candidate would match if 'ProcessError' conformed to 'RawRepresentable'
1 | @inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
| `- note: candidate would match if 'ProcessError' conformed to 'RawRepresentable'
Swift.FloatingPoint.==:2:20: note: candidate would match if 'ProcessError' conformed to 'FloatingPoint'
1 | protocol FloatingPoint {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to 'FloatingPoint'
3 |
Swift.BinaryInteger.==:2:20: note: candidate would match if 'ProcessError' conformed to 'BinaryInteger'
1 | protocol BinaryInteger {
2 | public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger}
| `- note: candidate would match if 'ProcessError' conformed to 'BinaryInteger'
3 |
Swift._Pointer.==:2:20: note: candidate would match if 'ProcessError' conformed to '_Pointer'
1 | protocol _Pointer {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to '_Pointer'
3 |
Swift._Pointer.==:2:31: note: candidate would match if 'ProcessError' conformed to '_Pointer'
1 | protocol _Pointer {
2 | @inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer}
| `- note: candidate would match if 'ProcessError' conformed to '_Pointer'
3 |
Swift.Strideable.==:2:31: note: candidate would match if 'ProcessError' conformed to 'Strideable'
1 | protocol Strideable {
2 | @inlinable public static func == (x: Self, y: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to 'Strideable'
3 |
Swift.StringProtocol.==:2:31: note: candidate would match if 'ProcessError' conformed to 'StringProtocol'
1 | protocol StringProtocol {
2 | @inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol}
| `- note: candidate would match if 'ProcessError' conformed to 'StringProtocol'
3 |
Swift.SIMD.==:2:20: note: candidate would match if 'ProcessError' conformed to 'SIMD'
1 | protocol SIMD {
2 | public static func == (a: Self, b: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to 'SIMD'
3 |
Foundation.__BridgedNSError.==:2:20: note: candidate would match if 'ProcessError' conformed to '__BridgedNSError'
1 | protocol __BridgedNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to '__BridgedNSError'
3 |
Foundation._BridgedStoredNSError.==:2:20: note: candidate would match if 'ProcessError' conformed to '_BridgedStoredNSError'
1 | protocol _BridgedStoredNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to '_BridgedStoredNSError'
3 |
FoundationEssentials.AttributedStringProtocol.==:2:20: note: candidate would match if 'ProcessError' conformed to 'AttributedStringProtocol'
1 | protocol AttributedStringProtocol {
2 | public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : AttributedStringProtocol}
| `- note: candidate would match if 'ProcessError' conformed to 'AttributedStringProtocol'
3 |
Swift.Equatable.==:2:13: note: protocol requires function '==' with type '(ProcessError, ProcessError) -> Bool'
1 | protocol Equatable {
2 | static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: protocol requires function '==' with type '(ProcessError, ProcessError) -> Bool'
3 |
[14/45] Compiling SimulatorServices Process.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/InternalAsyncableProcess.swift:65:30: error: cannot find type 'DispatchTime' in scope
63 | /// - Returns: Data if there anything output from the process.
64 | /// - Throws: The `error` either from failure to complete or from the data returned.
65 | internal func run(timeout: DispatchTime) async throws -> Data? {
| `- error: cannot find type 'DispatchTime' in scope
66 | var handles = fileHandles()
67 | let semaphore = promise()
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessResult.swift:34:17: error: cannot find type 'DispatchTime' in scope
32 | internal enum ProcessResult {
33 | case success(TerminationResult)
34 | case timedOut(DispatchTime)
| `- error: cannot find type 'DispatchTime' in scope
35 | }
36 |
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessError.swift:35:16: error: cannot find type 'DispatchTime' in scope
33 | public enum ProcessError: Error, LocalizedError, Equatable {
34 | /// Represents a timeout from running a process asynchronously.
35 | case timeout(DispatchTime)
| `- error: cannot find type 'DispatchTime' in scope
36 |
37 | /// Represents a process that exited with an error exit code.
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessCompletionPromise.swift:34:18: error: cannot find type 'DispatchTime' in scope
32 | internal protocol ProcessCompletionPromise {
33 | func waitForCompletion(
34 | for timeout: DispatchTime, with result: @autoclosure @escaping () -> TerminationResult
| `- error: cannot find type 'DispatchTime' in scope
35 | ) -> ProcessResult
36 | }
/host/spi-builder-workspace/Sources/SimulatorServices/Process/InternalSimCtlProcess.swift:44:21: error: cannot find type 'DispatchTime' in scope
42 | /// - Returns: The data output of the process.
43 | /// - Throws: An error is the process fails.
44 | func run(timeout: DispatchTime) async throws -> Data?
| `- error: cannot find type 'DispatchTime' in scope
45 | }
46 |
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessError.swift:33:13: error: type 'ProcessError' does not conform to protocol 'Equatable'
31 |
32 | /// An error that occurred while running a process.
33 | public enum ProcessError: Error, LocalizedError, Equatable {
| |- error: type 'ProcessError' does not conform to protocol 'Equatable'
| `- note: add stubs for conformance
34 | /// Represents a timeout from running a process asynchronously.
35 | case timeout(DispatchTime)
| `- note: associated value type '_' does not conform to protocol 'Equatable', preventing synthesized conformance of 'ProcessError' to 'Equatable'
36 |
37 | /// Represents a process that exited with an error exit code.
Swift.==:1:24: note: candidate would match if 'ProcessError' conformed to 'RawRepresentable'
1 | @inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
| `- note: candidate would match if 'ProcessError' conformed to 'RawRepresentable'
Swift.FloatingPoint.==:2:20: note: candidate would match if 'ProcessError' conformed to 'FloatingPoint'
1 | protocol FloatingPoint {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to 'FloatingPoint'
3 |
Swift.BinaryInteger.==:2:20: note: candidate would match if 'ProcessError' conformed to 'BinaryInteger'
1 | protocol BinaryInteger {
2 | public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger}
| `- note: candidate would match if 'ProcessError' conformed to 'BinaryInteger'
3 |
Swift._Pointer.==:2:20: note: candidate would match if 'ProcessError' conformed to '_Pointer'
1 | protocol _Pointer {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to '_Pointer'
3 |
Swift._Pointer.==:2:31: note: candidate would match if 'ProcessError' conformed to '_Pointer'
1 | protocol _Pointer {
2 | @inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer}
| `- note: candidate would match if 'ProcessError' conformed to '_Pointer'
3 |
Swift.Strideable.==:2:31: note: candidate would match if 'ProcessError' conformed to 'Strideable'
1 | protocol Strideable {
2 | @inlinable public static func == (x: Self, y: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to 'Strideable'
3 |
Swift.StringProtocol.==:2:31: note: candidate would match if 'ProcessError' conformed to 'StringProtocol'
1 | protocol StringProtocol {
2 | @inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol}
| `- note: candidate would match if 'ProcessError' conformed to 'StringProtocol'
3 |
Swift.SIMD.==:2:20: note: candidate would match if 'ProcessError' conformed to 'SIMD'
1 | protocol SIMD {
2 | public static func == (a: Self, b: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to 'SIMD'
3 |
Foundation.__BridgedNSError.==:2:20: note: candidate would match if 'ProcessError' conformed to '__BridgedNSError'
1 | protocol __BridgedNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to '__BridgedNSError'
3 |
Foundation._BridgedStoredNSError.==:2:20: note: candidate would match if 'ProcessError' conformed to '_BridgedStoredNSError'
1 | protocol _BridgedStoredNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to '_BridgedStoredNSError'
3 |
FoundationEssentials.AttributedStringProtocol.==:2:20: note: candidate would match if 'ProcessError' conformed to 'AttributedStringProtocol'
1 | protocol AttributedStringProtocol {
2 | public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : AttributedStringProtocol}
| `- note: candidate would match if 'ProcessError' conformed to 'AttributedStringProtocol'
3 |
Swift.Equatable.==:2:13: note: protocol requires function '==' with type '(ProcessError, ProcessError) -> Bool'
1 | protocol Equatable {
2 | static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: protocol requires function '==' with type '(ProcessError, ProcessError) -> Bool'
3 |
[15/45] Compiling SimulatorServices ProcessCompletionPromise.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/InternalAsyncableProcess.swift:65:30: error: cannot find type 'DispatchTime' in scope
63 | /// - Returns: Data if there anything output from the process.
64 | /// - Throws: The `error` either from failure to complete or from the data returned.
65 | internal func run(timeout: DispatchTime) async throws -> Data? {
| `- error: cannot find type 'DispatchTime' in scope
66 | var handles = fileHandles()
67 | let semaphore = promise()
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessResult.swift:34:17: error: cannot find type 'DispatchTime' in scope
32 | internal enum ProcessResult {
33 | case success(TerminationResult)
34 | case timedOut(DispatchTime)
| `- error: cannot find type 'DispatchTime' in scope
35 | }
36 |
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessError.swift:35:16: error: cannot find type 'DispatchTime' in scope
33 | public enum ProcessError: Error, LocalizedError, Equatable {
34 | /// Represents a timeout from running a process asynchronously.
35 | case timeout(DispatchTime)
| `- error: cannot find type 'DispatchTime' in scope
36 |
37 | /// Represents a process that exited with an error exit code.
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessCompletionPromise.swift:34:18: error: cannot find type 'DispatchTime' in scope
32 | internal protocol ProcessCompletionPromise {
33 | func waitForCompletion(
34 | for timeout: DispatchTime, with result: @autoclosure @escaping () -> TerminationResult
| `- error: cannot find type 'DispatchTime' in scope
35 | ) -> ProcessResult
36 | }
/host/spi-builder-workspace/Sources/SimulatorServices/Process/InternalSimCtlProcess.swift:44:21: error: cannot find type 'DispatchTime' in scope
42 | /// - Returns: The data output of the process.
43 | /// - Throws: An error is the process fails.
44 | func run(timeout: DispatchTime) async throws -> Data?
| `- error: cannot find type 'DispatchTime' in scope
45 | }
46 |
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessError.swift:33:13: error: type 'ProcessError' does not conform to protocol 'Equatable'
31 |
32 | /// An error that occurred while running a process.
33 | public enum ProcessError: Error, LocalizedError, Equatable {
| |- error: type 'ProcessError' does not conform to protocol 'Equatable'
| `- note: add stubs for conformance
34 | /// Represents a timeout from running a process asynchronously.
35 | case timeout(DispatchTime)
| `- note: associated value type '_' does not conform to protocol 'Equatable', preventing synthesized conformance of 'ProcessError' to 'Equatable'
36 |
37 | /// Represents a process that exited with an error exit code.
Swift.==:1:24: note: candidate would match if 'ProcessError' conformed to 'RawRepresentable'
1 | @inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
| `- note: candidate would match if 'ProcessError' conformed to 'RawRepresentable'
Swift.FloatingPoint.==:2:20: note: candidate would match if 'ProcessError' conformed to 'FloatingPoint'
1 | protocol FloatingPoint {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to 'FloatingPoint'
3 |
Swift.BinaryInteger.==:2:20: note: candidate would match if 'ProcessError' conformed to 'BinaryInteger'
1 | protocol BinaryInteger {
2 | public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger}
| `- note: candidate would match if 'ProcessError' conformed to 'BinaryInteger'
3 |
Swift._Pointer.==:2:20: note: candidate would match if 'ProcessError' conformed to '_Pointer'
1 | protocol _Pointer {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to '_Pointer'
3 |
Swift._Pointer.==:2:31: note: candidate would match if 'ProcessError' conformed to '_Pointer'
1 | protocol _Pointer {
2 | @inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer}
| `- note: candidate would match if 'ProcessError' conformed to '_Pointer'
3 |
Swift.Strideable.==:2:31: note: candidate would match if 'ProcessError' conformed to 'Strideable'
1 | protocol Strideable {
2 | @inlinable public static func == (x: Self, y: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to 'Strideable'
3 |
Swift.StringProtocol.==:2:31: note: candidate would match if 'ProcessError' conformed to 'StringProtocol'
1 | protocol StringProtocol {
2 | @inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol}
| `- note: candidate would match if 'ProcessError' conformed to 'StringProtocol'
3 |
Swift.SIMD.==:2:20: note: candidate would match if 'ProcessError' conformed to 'SIMD'
1 | protocol SIMD {
2 | public static func == (a: Self, b: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to 'SIMD'
3 |
Foundation.__BridgedNSError.==:2:20: note: candidate would match if 'ProcessError' conformed to '__BridgedNSError'
1 | protocol __BridgedNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to '__BridgedNSError'
3 |
Foundation._BridgedStoredNSError.==:2:20: note: candidate would match if 'ProcessError' conformed to '_BridgedStoredNSError'
1 | protocol _BridgedStoredNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to '_BridgedStoredNSError'
3 |
FoundationEssentials.AttributedStringProtocol.==:2:20: note: candidate would match if 'ProcessError' conformed to 'AttributedStringProtocol'
1 | protocol AttributedStringProtocol {
2 | public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : AttributedStringProtocol}
| `- note: candidate would match if 'ProcessError' conformed to 'AttributedStringProtocol'
3 |
Swift.Equatable.==:2:13: note: protocol requires function '==' with type '(ProcessError, ProcessError) -> Bool'
1 | protocol Equatable {
2 | static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: protocol requires function '==' with type '(ProcessError, ProcessError) -> Bool'
3 |
[16/45] Compiling SimulatorServices ProcessError.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/InternalAsyncableProcess.swift:65:30: error: cannot find type 'DispatchTime' in scope
63 | /// - Returns: Data if there anything output from the process.
64 | /// - Throws: The `error` either from failure to complete or from the data returned.
65 | internal func run(timeout: DispatchTime) async throws -> Data? {
| `- error: cannot find type 'DispatchTime' in scope
66 | var handles = fileHandles()
67 | let semaphore = promise()
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessResult.swift:34:17: error: cannot find type 'DispatchTime' in scope
32 | internal enum ProcessResult {
33 | case success(TerminationResult)
34 | case timedOut(DispatchTime)
| `- error: cannot find type 'DispatchTime' in scope
35 | }
36 |
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessError.swift:35:16: error: cannot find type 'DispatchTime' in scope
33 | public enum ProcessError: Error, LocalizedError, Equatable {
34 | /// Represents a timeout from running a process asynchronously.
35 | case timeout(DispatchTime)
| `- error: cannot find type 'DispatchTime' in scope
36 |
37 | /// Represents a process that exited with an error exit code.
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessCompletionPromise.swift:34:18: error: cannot find type 'DispatchTime' in scope
32 | internal protocol ProcessCompletionPromise {
33 | func waitForCompletion(
34 | for timeout: DispatchTime, with result: @autoclosure @escaping () -> TerminationResult
| `- error: cannot find type 'DispatchTime' in scope
35 | ) -> ProcessResult
36 | }
/host/spi-builder-workspace/Sources/SimulatorServices/Process/InternalSimCtlProcess.swift:44:21: error: cannot find type 'DispatchTime' in scope
42 | /// - Returns: The data output of the process.
43 | /// - Throws: An error is the process fails.
44 | func run(timeout: DispatchTime) async throws -> Data?
| `- error: cannot find type 'DispatchTime' in scope
45 | }
46 |
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessError.swift:33:13: error: type 'ProcessError' does not conform to protocol 'Equatable'
31 |
32 | /// An error that occurred while running a process.
33 | public enum ProcessError: Error, LocalizedError, Equatable {
| |- error: type 'ProcessError' does not conform to protocol 'Equatable'
| `- note: add stubs for conformance
34 | /// Represents a timeout from running a process asynchronously.
35 | case timeout(DispatchTime)
| `- note: associated value type '_' does not conform to protocol 'Equatable', preventing synthesized conformance of 'ProcessError' to 'Equatable'
36 |
37 | /// Represents a process that exited with an error exit code.
Swift.==:1:24: note: candidate would match if 'ProcessError' conformed to 'RawRepresentable'
1 | @inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
| `- note: candidate would match if 'ProcessError' conformed to 'RawRepresentable'
Swift.FloatingPoint.==:2:20: note: candidate would match if 'ProcessError' conformed to 'FloatingPoint'
1 | protocol FloatingPoint {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to 'FloatingPoint'
3 |
Swift.BinaryInteger.==:2:20: note: candidate would match if 'ProcessError' conformed to 'BinaryInteger'
1 | protocol BinaryInteger {
2 | public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger}
| `- note: candidate would match if 'ProcessError' conformed to 'BinaryInteger'
3 |
Swift._Pointer.==:2:20: note: candidate would match if 'ProcessError' conformed to '_Pointer'
1 | protocol _Pointer {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to '_Pointer'
3 |
Swift._Pointer.==:2:31: note: candidate would match if 'ProcessError' conformed to '_Pointer'
1 | protocol _Pointer {
2 | @inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer}
| `- note: candidate would match if 'ProcessError' conformed to '_Pointer'
3 |
Swift.Strideable.==:2:31: note: candidate would match if 'ProcessError' conformed to 'Strideable'
1 | protocol Strideable {
2 | @inlinable public static func == (x: Self, y: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to 'Strideable'
3 |
Swift.StringProtocol.==:2:31: note: candidate would match if 'ProcessError' conformed to 'StringProtocol'
1 | protocol StringProtocol {
2 | @inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol}
| `- note: candidate would match if 'ProcessError' conformed to 'StringProtocol'
3 |
Swift.SIMD.==:2:20: note: candidate would match if 'ProcessError' conformed to 'SIMD'
1 | protocol SIMD {
2 | public static func == (a: Self, b: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to 'SIMD'
3 |
Foundation.__BridgedNSError.==:2:20: note: candidate would match if 'ProcessError' conformed to '__BridgedNSError'
1 | protocol __BridgedNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to '__BridgedNSError'
3 |
Foundation._BridgedStoredNSError.==:2:20: note: candidate would match if 'ProcessError' conformed to '_BridgedStoredNSError'
1 | protocol _BridgedStoredNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to '_BridgedStoredNSError'
3 |
FoundationEssentials.AttributedStringProtocol.==:2:20: note: candidate would match if 'ProcessError' conformed to 'AttributedStringProtocol'
1 | protocol AttributedStringProtocol {
2 | public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : AttributedStringProtocol}
| `- note: candidate would match if 'ProcessError' conformed to 'AttributedStringProtocol'
3 |
Swift.Equatable.==:2:13: note: protocol requires function '==' with type '(ProcessError, ProcessError) -> Bool'
1 | protocol Equatable {
2 | static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: protocol requires function '==' with type '(ProcessError, ProcessError) -> Bool'
3 |
[17/49] Compiling SimulatorServices Runtime.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/DispatchSemaphore.swift:32:11: error: cannot find type 'DispatchSemaphore' in scope
30 | import Foundation
31 |
32 | extension DispatchSemaphore: ProcessCompletionPromise {
| `- error: cannot find type 'DispatchSemaphore' in scope
33 | internal func waitForCompletion(
34 | for timeout: DispatchTime, with result: @autoclosure @escaping () -> TerminationResult
/host/spi-builder-workspace/Sources/SimulatorServices/Process/DispatchSemaphore.swift:34:18: error: cannot find type 'DispatchTime' in scope
32 | extension DispatchSemaphore: ProcessCompletionPromise {
33 | internal func waitForCompletion(
34 | for timeout: DispatchTime, with result: @autoclosure @escaping () -> TerminationResult
| `- error: cannot find type 'DispatchTime' in scope
35 | ) -> ProcessResult {
36 | let processResult = wait(timeout: timeout)
[18/49] Compiling SimulatorServices RuntimeID.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/DispatchSemaphore.swift:32:11: error: cannot find type 'DispatchSemaphore' in scope
30 | import Foundation
31 |
32 | extension DispatchSemaphore: ProcessCompletionPromise {
| `- error: cannot find type 'DispatchSemaphore' in scope
33 | internal func waitForCompletion(
34 | for timeout: DispatchTime, with result: @autoclosure @escaping () -> TerminationResult
/host/spi-builder-workspace/Sources/SimulatorServices/Process/DispatchSemaphore.swift:34:18: error: cannot find type 'DispatchTime' in scope
32 | extension DispatchSemaphore: ProcessCompletionPromise {
33 | internal func waitForCompletion(
34 | for timeout: DispatchTime, with result: @autoclosure @escaping () -> TerminationResult
| `- error: cannot find type 'DispatchTime' in scope
35 | ) -> ProcessResult {
36 | let processResult = wait(timeout: timeout)
[19/49] Compiling SimulatorServices SimulatorList.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/DispatchSemaphore.swift:32:11: error: cannot find type 'DispatchSemaphore' in scope
30 | import Foundation
31 |
32 | extension DispatchSemaphore: ProcessCompletionPromise {
| `- error: cannot find type 'DispatchSemaphore' in scope
33 | internal func waitForCompletion(
34 | for timeout: DispatchTime, with result: @autoclosure @escaping () -> TerminationResult
/host/spi-builder-workspace/Sources/SimulatorServices/Process/DispatchSemaphore.swift:34:18: error: cannot find type 'DispatchTime' in scope
32 | extension DispatchSemaphore: ProcessCompletionPromise {
33 | internal func waitForCompletion(
34 | for timeout: DispatchTime, with result: @autoclosure @escaping () -> TerminationResult
| `- error: cannot find type 'DispatchTime' in scope
35 | ) -> ProcessResult {
36 | let processResult = wait(timeout: timeout)
[20/49] Compiling SimulatorServices Version.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/DispatchSemaphore.swift:32:11: error: cannot find type 'DispatchSemaphore' in scope
30 | import Foundation
31 |
32 | extension DispatchSemaphore: ProcessCompletionPromise {
| `- error: cannot find type 'DispatchSemaphore' in scope
33 | internal func waitForCompletion(
34 | for timeout: DispatchTime, with result: @autoclosure @escaping () -> TerminationResult
/host/spi-builder-workspace/Sources/SimulatorServices/Process/DispatchSemaphore.swift:34:18: error: cannot find type 'DispatchTime' in scope
32 | extension DispatchSemaphore: ProcessCompletionPromise {
33 | internal func waitForCompletion(
34 | for timeout: DispatchTime, with result: @autoclosure @escaping () -> TerminationResult
| `- error: cannot find type 'DispatchTime' in scope
35 | ) -> ProcessResult {
36 | let processResult = wait(timeout: timeout)
[21/49] Compiling SimulatorServices DispatchSemaphore.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/DispatchSemaphore.swift:32:11: error: cannot find type 'DispatchSemaphore' in scope
30 | import Foundation
31 |
32 | extension DispatchSemaphore: ProcessCompletionPromise {
| `- error: cannot find type 'DispatchSemaphore' in scope
33 | internal func waitForCompletion(
34 | for timeout: DispatchTime, with result: @autoclosure @escaping () -> TerminationResult
/host/spi-builder-workspace/Sources/SimulatorServices/Process/DispatchSemaphore.swift:34:18: error: cannot find type 'DispatchTime' in scope
32 | extension DispatchSemaphore: ProcessCompletionPromise {
33 | internal func waitForCompletion(
34 | for timeout: DispatchTime, with result: @autoclosure @escaping () -> TerminationResult
| `- error: cannot find type 'DispatchTime' in scope
35 | ) -> ProcessResult {
36 | let processResult = wait(timeout: timeout)
[22/49] Compiling SimulatorServices ProcessOutputHandleSet.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessResult.swift:34:17: error: cannot find type 'DispatchTime' in scope
32 | internal enum ProcessResult {
33 | case success(TerminationResult)
34 | case timedOut(DispatchTime)
| `- error: cannot find type 'DispatchTime' in scope
35 | }
36 |
[23/49] Compiling SimulatorServices ProcessResult.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessResult.swift:34:17: error: cannot find type 'DispatchTime' in scope
32 | internal enum ProcessResult {
33 | case success(TerminationResult)
34 | case timedOut(DispatchTime)
| `- error: cannot find type 'DispatchTime' in scope
35 | }
36 |
[24/49] Compiling SimulatorServices TerminationResult.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessResult.swift:34:17: error: cannot find type 'DispatchTime' in scope
32 | internal enum ProcessResult {
33 | case success(TerminationResult)
34 | case timedOut(DispatchTime)
| `- error: cannot find type 'DispatchTime' in scope
35 | }
36 |
[25/49] Compiling SimulatorServices UncaughtSignal.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessResult.swift:34:17: error: cannot find type 'DispatchTime' in scope
32 | internal enum ProcessResult {
33 | case success(TerminationResult)
34 | case timedOut(DispatchTime)
| `- error: cannot find type 'DispatchTime' in scope
35 | }
36 |
error: emit-module command failed with exit code 1 (use -v to see invocation)
[26/49] Emitting module SimulatorServices
/host/spi-builder-workspace/Sources/SimulatorServices/Support/RawDefined.swift:30:10: warning: Move RawReversable to Options.
28 | //
29 |
30 | #warning("Move RawReversable to Options.")
| `- warning: Move RawReversable to Options.
31 |
32 | /// A protocol for types with raw options.
/host/spi-builder-workspace/Sources/SimulatorServices/Process/DispatchSemaphore.swift:32:11: error: cannot find type 'DispatchSemaphore' in scope
30 | import Foundation
31 |
32 | extension DispatchSemaphore: ProcessCompletionPromise {
| `- error: cannot find type 'DispatchSemaphore' in scope
33 | internal func waitForCompletion(
34 | for timeout: DispatchTime, with result: @autoclosure @escaping () -> TerminationResult
/host/spi-builder-workspace/Sources/SimulatorServices/Process/InternalAsyncableProcess.swift:65:30: error: cannot find type 'DispatchTime' in scope
63 | /// - Returns: Data if there anything output from the process.
64 | /// - Throws: The `error` either from failure to complete or from the data returned.
65 | internal func run(timeout: DispatchTime) async throws -> Data? {
| `- error: cannot find type 'DispatchTime' in scope
66 | var handles = fileHandles()
67 | let semaphore = promise()
/host/spi-builder-workspace/Sources/SimulatorServices/Process/InternalSimCtlProcess.swift:44:21: error: cannot find type 'DispatchTime' in scope
42 | /// - Returns: The data output of the process.
43 | /// - Throws: An error is the process fails.
44 | func run(timeout: DispatchTime) async throws -> Data?
| `- error: cannot find type 'DispatchTime' in scope
45 | }
46 |
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessCompletionPromise.swift:34:18: error: cannot find type 'DispatchTime' in scope
32 | internal protocol ProcessCompletionPromise {
33 | func waitForCompletion(
34 | for timeout: DispatchTime, with result: @autoclosure @escaping () -> TerminationResult
| `- error: cannot find type 'DispatchTime' in scope
35 | ) -> ProcessResult
36 | }
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessError.swift:35:16: error: cannot find type 'DispatchTime' in scope
33 | public enum ProcessError: Error, LocalizedError, Equatable {
34 | /// Represents a timeout from running a process asynchronously.
35 | case timeout(DispatchTime)
| `- error: cannot find type 'DispatchTime' in scope
36 |
37 | /// Represents a process that exited with an error exit code.
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessError.swift:33:13: error: type 'ProcessError' does not conform to protocol 'Equatable'
31 |
32 | /// An error that occurred while running a process.
33 | public enum ProcessError: Error, LocalizedError, Equatable {
| |- error: type 'ProcessError' does not conform to protocol 'Equatable'
| `- note: add stubs for conformance
34 | /// Represents a timeout from running a process asynchronously.
35 | case timeout(DispatchTime)
| `- note: associated value type '_' does not conform to protocol 'Equatable', preventing synthesized conformance of 'ProcessError' to 'Equatable'
36 |
37 | /// Represents a process that exited with an error exit code.
Swift.==:1:24: note: candidate would match if 'ProcessError' conformed to 'RawRepresentable'
1 | @inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
| `- note: candidate would match if 'ProcessError' conformed to 'RawRepresentable'
Swift.FloatingPoint.==:2:20: note: candidate would match if 'ProcessError' conformed to 'FloatingPoint'
1 | protocol FloatingPoint {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to 'FloatingPoint'
3 |
Swift.BinaryInteger.==:2:20: note: candidate would match if 'ProcessError' conformed to 'BinaryInteger'
1 | protocol BinaryInteger {
2 | public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger}
| `- note: candidate would match if 'ProcessError' conformed to 'BinaryInteger'
3 |
Swift._Pointer.==:2:20: note: candidate would match if 'ProcessError' conformed to '_Pointer'
1 | protocol _Pointer {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to '_Pointer'
3 |
Swift._Pointer.==:2:31: note: candidate would match if 'ProcessError' conformed to '_Pointer'
1 | protocol _Pointer {
2 | @inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer}
| `- note: candidate would match if 'ProcessError' conformed to '_Pointer'
3 |
Swift.Strideable.==:2:31: note: candidate would match if 'ProcessError' conformed to 'Strideable'
1 | protocol Strideable {
2 | @inlinable public static func == (x: Self, y: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to 'Strideable'
3 |
Swift.StringProtocol.==:2:31: note: candidate would match if 'ProcessError' conformed to 'StringProtocol'
1 | protocol StringProtocol {
2 | @inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol}
| `- note: candidate would match if 'ProcessError' conformed to 'StringProtocol'
3 |
Swift.SIMD.==:2:20: note: candidate would match if 'ProcessError' conformed to 'SIMD'
1 | protocol SIMD {
2 | public static func == (a: Self, b: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to 'SIMD'
3 |
Foundation.__BridgedNSError.==:2:20: note: candidate would match if 'ProcessError' conformed to '__BridgedNSError'
1 | protocol __BridgedNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to '__BridgedNSError'
3 |
Foundation._BridgedStoredNSError.==:2:20: note: candidate would match if 'ProcessError' conformed to '_BridgedStoredNSError'
1 | protocol _BridgedStoredNSError {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: candidate would match if 'ProcessError' conformed to '_BridgedStoredNSError'
3 |
FoundationEssentials.AttributedStringProtocol.==:2:20: note: candidate would match if 'ProcessError' conformed to 'AttributedStringProtocol'
1 | protocol AttributedStringProtocol {
2 | public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : AttributedStringProtocol}
| `- note: candidate would match if 'ProcessError' conformed to 'AttributedStringProtocol'
3 |
Swift.Equatable.==:2:13: note: protocol requires function '==' with type '(ProcessError, ProcessError) -> Bool'
1 | protocol Equatable {
2 | static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: protocol requires function '==' with type '(ProcessError, ProcessError) -> Bool'
3 |
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessResult.swift:34:17: error: cannot find type 'DispatchTime' in scope
32 | internal enum ProcessResult {
33 | case success(TerminationResult)
34 | case timedOut(DispatchTime)
| `- error: cannot find type 'DispatchTime' in scope
35 | }
36 |
[27/49] Compiling SimulatorServices ContainerID.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessError.swift:35:16: error: cannot find type 'DispatchTime' in scope
33 | public enum ProcessError: Error, LocalizedError, Equatable {
34 | /// Represents a timeout from running a process asynchronously.
35 | case timeout(DispatchTime)
| `- error: cannot find type 'DispatchTime' in scope
36 |
37 | /// Represents a process that exited with an error exit code.
[28/49] Compiling SimulatorServices SimulatorID.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessError.swift:35:16: error: cannot find type 'DispatchTime' in scope
33 | public enum ProcessError: Error, LocalizedError, Equatable {
34 | /// Represents a timeout from running a process asynchronously.
35 | case timeout(DispatchTime)
| `- error: cannot find type 'DispatchTime' in scope
36 |
37 | /// Represents a process that exited with an error exit code.
[29/49] Compiling SimulatorServices GetAppContainer.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessError.swift:35:16: error: cannot find type 'DispatchTime' in scope
33 | public enum ProcessError: Error, LocalizedError, Equatable {
34 | /// Represents a timeout from running a process asynchronously.
35 | case timeout(DispatchTime)
| `- error: cannot find type 'DispatchTime' in scope
36 |
37 | /// Represents a process that exited with an error exit code.
[30/49] Compiling SimulatorServices List.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessError.swift:35:16: error: cannot find type 'DispatchTime' in scope
33 | public enum ProcessError: Error, LocalizedError, Equatable {
34 | /// Represents a timeout from running a process asynchronously.
35 | case timeout(DispatchTime)
| `- error: cannot find type 'DispatchTime' in scope
36 |
37 | /// Represents a process that exited with an error exit code.
[31/49] Compiling SimulatorServices Device.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessError.swift:35:16: error: cannot find type 'DispatchTime' in scope
33 | public enum ProcessError: Error, LocalizedError, Equatable {
34 | /// Represents a timeout from running a process asynchronously.
35 | case timeout(DispatchTime)
| `- error: cannot find type 'DispatchTime' in scope
36 |
37 | /// Represents a process that exited with an error exit code.
[32/49] Compiling SimulatorServices PrefixedDecodableString.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Support/RawDefined.swift:30:10: warning: Move RawReversable to Options.
28 | //
29 |
30 | #warning("Move RawReversable to Options.")
| `- warning: Move RawReversable to Options.
31 |
32 | /// A protocol for types with raw options.
[33/49] Compiling SimulatorServices RandomEnum.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Support/RawDefined.swift:30:10: warning: Move RawReversable to Options.
28 | //
29 |
30 | #warning("Move RawReversable to Options.")
| `- warning: Move RawReversable to Options.
31 |
32 | /// A protocol for types with raw options.
[34/49] Compiling SimulatorServices RawDefined.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Support/RawDefined.swift:30:10: warning: Move RawReversable to Options.
28 | //
29 |
30 | #warning("Move RawReversable to Options.")
| `- warning: Move RawReversable to Options.
31 |
32 | /// A protocol for types with raw options.
[35/49] Compiling SimulatorServices RawReversable.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Support/RawDefined.swift:30:10: warning: Move RawReversable to Options.
28 | //
29 |
30 | #warning("Move RawReversable to Options.")
| `- warning: Move RawReversable to Options.
31 |
32 | /// A protocol for types with raw options.
[36/49] Compiling SimulatorServices ModelID.swift
[37/49] Compiling SimulatorServices PairState.swift
[38/49] Compiling SimulatorServices Path.swift
[39/49] Compiling SimulatorServices Platform.swift
[40/49] Compiling SimulatorServices ProductFamily.swift
[41/49] Compiling SimulatorServices SimCtl.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/InternalSimCtlProcess.swift:44:21: error: cannot find type 'DispatchTime' in scope
42 | /// - Returns: The data output of the process.
43 | /// - Throws: An error is the process fails.
44 | func run(timeout: DispatchTime) async throws -> Data?
| `- error: cannot find type 'DispatchTime' in scope
45 | }
46 |
/host/spi-builder-workspace/Sources/SimulatorServices/SimCtl.swift:68:46: error: cannot infer contextual base in reference to member 'distantFuture'
66 | let data: Data?
67 | do {
68 | data = try await process.run(timeout: .distantFuture)
| `- error: cannot infer contextual base in reference to member 'distantFuture'
69 | } catch let error as ProcessError {
70 | try subcommand.recover(error)
[42/49] Compiling SimulatorServices Subcommand.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/InternalSimCtlProcess.swift:44:21: error: cannot find type 'DispatchTime' in scope
42 | /// - Returns: The data output of the process.
43 | /// - Throws: An error is the process fails.
44 | func run(timeout: DispatchTime) async throws -> Data?
| `- error: cannot find type 'DispatchTime' in scope
45 | }
46 |
/host/spi-builder-workspace/Sources/SimulatorServices/SimCtl.swift:68:46: error: cannot infer contextual base in reference to member 'distantFuture'
66 | let data: Data?
67 | do {
68 | data = try await process.run(timeout: .distantFuture)
| `- error: cannot infer contextual base in reference to member 'distantFuture'
69 | } catch let error as ProcessError {
70 | try subcommand.recover(error)
[43/49] Compiling SimulatorServices Decoder+PrefixedDecodableString.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/InternalSimCtlProcess.swift:44:21: error: cannot find type 'DispatchTime' in scope
42 | /// - Returns: The data output of the process.
43 | /// - Throws: An error is the process fails.
44 | func run(timeout: DispatchTime) async throws -> Data?
| `- error: cannot find type 'DispatchTime' in scope
45 | }
46 |
/host/spi-builder-workspace/Sources/SimulatorServices/SimCtl.swift:68:46: error: cannot infer contextual base in reference to member 'distantFuture'
66 | let data: Data?
67 | do {
68 | data = try await process.run(timeout: .distantFuture)
| `- error: cannot infer contextual base in reference to member 'distantFuture'
69 | } catch let error as ProcessError {
70 | try subcommand.recover(error)
[44/49] Compiling SimulatorServices PrefixedDecodableString+RawDefined.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/InternalSimCtlProcess.swift:44:21: error: cannot find type 'DispatchTime' in scope
42 | /// - Returns: The data output of the process.
43 | /// - Throws: An error is the process fails.
44 | func run(timeout: DispatchTime) async throws -> Data?
| `- error: cannot find type 'DispatchTime' in scope
45 | }
46 |
/host/spi-builder-workspace/Sources/SimulatorServices/SimCtl.swift:68:46: error: cannot infer contextual base in reference to member 'distantFuture'
66 | let data: Data?
67 | do {
68 | data = try await process.run(timeout: .distantFuture)
| `- error: cannot infer contextual base in reference to member 'distantFuture'
69 | } catch let error as ProcessError {
70 | try subcommand.recover(error)
[45/49] Compiling SimulatorServices DevicePair.swift
[46/49] Compiling SimulatorServices DeviceState.swift
[47/49] Compiling SimulatorServices DeviceType.swift
[48/49] Compiling SimulatorServices DeviceTypeID.swift
[49/49] Compiling SimulatorServices ModelID+Version.swift
BUILD FAILURE 6.3 wasm