The Swift Package Index logo.Swift Package Index

Build Information

Failed to build SimulatorServices, reference 1.0.1 (57099b), with Swift 6.3 for Wasm on 15 Apr 2026 18:01:04 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-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

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/brightdigit/SimulatorServices.git
Reference: 1.0.1
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.0.1      -> FETCH_HEAD
HEAD is now at 57099b5 Fixing stream issue (#12)
Cloned https://github.com/brightdigit/SimulatorServices.git
Revision (git rev-parse @):
57099b56d3a0f1a33473081f379ac52b58a721c7
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/brightdigit/SimulatorServices.git at 1.0.1
========================================
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-4609320-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
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/23] Emitting module SimulatorServices
/host/spi-builder-workspace/Sources/SimulatorServices/Process/DispatchSemaphore.swift:3:11: error: cannot find type 'DispatchSemaphore' in scope
 1 | import Foundation
 2 |
 3 | extension DispatchSemaphore: ProcessCompletionPromise {
   |           `- error: cannot find type 'DispatchSemaphore' in scope
 4 |   internal func waitForCompletion(
 5 |     for timeout: DispatchTime,
/host/spi-builder-workspace/Sources/SimulatorServices/Process/Process.swift:5:13: error: cannot find type 'Process' in scope
 3 |
 4 |   @available(macOS 10.15.4, *)
 5 |   extension Process: _SimCtlProcess, _AsyncableProcess {
   |             `- error: cannot find type 'Process' in scope
 6 |     internal func termintationResult() -> TerminationResult {
 7 |       .init(reason: terminationReason.rawValue, status: Int(terminationStatus))
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessCompletionPromise.swift:5:18: error: cannot find type 'DispatchTime' in scope
3 | internal protocol ProcessCompletionPromise {
4 |   func waitForCompletion(
5 |     for timeout: DispatchTime,
  |                  `- error: cannot find type 'DispatchTime' in scope
6 |     with result: @autoclosure @escaping () -> TerminationResult
7 |   ) -> ProcessResult
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessError.swift:6:16: error: cannot find type 'DispatchTime' in scope
 4 | public enum ProcessError: Error, LocalizedError, Equatable {
 5 |   /// A timeout from running a process asnycronously
 6 |   case timeout(DispatchTime)
   |                `- error: cannot find type 'DispatchTime' in scope
 7 |
 8 |   /// The process existed with an error exit code.
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessError.swift:4:13: error: type 'ProcessError' does not conform to protocol 'Equatable'
 2 |
 3 | /// An error which occured while running a process.
 4 | public enum ProcessError: Error, LocalizedError, Equatable {
   |             |- error: type 'ProcessError' does not conform to protocol 'Equatable'
   |             `- note: add stubs for conformance
 5 |   /// A timeout from running a process asnycronously
 6 |   case timeout(DispatchTime)
   |                `- note: associated value type '_' does not conform to protocol 'Equatable', preventing synthesized conformance of 'ProcessError' to 'Equatable'
 7 |
 8 |   /// The process existed 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:5:17: error: cannot find type 'DispatchTime' in scope
3 | internal enum ProcessResult {
4 |   case success(TerminationResult)
5 |   case timedOut(DispatchTime)
  |                 `- error: cannot find type 'DispatchTime' in scope
6 | }
7 |
/host/spi-builder-workspace/Sources/SimulatorServices/Process/_AsyncableProcess.swift:37:30: error: cannot find type 'DispatchTime' in scope
35 |   /// - Parameter timeout: Timeout for the process to be done.
36 |   /// - Returns: Data if there anything output from the process.
37 |   internal func run(timeout: DispatchTime) async throws -> Data? {
   |                              `- error: cannot find type 'DispatchTime' in scope
38 |     var handles = fileHandles()
39 |     let semaphore = promise()
/host/spi-builder-workspace/Sources/SimulatorServices/Process/_SimCtlProcess.swift:6:21: error: cannot find type 'DispatchTime' in scope
4 |   var executableURL: URL? { get set }
5 |   var arguments: [String]? { get set }
6 |   func run(timeout: DispatchTime) async throws -> Data?
  |                     `- error: cannot find type 'DispatchTime' in scope
7 | }
8 |
[4/25] Compiling SimulatorServices DeviceType.swift
[5/25] Compiling SimulatorServices Path.swift
[6/25] Compiling SimulatorServices Runtime.swift
[7/25] Compiling SimulatorServices ProcessCompletionPromise.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessCompletionPromise.swift:5:18: error: cannot find type 'DispatchTime' in scope
3 | internal protocol ProcessCompletionPromise {
4 |   func waitForCompletion(
5 |     for timeout: DispatchTime,
  |                  `- error: cannot find type 'DispatchTime' in scope
6 |     with result: @autoclosure @escaping () -> TerminationResult
7 |   ) -> ProcessResult
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessError.swift:6:16: error: cannot find type 'DispatchTime' in scope
 4 | public enum ProcessError: Error, LocalizedError, Equatable {
 5 |   /// A timeout from running a process asnycronously
 6 |   case timeout(DispatchTime)
   |                `- error: cannot find type 'DispatchTime' in scope
 7 |
 8 |   /// The process existed with an error exit code.
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessError.swift:4:13: error: type 'ProcessError' does not conform to protocol 'Equatable'
 2 |
 3 | /// An error which occured while running a process.
 4 | public enum ProcessError: Error, LocalizedError, Equatable {
   |             |- error: type 'ProcessError' does not conform to protocol 'Equatable'
   |             `- note: add stubs for conformance
 5 |   /// A timeout from running a process asnycronously
 6 |   case timeout(DispatchTime)
   |                `- note: associated value type '_' does not conform to protocol 'Equatable', preventing synthesized conformance of 'ProcessError' to 'Equatable'
 7 |
 8 |   /// The process existed 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 |
[8/25] Compiling SimulatorServices ProcessError.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessCompletionPromise.swift:5:18: error: cannot find type 'DispatchTime' in scope
3 | internal protocol ProcessCompletionPromise {
4 |   func waitForCompletion(
5 |     for timeout: DispatchTime,
  |                  `- error: cannot find type 'DispatchTime' in scope
6 |     with result: @autoclosure @escaping () -> TerminationResult
7 |   ) -> ProcessResult
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessError.swift:6:16: error: cannot find type 'DispatchTime' in scope
 4 | public enum ProcessError: Error, LocalizedError, Equatable {
 5 |   /// A timeout from running a process asnycronously
 6 |   case timeout(DispatchTime)
   |                `- error: cannot find type 'DispatchTime' in scope
 7 |
 8 |   /// The process existed with an error exit code.
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessError.swift:4:13: error: type 'ProcessError' does not conform to protocol 'Equatable'
 2 |
 3 | /// An error which occured while running a process.
 4 | public enum ProcessError: Error, LocalizedError, Equatable {
   |             |- error: type 'ProcessError' does not conform to protocol 'Equatable'
   |             `- note: add stubs for conformance
 5 |   /// A timeout from running a process asnycronously
 6 |   case timeout(DispatchTime)
   |                `- note: associated value type '_' does not conform to protocol 'Equatable', preventing synthesized conformance of 'ProcessError' to 'Equatable'
 7 |
 8 |   /// The process existed 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 |
[9/25] Compiling SimulatorServices ProcessOutputHandleSet.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessCompletionPromise.swift:5:18: error: cannot find type 'DispatchTime' in scope
3 | internal protocol ProcessCompletionPromise {
4 |   func waitForCompletion(
5 |     for timeout: DispatchTime,
  |                  `- error: cannot find type 'DispatchTime' in scope
6 |     with result: @autoclosure @escaping () -> TerminationResult
7 |   ) -> ProcessResult
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessError.swift:6:16: error: cannot find type 'DispatchTime' in scope
 4 | public enum ProcessError: Error, LocalizedError, Equatable {
 5 |   /// A timeout from running a process asnycronously
 6 |   case timeout(DispatchTime)
   |                `- error: cannot find type 'DispatchTime' in scope
 7 |
 8 |   /// The process existed with an error exit code.
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessError.swift:4:13: error: type 'ProcessError' does not conform to protocol 'Equatable'
 2 |
 3 | /// An error which occured while running a process.
 4 | public enum ProcessError: Error, LocalizedError, Equatable {
   |             |- error: type 'ProcessError' does not conform to protocol 'Equatable'
   |             `- note: add stubs for conformance
 5 |   /// A timeout from running a process asnycronously
 6 |   case timeout(DispatchTime)
   |                `- note: associated value type '_' does not conform to protocol 'Equatable', preventing synthesized conformance of 'ProcessError' to 'Equatable'
 7 |
 8 |   /// The process existed 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 |
[10/25] Compiling SimulatorServices SimCtl.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/_SimCtlProcess.swift:6:21: error: cannot find type 'DispatchTime' in scope
4 |   var executableURL: URL? { get set }
5 |   var arguments: [String]? { get set }
6 |   func run(timeout: DispatchTime) async throws -> Data?
  |                     `- error: cannot find type 'DispatchTime' in scope
7 | }
8 |
/host/spi-builder-workspace/Sources/SimulatorServices/SimCtl.swift:23:53: error: cannot find 'Process' in scope
21 |     @available(macOS 10.15.4, *)
22 |     public init(xcRunURL: URL = URL(fileURLWithPath: "/usr/bin/xcrun")) {
23 |       self.init(xcRunURL: xcRunURL, processFactory: Process())
   |                                                     `- error: cannot find 'Process' in scope
24 |     }
25 |   #endif
/host/spi-builder-workspace/Sources/SimulatorServices/SimCtl.swift:38:46: error: cannot infer contextual base in reference to member 'distantFuture'
36 |     let data: Data?
37 |     do {
38 |       data = try await process.run(timeout: .distantFuture)
   |                                              `- error: cannot infer contextual base in reference to member 'distantFuture'
39 |     } catch let error as ProcessError {
40 |       try subcommand.recover(error)
[11/25] Compiling SimulatorServices Subcommand.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/_SimCtlProcess.swift:6:21: error: cannot find type 'DispatchTime' in scope
4 |   var executableURL: URL? { get set }
5 |   var arguments: [String]? { get set }
6 |   func run(timeout: DispatchTime) async throws -> Data?
  |                     `- error: cannot find type 'DispatchTime' in scope
7 | }
8 |
/host/spi-builder-workspace/Sources/SimulatorServices/SimCtl.swift:23:53: error: cannot find 'Process' in scope
21 |     @available(macOS 10.15.4, *)
22 |     public init(xcRunURL: URL = URL(fileURLWithPath: "/usr/bin/xcrun")) {
23 |       self.init(xcRunURL: xcRunURL, processFactory: Process())
   |                                                     `- error: cannot find 'Process' in scope
24 |     }
25 |   #endif
/host/spi-builder-workspace/Sources/SimulatorServices/SimCtl.swift:38:46: error: cannot infer contextual base in reference to member 'distantFuture'
36 |     let data: Data?
37 |     do {
38 |       data = try await process.run(timeout: .distantFuture)
   |                                              `- error: cannot infer contextual base in reference to member 'distantFuture'
39 |     } catch let error as ProcessError {
40 |       try subcommand.recover(error)
[12/25] Compiling SimulatorServices _AsyncableProcess.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessCompletionPromise.swift:5:18: error: cannot find type 'DispatchTime' in scope
3 | internal protocol ProcessCompletionPromise {
4 |   func waitForCompletion(
5 |     for timeout: DispatchTime,
  |                  `- error: cannot find type 'DispatchTime' in scope
6 |     with result: @autoclosure @escaping () -> TerminationResult
7 |   ) -> ProcessResult
/host/spi-builder-workspace/Sources/SimulatorServices/Process/_AsyncableProcess.swift:37:30: error: cannot find type 'DispatchTime' in scope
35 |   /// - Parameter timeout: Timeout for the process to be done.
36 |   /// - Returns: Data if there anything output from the process.
37 |   internal func run(timeout: DispatchTime) async throws -> Data? {
   |                              `- error: cannot find type 'DispatchTime' in scope
38 |     var handles = fileHandles()
39 |     let semaphore = promise()
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessResult.swift:5:17: error: cannot find type 'DispatchTime' in scope
3 | internal enum ProcessResult {
4 |   case success(TerminationResult)
5 |   case timedOut(DispatchTime)
  |                 `- error: cannot find type 'DispatchTime' in scope
6 | }
7 |
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessError.swift:6:16: error: cannot find type 'DispatchTime' in scope
 4 | public enum ProcessError: Error, LocalizedError, Equatable {
 5 |   /// A timeout from running a process asnycronously
 6 |   case timeout(DispatchTime)
   |                `- error: cannot find type 'DispatchTime' in scope
 7 |
 8 |   /// The process existed with an error exit code.
/host/spi-builder-workspace/Sources/SimulatorServices/Process/_SimCtlProcess.swift:6:21: error: cannot find type 'DispatchTime' in scope
4 |   var executableURL: URL? { get set }
5 |   var arguments: [String]? { get set }
6 |   func run(timeout: DispatchTime) async throws -> Data?
  |                     `- error: cannot find type 'DispatchTime' in scope
7 | }
8 |
[13/25] Compiling SimulatorServices _SimCtlProcess.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessCompletionPromise.swift:5:18: error: cannot find type 'DispatchTime' in scope
3 | internal protocol ProcessCompletionPromise {
4 |   func waitForCompletion(
5 |     for timeout: DispatchTime,
  |                  `- error: cannot find type 'DispatchTime' in scope
6 |     with result: @autoclosure @escaping () -> TerminationResult
7 |   ) -> ProcessResult
/host/spi-builder-workspace/Sources/SimulatorServices/Process/_AsyncableProcess.swift:37:30: error: cannot find type 'DispatchTime' in scope
35 |   /// - Parameter timeout: Timeout for the process to be done.
36 |   /// - Returns: Data if there anything output from the process.
37 |   internal func run(timeout: DispatchTime) async throws -> Data? {
   |                              `- error: cannot find type 'DispatchTime' in scope
38 |     var handles = fileHandles()
39 |     let semaphore = promise()
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessResult.swift:5:17: error: cannot find type 'DispatchTime' in scope
3 | internal enum ProcessResult {
4 |   case success(TerminationResult)
5 |   case timedOut(DispatchTime)
  |                 `- error: cannot find type 'DispatchTime' in scope
6 | }
7 |
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessError.swift:6:16: error: cannot find type 'DispatchTime' in scope
 4 | public enum ProcessError: Error, LocalizedError, Equatable {
 5 |   /// A timeout from running a process asnycronously
 6 |   case timeout(DispatchTime)
   |                `- error: cannot find type 'DispatchTime' in scope
 7 |
 8 |   /// The process existed with an error exit code.
/host/spi-builder-workspace/Sources/SimulatorServices/Process/_SimCtlProcess.swift:6:21: error: cannot find type 'DispatchTime' in scope
4 |   var executableURL: URL? { get set }
5 |   var arguments: [String]? { get set }
6 |   func run(timeout: DispatchTime) async throws -> Data?
  |                     `- error: cannot find type 'DispatchTime' in scope
7 | }
8 |
[14/25] Compiling SimulatorServices ContainerID.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessError.swift:6:16: error: cannot find type 'DispatchTime' in scope
 4 | public enum ProcessError: Error, LocalizedError, Equatable {
 5 |   /// A timeout from running a process asnycronously
 6 |   case timeout(DispatchTime)
   |                `- error: cannot find type 'DispatchTime' in scope
 7 |
 8 |   /// The process existed with an error exit code.
[15/25] Compiling SimulatorServices SimulatorID.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessError.swift:6:16: error: cannot find type 'DispatchTime' in scope
 4 | public enum ProcessError: Error, LocalizedError, Equatable {
 5 |   /// A timeout from running a process asnycronously
 6 |   case timeout(DispatchTime)
   |                `- error: cannot find type 'DispatchTime' in scope
 7 |
 8 |   /// The process existed with an error exit code.
[16/25] Compiling SimulatorServices GetAppContainer.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessError.swift:6:16: error: cannot find type 'DispatchTime' in scope
 4 | public enum ProcessError: Error, LocalizedError, Equatable {
 5 |   /// A timeout from running a process asnycronously
 6 |   case timeout(DispatchTime)
   |                `- error: cannot find type 'DispatchTime' in scope
 7 |
 8 |   /// The process existed with an error exit code.
[17/25] Compiling SimulatorServices List.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessError.swift:6:16: error: cannot find type 'DispatchTime' in scope
 4 | public enum ProcessError: Error, LocalizedError, Equatable {
 5 |   /// A timeout from running a process asnycronously
 6 |   case timeout(DispatchTime)
   |                `- error: cannot find type 'DispatchTime' in scope
 7 |
 8 |   /// The process existed with an error exit code.
[18/25] Compiling SimulatorServices Device.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessError.swift:6:16: error: cannot find type 'DispatchTime' in scope
 4 | public enum ProcessError: Error, LocalizedError, Equatable {
 5 |   /// A timeout from running a process asnycronously
 6 |   case timeout(DispatchTime)
   |                `- error: cannot find type 'DispatchTime' in scope
 7 |
 8 |   /// The process existed with an error exit code.
[19/25] Compiling SimulatorServices DevicePair.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessError.swift:6:16: error: cannot find type 'DispatchTime' in scope
 4 | public enum ProcessError: Error, LocalizedError, Equatable {
 5 |   /// A timeout from running a process asnycronously
 6 |   case timeout(DispatchTime)
   |                `- error: cannot find type 'DispatchTime' in scope
 7 |
 8 |   /// The process existed with an error exit code.
[20/25] Compiling SimulatorServices SimulatorList.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/DispatchSemaphore.swift:3:11: error: cannot find type 'DispatchSemaphore' in scope
 1 | import Foundation
 2 |
 3 | extension DispatchSemaphore: ProcessCompletionPromise {
   |           `- error: cannot find type 'DispatchSemaphore' in scope
 4 |   internal func waitForCompletion(
 5 |     for timeout: DispatchTime,
/host/spi-builder-workspace/Sources/SimulatorServices/Process/Process.swift:5:13: error: cannot find type 'Process' in scope
 3 |
 4 |   @available(macOS 10.15.4, *)
 5 |   extension Process: _SimCtlProcess, _AsyncableProcess {
   |             `- error: cannot find type 'Process' in scope
 6 |     internal func termintationResult() -> TerminationResult {
 7 |       .init(reason: terminationReason.rawValue, status: Int(terminationStatus))
/host/spi-builder-workspace/Sources/SimulatorServices/Process/DispatchSemaphore.swift:5:18: error: cannot find type 'DispatchTime' in scope
 3 | extension DispatchSemaphore: ProcessCompletionPromise {
 4 |   internal func waitForCompletion(
 5 |     for timeout: DispatchTime,
   |                  `- error: cannot find type 'DispatchTime' in scope
 6 |     with result: @autoclosure @escaping () -> TerminationResult
 7 |   ) -> ProcessResult {
/host/spi-builder-workspace/Sources/SimulatorServices/Process/Process.swift:32:35: error: cannot find type 'DispatchTime' in scope
30 |     }
31 |
32 |     public func run(till timeout: DispatchTime) async throws -> Data? {
   |                                   `- error: cannot find type 'DispatchTime' in scope
33 |       try await run(timeout: timeout)
34 |     }
[21/25] Compiling SimulatorServices DispatchSemaphore.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/DispatchSemaphore.swift:3:11: error: cannot find type 'DispatchSemaphore' in scope
 1 | import Foundation
 2 |
 3 | extension DispatchSemaphore: ProcessCompletionPromise {
   |           `- error: cannot find type 'DispatchSemaphore' in scope
 4 |   internal func waitForCompletion(
 5 |     for timeout: DispatchTime,
/host/spi-builder-workspace/Sources/SimulatorServices/Process/Process.swift:5:13: error: cannot find type 'Process' in scope
 3 |
 4 |   @available(macOS 10.15.4, *)
 5 |   extension Process: _SimCtlProcess, _AsyncableProcess {
   |             `- error: cannot find type 'Process' in scope
 6 |     internal func termintationResult() -> TerminationResult {
 7 |       .init(reason: terminationReason.rawValue, status: Int(terminationStatus))
/host/spi-builder-workspace/Sources/SimulatorServices/Process/DispatchSemaphore.swift:5:18: error: cannot find type 'DispatchTime' in scope
 3 | extension DispatchSemaphore: ProcessCompletionPromise {
 4 |   internal func waitForCompletion(
 5 |     for timeout: DispatchTime,
   |                  `- error: cannot find type 'DispatchTime' in scope
 6 |     with result: @autoclosure @escaping () -> TerminationResult
 7 |   ) -> ProcessResult {
/host/spi-builder-workspace/Sources/SimulatorServices/Process/Process.swift:32:35: error: cannot find type 'DispatchTime' in scope
30 |     }
31 |
32 |     public func run(till timeout: DispatchTime) async throws -> Data? {
   |                                   `- error: cannot find type 'DispatchTime' in scope
33 |       try await run(timeout: timeout)
34 |     }
[22/25] Compiling SimulatorServices Process.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/DispatchSemaphore.swift:3:11: error: cannot find type 'DispatchSemaphore' in scope
 1 | import Foundation
 2 |
 3 | extension DispatchSemaphore: ProcessCompletionPromise {
   |           `- error: cannot find type 'DispatchSemaphore' in scope
 4 |   internal func waitForCompletion(
 5 |     for timeout: DispatchTime,
/host/spi-builder-workspace/Sources/SimulatorServices/Process/Process.swift:5:13: error: cannot find type 'Process' in scope
 3 |
 4 |   @available(macOS 10.15.4, *)
 5 |   extension Process: _SimCtlProcess, _AsyncableProcess {
   |             `- error: cannot find type 'Process' in scope
 6 |     internal func termintationResult() -> TerminationResult {
 7 |       .init(reason: terminationReason.rawValue, status: Int(terminationStatus))
/host/spi-builder-workspace/Sources/SimulatorServices/Process/DispatchSemaphore.swift:5:18: error: cannot find type 'DispatchTime' in scope
 3 | extension DispatchSemaphore: ProcessCompletionPromise {
 4 |   internal func waitForCompletion(
 5 |     for timeout: DispatchTime,
   |                  `- error: cannot find type 'DispatchTime' in scope
 6 |     with result: @autoclosure @escaping () -> TerminationResult
 7 |   ) -> ProcessResult {
/host/spi-builder-workspace/Sources/SimulatorServices/Process/Process.swift:32:35: error: cannot find type 'DispatchTime' in scope
30 |     }
31 |
32 |     public func run(till timeout: DispatchTime) async throws -> Data? {
   |                                   `- error: cannot find type 'DispatchTime' in scope
33 |       try await run(timeout: timeout)
34 |     }
[23/25] Compiling SimulatorServices ProcessResult.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessResult.swift:5:17: error: cannot find type 'DispatchTime' in scope
3 | internal enum ProcessResult {
4 |   case success(TerminationResult)
5 |   case timedOut(DispatchTime)
  |                 `- error: cannot find type 'DispatchTime' in scope
6 | }
7 |
[24/25] Compiling SimulatorServices TerminationResult.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessResult.swift:5:17: error: cannot find type 'DispatchTime' in scope
3 | internal enum ProcessResult {
4 |   case success(TerminationResult)
5 |   case timedOut(DispatchTime)
  |                 `- error: cannot find type 'DispatchTime' in scope
6 | }
7 |
[25/25] Compiling SimulatorServices UncaughtSignal.swift
/host/spi-builder-workspace/Sources/SimulatorServices/Process/ProcessResult.swift:5:17: error: cannot find type 'DispatchTime' in scope
3 | internal enum ProcessResult {
4 |   case success(TerminationResult)
5 |   case timedOut(DispatchTime)
  |                 `- error: cannot find type 'DispatchTime' in scope
6 | }
7 |
BUILD FAILURE 6.3 wasm