Build Information
Failed to build Typhoon, reference 2.0.0 (273525), with Swift 6.2 for Wasm on 6 Mar 2026 18:50:37 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:wasm-6.2-latest swift build --swift-sdk wasm32-unknown-wasip1 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/space-code/typhoon.git
Reference: 2.0.0
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
From https://github.com/space-code/typhoon
* tag 2.0.0 -> FETCH_HEAD
HEAD is now at 2735259 [Release] Typhoon 2.0.0
Cloned https://github.com/space-code/typhoon.git
Revision (git rev-parse @):
27352598f2af69629d0c8bea2f3a73ea39558933
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/space-code/typhoon.git at 2.0.0
========================================
Build
========================================
Selected platform: wasm
Swift version: 6.2
Building package at path: $PWD
https://github.com/space-code/typhoon.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:wasm-6.2-latest swift build --swift-sdk wasm32-unknown-wasip1 2>&1
wasm-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:c50555b47c4db0b0576f9f25702fbe2fdff28194c4a4f4c23a7dce4b3504c85e
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.2-latest
warning: multiple Swift SDKs match target triple `wasm32-unknown-wasip1` and host triple x86_64-unknown-linux-gnu, selected one at /root/.swiftpm/swift-sdks/swift-6.2-RELEASE_wasm.artifactbundle/swift-6.2-RELEASE_wasm/wasm32-unknown-wasip1/swift-sdk.json
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/18] Compiling Typhoon ChainDelayStrategy.swift
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ConstantDelayStrategy.swift:14:19: error: cannot find type 'DispatchTimeInterval' in scope
12 | ///
13 | /// This value does not change based on the retry index.
14 | let duration: DispatchTimeInterval
| `- error: cannot find type 'DispatchTimeInterval' in scope
15 |
16 | // MARK: - IRetryDelayStrategy
[4/18] Compiling Typhoon ConstantDelayStrategy.swift
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ConstantDelayStrategy.swift:14:19: error: cannot find type 'DispatchTimeInterval' in scope
12 | ///
13 | /// This value does not change based on the retry index.
14 | let duration: DispatchTimeInterval
| `- error: cannot find type 'DispatchTimeInterval' in scope
15 |
16 | // MARK: - IRetryDelayStrategy
[5/18] Compiling Typhoon ExponentialDelayStrategy.swift
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:14:19: error: cannot find type 'DispatchTimeInterval' in scope
12 | ///
13 | /// This value acts as the base interval for exponential backoff.
14 | let duration: DispatchTimeInterval
| `- error: cannot find type 'DispatchTimeInterval' in scope
15 |
16 | /// The exponential growth multiplier.
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:32:22: error: cannot find type 'DispatchTimeInterval' in scope
30 | ///
31 | /// If specified, the computed delay will never exceed this value.
32 | let maxInterval: DispatchTimeInterval?
| `- error: cannot find type 'DispatchTimeInterval' in scope
33 |
34 | // MARK: Initialization
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:37:19: error: cannot find type 'DispatchTimeInterval' in scope
35 |
36 | init(
37 | duration: DispatchTimeInterval,
| `- error: cannot find type 'DispatchTimeInterval' in scope
38 | multiplier: Double = 2.0,
39 | jitterFactor: Double = 0.1,
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:40:22: error: cannot find type 'DispatchTimeInterval' in scope
38 | multiplier: Double = 2.0,
39 | jitterFactor: Double = 0.1,
40 | maxInterval: DispatchTimeInterval? = .seconds(60)
| `- error: cannot find type 'DispatchTimeInterval' in scope
41 | ) {
42 | self.duration = duration
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:68:57: error: cannot convert value of type 'String' to expected argument type 'Double'
66 | let jitterRange = base * jitterFactor
67 | let jittered = Double.random(
68 | in: max(0, base - jitterRange) ... min(base + jitterRange, Double(maxDelayNanos))
| `- error: cannot convert value of type 'String' to expected argument type 'Double'
69 | )
70 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:68:29: error: cannot convert value of type 'Duration' to expected argument type 'Double'
66 | let jitterRange = base * jitterFactor
67 | let jittered = Double.random(
68 | in: max(0, base - jitterRange) ... min(base + jitterRange, Double(maxDelayNanos))
| `- error: cannot convert value of type 'Duration' to expected argument type 'Double'
69 | )
70 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/FibonacciDelayStrategy.swift:20:19: error: cannot find type 'DispatchTimeInterval' in scope
18 | /// Each retry multiplies this value by
19 | /// the corresponding Fibonacci number.
20 | let duration: DispatchTimeInterval
| `- error: cannot find type 'DispatchTimeInterval' in scope
21 |
22 | // MARK: - IRetryDelayStrategy
[6/18] Compiling Typhoon FibonacciDelayStrategy.swift
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:14:19: error: cannot find type 'DispatchTimeInterval' in scope
12 | ///
13 | /// This value acts as the base interval for exponential backoff.
14 | let duration: DispatchTimeInterval
| `- error: cannot find type 'DispatchTimeInterval' in scope
15 |
16 | /// The exponential growth multiplier.
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:32:22: error: cannot find type 'DispatchTimeInterval' in scope
30 | ///
31 | /// If specified, the computed delay will never exceed this value.
32 | let maxInterval: DispatchTimeInterval?
| `- error: cannot find type 'DispatchTimeInterval' in scope
33 |
34 | // MARK: Initialization
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:37:19: error: cannot find type 'DispatchTimeInterval' in scope
35 |
36 | init(
37 | duration: DispatchTimeInterval,
| `- error: cannot find type 'DispatchTimeInterval' in scope
38 | multiplier: Double = 2.0,
39 | jitterFactor: Double = 0.1,
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:40:22: error: cannot find type 'DispatchTimeInterval' in scope
38 | multiplier: Double = 2.0,
39 | jitterFactor: Double = 0.1,
40 | maxInterval: DispatchTimeInterval? = .seconds(60)
| `- error: cannot find type 'DispatchTimeInterval' in scope
41 | ) {
42 | self.duration = duration
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:68:57: error: cannot convert value of type 'String' to expected argument type 'Double'
66 | let jitterRange = base * jitterFactor
67 | let jittered = Double.random(
68 | in: max(0, base - jitterRange) ... min(base + jitterRange, Double(maxDelayNanos))
| `- error: cannot convert value of type 'String' to expected argument type 'Double'
69 | )
70 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:68:29: error: cannot convert value of type 'Duration' to expected argument type 'Double'
66 | let jitterRange = base * jitterFactor
67 | let jittered = Double.random(
68 | in: max(0, base - jitterRange) ... min(base + jitterRange, Double(maxDelayNanos))
| `- error: cannot convert value of type 'Duration' to expected argument type 'Double'
69 | )
70 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/FibonacciDelayStrategy.swift:20:19: error: cannot find type 'DispatchTimeInterval' in scope
18 | /// Each retry multiplies this value by
19 | /// the corresponding Fibonacci number.
20 | let duration: DispatchTimeInterval
| `- error: cannot find type 'DispatchTimeInterval' in scope
21 |
22 | // MARK: - IRetryDelayStrategy
[7/20] Compiling Typhoon RetryIterator.swift
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:20:50: error: cannot find type 'DispatchTimeInterval' in scope
18 | /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
19 | /// ``constant(retry:duration:)`` with Swift's `Duration` type instead.
20 | case constant(retry: UInt, dispatchDuration: DispatchTimeInterval)
| `- error: cannot find type 'DispatchTimeInterval' in scope
21 |
22 | /// A retry strategy with a linearly increasing delay.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:30:48: error: cannot find type 'DispatchTimeInterval' in scope
28 | /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
29 | /// ``linear(retry:duration:)`` with Swift's `Duration` type instead.
30 | case linear(retry: UInt, dispatchDuration: DispatchTimeInterval)
| `- error: cannot find type 'DispatchTimeInterval' in scope
31 |
32 | /// A retry strategy with a Fibonacci-based delay progression.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:40:51: error: cannot find type 'DispatchTimeInterval' in scope
38 | /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
39 | /// ``fibonacci(retry:duration:)`` with Swift's `Duration` type instead.
40 | case fibonacci(retry: UInt, dispatchDuration: DispatchTimeInterval)
| `- error: cannot find type 'DispatchTimeInterval' in scope
41 |
42 | /// A retry strategy with exponential increase in duration between retries and added jitter.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:57:22: error: cannot find type 'DispatchTimeInterval' in scope
55 | retry: UInt,
56 | jitterFactor: Double = 0.1,
57 | maxInterval: DispatchTimeInterval? = .seconds(60),
| `- error: cannot find type 'DispatchTimeInterval' in scope
58 | multiplier: Double = 2,
59 | dispatchDuration: DispatchTimeInterval
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:59:27: error: cannot find type 'DispatchTimeInterval' in scope
57 | maxInterval: DispatchTimeInterval? = .seconds(60),
58 | multiplier: Double = 2,
59 | dispatchDuration: DispatchTimeInterval
| `- error: cannot find type 'DispatchTimeInterval' in scope
60 | )
61 |
[8/20] Compiling Typhoon RetrySequence.swift
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:20:50: error: cannot find type 'DispatchTimeInterval' in scope
18 | /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
19 | /// ``constant(retry:duration:)`` with Swift's `Duration` type instead.
20 | case constant(retry: UInt, dispatchDuration: DispatchTimeInterval)
| `- error: cannot find type 'DispatchTimeInterval' in scope
21 |
22 | /// A retry strategy with a linearly increasing delay.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:30:48: error: cannot find type 'DispatchTimeInterval' in scope
28 | /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
29 | /// ``linear(retry:duration:)`` with Swift's `Duration` type instead.
30 | case linear(retry: UInt, dispatchDuration: DispatchTimeInterval)
| `- error: cannot find type 'DispatchTimeInterval' in scope
31 |
32 | /// A retry strategy with a Fibonacci-based delay progression.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:40:51: error: cannot find type 'DispatchTimeInterval' in scope
38 | /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
39 | /// ``fibonacci(retry:duration:)`` with Swift's `Duration` type instead.
40 | case fibonacci(retry: UInt, dispatchDuration: DispatchTimeInterval)
| `- error: cannot find type 'DispatchTimeInterval' in scope
41 |
42 | /// A retry strategy with exponential increase in duration between retries and added jitter.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:57:22: error: cannot find type 'DispatchTimeInterval' in scope
55 | retry: UInt,
56 | jitterFactor: Double = 0.1,
57 | maxInterval: DispatchTimeInterval? = .seconds(60),
| `- error: cannot find type 'DispatchTimeInterval' in scope
58 | multiplier: Double = 2,
59 | dispatchDuration: DispatchTimeInterval
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:59:27: error: cannot find type 'DispatchTimeInterval' in scope
57 | maxInterval: DispatchTimeInterval? = .seconds(60),
58 | multiplier: Double = 2,
59 | dispatchDuration: DispatchTimeInterval
| `- error: cannot find type 'DispatchTimeInterval' in scope
60 | )
61 |
[9/20] Compiling Typhoon RetryPolicyService.swift
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetryPolicyService/RetryPolicyService.swift:60:35: error: cannot find type 'DispatchTimeInterval' in scope
58 |
59 | /// Optional maximum total duration allowed for all retry attempts.
60 | private let maxTotalDuration: DispatchTimeInterval?
| `- error: cannot find type 'DispatchTimeInterval' in scope
61 |
62 | /// An optional logger used to record retry attempts and related events.
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetryPolicyService/RetryPolicyService.swift:76:27: error: cannot find type 'DispatchTimeInterval' in scope
74 | public init(
75 | strategy: RetryPolicyStrategy,
76 | maxTotalDuration: DispatchTimeInterval? = nil,
| `- error: cannot find type 'DispatchTimeInterval' in scope
77 | logger: ILogger? = nil
78 | ) {
[10/20] Compiling Typhoon IRetryDelayStrategy.swift
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetryPolicyService/RetryPolicyService.swift:60:35: error: cannot find type 'DispatchTimeInterval' in scope
58 |
59 | /// Optional maximum total duration allowed for all retry attempts.
60 | private let maxTotalDuration: DispatchTimeInterval?
| `- error: cannot find type 'DispatchTimeInterval' in scope
61 |
62 | /// An optional logger used to record retry attempts and related events.
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetryPolicyService/RetryPolicyService.swift:76:27: error: cannot find type 'DispatchTimeInterval' in scope
74 | public init(
75 | strategy: RetryPolicyStrategy,
76 | maxTotalDuration: DispatchTimeInterval? = nil,
| `- error: cannot find type 'DispatchTimeInterval' in scope
77 | logger: ILogger? = nil
78 | ) {
error: emit-module command failed with exit code 1 (use -v to see invocation)
[11/20] Emitting module Typhoon
/host/spi-builder-workspace/Sources/Typhoon/Classes/Extensions/DispatchTimeInterval+Double.swift:8:11: error: cannot find type 'DispatchTimeInterval' in scope
6 | import Foundation
7 |
8 | extension DispatchTimeInterval {
| `- error: cannot find type 'DispatchTimeInterval' in scope
9 | /// Converts a `DispatchTimeInterval` value into nanoseconds represented as `UInt64`.
10 | ///
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetryPolicyService/RetryPolicyService.swift:60:35: error: cannot find type 'DispatchTimeInterval' in scope
58 |
59 | /// Optional maximum total duration allowed for all retry attempts.
60 | private let maxTotalDuration: DispatchTimeInterval?
| `- error: cannot find type 'DispatchTimeInterval' in scope
61 |
62 | /// An optional logger used to record retry attempts and related events.
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetryPolicyService/RetryPolicyService.swift:76:27: error: cannot find type 'DispatchTimeInterval' in scope
74 | public init(
75 | strategy: RetryPolicyStrategy,
76 | maxTotalDuration: DispatchTimeInterval? = nil,
| `- error: cannot find type 'DispatchTimeInterval' in scope
77 | logger: ILogger? = nil
78 | ) {
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:20:50: error: cannot find type 'DispatchTimeInterval' in scope
18 | /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
19 | /// ``constant(retry:duration:)`` with Swift's `Duration` type instead.
20 | case constant(retry: UInt, dispatchDuration: DispatchTimeInterval)
| `- error: cannot find type 'DispatchTimeInterval' in scope
21 |
22 | /// A retry strategy with a linearly increasing delay.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:30:48: error: cannot find type 'DispatchTimeInterval' in scope
28 | /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
29 | /// ``linear(retry:duration:)`` with Swift's `Duration` type instead.
30 | case linear(retry: UInt, dispatchDuration: DispatchTimeInterval)
| `- error: cannot find type 'DispatchTimeInterval' in scope
31 |
32 | /// A retry strategy with a Fibonacci-based delay progression.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:40:51: error: cannot find type 'DispatchTimeInterval' in scope
38 | /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
39 | /// ``fibonacci(retry:duration:)`` with Swift's `Duration` type instead.
40 | case fibonacci(retry: UInt, dispatchDuration: DispatchTimeInterval)
| `- error: cannot find type 'DispatchTimeInterval' in scope
41 |
42 | /// A retry strategy with exponential increase in duration between retries and added jitter.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:57:22: error: cannot find type 'DispatchTimeInterval' in scope
55 | retry: UInt,
56 | jitterFactor: Double = 0.1,
57 | maxInterval: DispatchTimeInterval? = .seconds(60),
| `- error: cannot find type 'DispatchTimeInterval' in scope
58 | multiplier: Double = 2,
59 | dispatchDuration: DispatchTimeInterval
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:59:27: error: cannot find type 'DispatchTimeInterval' in scope
57 | maxInterval: DispatchTimeInterval? = .seconds(60),
58 | multiplier: Double = 2,
59 | dispatchDuration: DispatchTimeInterval
| `- error: cannot find type 'DispatchTimeInterval' in scope
60 | )
61 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ConstantDelayStrategy.swift:14:19: error: cannot find type 'DispatchTimeInterval' in scope
12 | ///
13 | /// This value does not change based on the retry index.
14 | let duration: DispatchTimeInterval
| `- error: cannot find type 'DispatchTimeInterval' in scope
15 |
16 | // MARK: - IRetryDelayStrategy
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:14:19: error: cannot find type 'DispatchTimeInterval' in scope
12 | ///
13 | /// This value acts as the base interval for exponential backoff.
14 | let duration: DispatchTimeInterval
| `- error: cannot find type 'DispatchTimeInterval' in scope
15 |
16 | /// The exponential growth multiplier.
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:32:22: error: cannot find type 'DispatchTimeInterval' in scope
30 | ///
31 | /// If specified, the computed delay will never exceed this value.
32 | let maxInterval: DispatchTimeInterval?
| `- error: cannot find type 'DispatchTimeInterval' in scope
33 |
34 | // MARK: Initialization
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:37:19: error: cannot find type 'DispatchTimeInterval' in scope
35 |
36 | init(
37 | duration: DispatchTimeInterval,
| `- error: cannot find type 'DispatchTimeInterval' in scope
38 | multiplier: Double = 2.0,
39 | jitterFactor: Double = 0.1,
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/ExponentialDelayStrategy.swift:40:22: error: cannot find type 'DispatchTimeInterval' in scope
38 | multiplier: Double = 2.0,
39 | jitterFactor: Double = 0.1,
40 | maxInterval: DispatchTimeInterval? = .seconds(60)
| `- error: cannot find type 'DispatchTimeInterval' in scope
41 | ) {
42 | self.duration = duration
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/FibonacciDelayStrategy.swift:20:19: error: cannot find type 'DispatchTimeInterval' in scope
18 | /// Each retry multiplies this value by
19 | /// the corresponding Fibonacci number.
20 | let duration: DispatchTimeInterval
| `- error: cannot find type 'DispatchTimeInterval' in scope
21 |
22 | // MARK: - IRetryDelayStrategy
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/LinearDelayStrategy.swift:17:19: error: cannot find type 'DispatchTimeInterval' in scope
15 |
16 | /// The base delay interval.
17 | let duration: DispatchTimeInterval
| `- error: cannot find type 'DispatchTimeInterval' in scope
18 |
19 | // MARK: IRetryDelayStrategy
[12/20] Compiling Typhoon ILogger.swift
[13/20] Compiling Typhoon RetryPolicyError.swift
[14/20] Compiling Typhoon RetryResult.swift
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:20:50: error: cannot find type 'DispatchTimeInterval' in scope
18 | /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
19 | /// ``constant(retry:duration:)`` with Swift's `Duration` type instead.
20 | case constant(retry: UInt, dispatchDuration: DispatchTimeInterval)
| `- error: cannot find type 'DispatchTimeInterval' in scope
21 |
22 | /// A retry strategy with a linearly increasing delay.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:30:48: error: cannot find type 'DispatchTimeInterval' in scope
28 | /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
29 | /// ``linear(retry:duration:)`` with Swift's `Duration` type instead.
30 | case linear(retry: UInt, dispatchDuration: DispatchTimeInterval)
| `- error: cannot find type 'DispatchTimeInterval' in scope
31 |
32 | /// A retry strategy with a Fibonacci-based delay progression.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:40:51: error: cannot find type 'DispatchTimeInterval' in scope
38 | /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
39 | /// ``fibonacci(retry:duration:)`` with Swift's `Duration` type instead.
40 | case fibonacci(retry: UInt, dispatchDuration: DispatchTimeInterval)
| `- error: cannot find type 'DispatchTimeInterval' in scope
41 |
42 | /// A retry strategy with exponential increase in duration between retries and added jitter.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:57:22: error: cannot find type 'DispatchTimeInterval' in scope
55 | retry: UInt,
56 | jitterFactor: Double = 0.1,
57 | maxInterval: DispatchTimeInterval? = .seconds(60),
| `- error: cannot find type 'DispatchTimeInterval' in scope
58 | multiplier: Double = 2,
59 | dispatchDuration: DispatchTimeInterval
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:59:27: error: cannot find type 'DispatchTimeInterval' in scope
57 | maxInterval: DispatchTimeInterval? = .seconds(60),
58 | multiplier: Double = 2,
59 | dispatchDuration: DispatchTimeInterval
| `- error: cannot find type 'DispatchTimeInterval' in scope
60 | )
61 |
[15/20] Compiling Typhoon IRetryPolicyService.swift
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:20:50: error: cannot find type 'DispatchTimeInterval' in scope
18 | /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
19 | /// ``constant(retry:duration:)`` with Swift's `Duration` type instead.
20 | case constant(retry: UInt, dispatchDuration: DispatchTimeInterval)
| `- error: cannot find type 'DispatchTimeInterval' in scope
21 |
22 | /// A retry strategy with a linearly increasing delay.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:30:48: error: cannot find type 'DispatchTimeInterval' in scope
28 | /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
29 | /// ``linear(retry:duration:)`` with Swift's `Duration` type instead.
30 | case linear(retry: UInt, dispatchDuration: DispatchTimeInterval)
| `- error: cannot find type 'DispatchTimeInterval' in scope
31 |
32 | /// A retry strategy with a Fibonacci-based delay progression.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:40:51: error: cannot find type 'DispatchTimeInterval' in scope
38 | /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
39 | /// ``fibonacci(retry:duration:)`` with Swift's `Duration` type instead.
40 | case fibonacci(retry: UInt, dispatchDuration: DispatchTimeInterval)
| `- error: cannot find type 'DispatchTimeInterval' in scope
41 |
42 | /// A retry strategy with exponential increase in duration between retries and added jitter.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:57:22: error: cannot find type 'DispatchTimeInterval' in scope
55 | retry: UInt,
56 | jitterFactor: Double = 0.1,
57 | maxInterval: DispatchTimeInterval? = .seconds(60),
| `- error: cannot find type 'DispatchTimeInterval' in scope
58 | multiplier: Double = 2,
59 | dispatchDuration: DispatchTimeInterval
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:59:27: error: cannot find type 'DispatchTimeInterval' in scope
57 | maxInterval: DispatchTimeInterval? = .seconds(60),
58 | multiplier: Double = 2,
59 | dispatchDuration: DispatchTimeInterval
| `- error: cannot find type 'DispatchTimeInterval' in scope
60 | )
61 |
[16/20] Compiling Typhoon DispatchTimeInterval+Double.swift
/host/spi-builder-workspace/Sources/Typhoon/Classes/Extensions/DispatchTimeInterval+Double.swift:8:11: error: cannot find type 'DispatchTimeInterval' in scope
6 | import Foundation
7 |
8 | extension DispatchTimeInterval {
| `- error: cannot find type 'DispatchTimeInterval' in scope
9 | /// Converts a `DispatchTimeInterval` value into nanoseconds represented as `UInt64`.
10 | ///
/host/spi-builder-workspace/Sources/Typhoon/Classes/Extensions/DispatchTimeInterval+Double.swift:31:47: error: cannot find type 'DispatchTimeInterval' in scope
29 |
30 | @available(iOS 16, macOS 13, tvOS 16, watchOS 9, *)
31 | static func from(_ duration: Duration) -> DispatchTimeInterval {
| `- error: cannot find type 'DispatchTimeInterval' in scope
32 | let seconds = duration.components.seconds
33 | let nanos = duration.components.attoseconds / 1_000_000_000
[17/20] Compiling Typhoon Logger+ILogger.swift
/host/spi-builder-workspace/Sources/Typhoon/Classes/Extensions/DispatchTimeInterval+Double.swift:8:11: error: cannot find type 'DispatchTimeInterval' in scope
6 | import Foundation
7 |
8 | extension DispatchTimeInterval {
| `- error: cannot find type 'DispatchTimeInterval' in scope
9 | /// Converts a `DispatchTimeInterval` value into nanoseconds represented as `UInt64`.
10 | ///
/host/spi-builder-workspace/Sources/Typhoon/Classes/Extensions/DispatchTimeInterval+Double.swift:31:47: error: cannot find type 'DispatchTimeInterval' in scope
29 |
30 | @available(iOS 16, macOS 13, tvOS 16, watchOS 9, *)
31 | static func from(_ duration: Duration) -> DispatchTimeInterval {
| `- error: cannot find type 'DispatchTimeInterval' in scope
32 | let seconds = duration.components.seconds
33 | let nanos = duration.components.attoseconds / 1_000_000_000
[18/20] Compiling Typhoon URLSession+RetryPolicy.swift
/host/spi-builder-workspace/Sources/Typhoon/Classes/Extensions/DispatchTimeInterval+Double.swift:8:11: error: cannot find type 'DispatchTimeInterval' in scope
6 | import Foundation
7 |
8 | extension DispatchTimeInterval {
| `- error: cannot find type 'DispatchTimeInterval' in scope
9 | /// Converts a `DispatchTimeInterval` value into nanoseconds represented as `UInt64`.
10 | ///
/host/spi-builder-workspace/Sources/Typhoon/Classes/Extensions/DispatchTimeInterval+Double.swift:31:47: error: cannot find type 'DispatchTimeInterval' in scope
29 |
30 | @available(iOS 16, macOS 13, tvOS 16, watchOS 9, *)
31 | static func from(_ duration: Duration) -> DispatchTimeInterval {
| `- error: cannot find type 'DispatchTimeInterval' in scope
32 | let seconds = duration.components.seconds
33 | let nanos = duration.components.attoseconds / 1_000_000_000
[19/20] Compiling Typhoon LinearDelayStrategy.swift
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/LinearDelayStrategy.swift:17:19: error: cannot find type 'DispatchTimeInterval' in scope
15 |
16 | /// The base delay interval.
17 | let duration: DispatchTimeInterval
| `- error: cannot find type 'DispatchTimeInterval' in scope
18 |
19 | // MARK: IRetryDelayStrategy
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:20:50: error: cannot find type 'DispatchTimeInterval' in scope
18 | /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
19 | /// ``constant(retry:duration:)`` with Swift's `Duration` type instead.
20 | case constant(retry: UInt, dispatchDuration: DispatchTimeInterval)
| `- error: cannot find type 'DispatchTimeInterval' in scope
21 |
22 | /// A retry strategy with a linearly increasing delay.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:30:48: error: cannot find type 'DispatchTimeInterval' in scope
28 | /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
29 | /// ``linear(retry:duration:)`` with Swift's `Duration` type instead.
30 | case linear(retry: UInt, dispatchDuration: DispatchTimeInterval)
| `- error: cannot find type 'DispatchTimeInterval' in scope
31 |
32 | /// A retry strategy with a Fibonacci-based delay progression.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:40:51: error: cannot find type 'DispatchTimeInterval' in scope
38 | /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
39 | /// ``fibonacci(retry:duration:)`` with Swift's `Duration` type instead.
40 | case fibonacci(retry: UInt, dispatchDuration: DispatchTimeInterval)
| `- error: cannot find type 'DispatchTimeInterval' in scope
41 |
42 | /// A retry strategy with exponential increase in duration between retries and added jitter.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:57:22: error: cannot find type 'DispatchTimeInterval' in scope
55 | retry: UInt,
56 | jitterFactor: Double = 0.1,
57 | maxInterval: DispatchTimeInterval? = .seconds(60),
| `- error: cannot find type 'DispatchTimeInterval' in scope
58 | multiplier: Double = 2,
59 | dispatchDuration: DispatchTimeInterval
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:59:27: error: cannot find type 'DispatchTimeInterval' in scope
57 | maxInterval: DispatchTimeInterval? = .seconds(60),
58 | multiplier: Double = 2,
59 | dispatchDuration: DispatchTimeInterval
| `- error: cannot find type 'DispatchTimeInterval' in scope
60 | )
61 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:72:35: error: '_' can only appear in a pattern or on the left side of an assignment
70 | public var retries: UInt {
71 | switch self {
72 | case let .constant(retry, _):
| `- error: '_' can only appear in a pattern or on the left side of an assignment
73 | retry
74 | case let .exponential(retry, _, _, _, _):
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:94:51: error: cannot find 'DispatchTimeInterval' in scope
92 | /// - duration: The initial duration between retries.
93 | static func constant(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
94 | .constant(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
| `- error: cannot find 'DispatchTimeInterval' in scope
95 | }
96 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:94:18: error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
92 | /// - duration: The initial duration between retries.
93 | static func constant(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
94 | .constant(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
| `- error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
95 | }
96 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:107:49: error: cannot find 'DispatchTimeInterval' in scope
105 | /// the linear backoff interval.
106 | static func linear(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
107 | .linear(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
| `- error: cannot find 'DispatchTimeInterval' in scope
108 | }
109 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:107:16: error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
105 | /// the linear backoff interval.
106 | static func linear(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
107 | .linear(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
| `- error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
108 | }
109 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:120:52: error: cannot find 'DispatchTimeInterval' in scope
118 | /// the Fibonacci backoff interval.
119 | static func fibonacci(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
120 | .fibonacci(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
| `- error: cannot find 'DispatchTimeInterval' in scope
121 | }
122 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:120:19: error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
118 | /// the Fibonacci backoff interval.
119 | static func fibonacci(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
120 | .fibonacci(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
| `- error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
121 | }
122 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:141:44: error: cannot find 'DispatchTimeInterval' in scope
139 | retry: retry,
140 | jitterFactor: jitterFactor,
141 | maxInterval: maxInterval.map { DispatchTimeInterval.from($0) },
| `- error: cannot find 'DispatchTimeInterval' in scope
142 | multiplier: multiplier,
143 | dispatchDuration: DispatchTimeInterval.from(duration)
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:143:31: error: cannot find 'DispatchTimeInterval' in scope
141 | maxInterval: maxInterval.map { DispatchTimeInterval.from($0) },
142 | multiplier: multiplier,
143 | dispatchDuration: DispatchTimeInterval.from(duration)
| `- error: cannot find 'DispatchTimeInterval' in scope
144 | )
145 | }
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:138:21: error: incorrect argument label in call (have 'retry:jitterFactor:maxInterval:multiplier:dispatchDuration:', expected 'retry:jitterFactor:maxInterval:multiplier:duration:')
136 | duration: Duration
137 | ) -> RetryPolicyStrategy {
138 | .exponential(
| `- error: incorrect argument label in call (have 'retry:jitterFactor:maxInterval:multiplier:dispatchDuration:', expected 'retry:jitterFactor:maxInterval:multiplier:duration:')
139 | retry: retry,
140 | jitterFactor: jitterFactor,
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:153:31: error: '_' can only appear in a pattern or on the left side of an assignment
151 | var strategy: IRetryDelayStrategy {
152 | switch self {
153 | case let .exponential(_, jitterFactor, maxInterval, multiplier, duration):
| `- error: '_' can only appear in a pattern or on the left side of an assignment
154 | ExponentialDelayStrategy(
155 | duration: duration,
[20/20] Compiling Typhoon RetryPolicyStrategy.swift
/host/spi-builder-workspace/Sources/Typhoon/Classes/RetrySequence/Strategies/LinearDelayStrategy.swift:17:19: error: cannot find type 'DispatchTimeInterval' in scope
15 |
16 | /// The base delay interval.
17 | let duration: DispatchTimeInterval
| `- error: cannot find type 'DispatchTimeInterval' in scope
18 |
19 | // MARK: IRetryDelayStrategy
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:20:50: error: cannot find type 'DispatchTimeInterval' in scope
18 | /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
19 | /// ``constant(retry:duration:)`` with Swift's `Duration` type instead.
20 | case constant(retry: UInt, dispatchDuration: DispatchTimeInterval)
| `- error: cannot find type 'DispatchTimeInterval' in scope
21 |
22 | /// A retry strategy with a linearly increasing delay.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:30:48: error: cannot find type 'DispatchTimeInterval' in scope
28 | /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
29 | /// ``linear(retry:duration:)`` with Swift's `Duration` type instead.
30 | case linear(retry: UInt, dispatchDuration: DispatchTimeInterval)
| `- error: cannot find type 'DispatchTimeInterval' in scope
31 |
32 | /// A retry strategy with a Fibonacci-based delay progression.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:40:51: error: cannot find type 'DispatchTimeInterval' in scope
38 | /// - Note: On iOS 16+, macOS 13+, tvOS 16+, watchOS 9+, prefer using
39 | /// ``fibonacci(retry:duration:)`` with Swift's `Duration` type instead.
40 | case fibonacci(retry: UInt, dispatchDuration: DispatchTimeInterval)
| `- error: cannot find type 'DispatchTimeInterval' in scope
41 |
42 | /// A retry strategy with exponential increase in duration between retries and added jitter.
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:57:22: error: cannot find type 'DispatchTimeInterval' in scope
55 | retry: UInt,
56 | jitterFactor: Double = 0.1,
57 | maxInterval: DispatchTimeInterval? = .seconds(60),
| `- error: cannot find type 'DispatchTimeInterval' in scope
58 | multiplier: Double = 2,
59 | dispatchDuration: DispatchTimeInterval
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:59:27: error: cannot find type 'DispatchTimeInterval' in scope
57 | maxInterval: DispatchTimeInterval? = .seconds(60),
58 | multiplier: Double = 2,
59 | dispatchDuration: DispatchTimeInterval
| `- error: cannot find type 'DispatchTimeInterval' in scope
60 | )
61 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:72:35: error: '_' can only appear in a pattern or on the left side of an assignment
70 | public var retries: UInt {
71 | switch self {
72 | case let .constant(retry, _):
| `- error: '_' can only appear in a pattern or on the left side of an assignment
73 | retry
74 | case let .exponential(retry, _, _, _, _):
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:94:51: error: cannot find 'DispatchTimeInterval' in scope
92 | /// - duration: The initial duration between retries.
93 | static func constant(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
94 | .constant(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
| `- error: cannot find 'DispatchTimeInterval' in scope
95 | }
96 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:94:18: error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
92 | /// - duration: The initial duration between retries.
93 | static func constant(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
94 | .constant(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
| `- error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
95 | }
96 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:107:49: error: cannot find 'DispatchTimeInterval' in scope
105 | /// the linear backoff interval.
106 | static func linear(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
107 | .linear(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
| `- error: cannot find 'DispatchTimeInterval' in scope
108 | }
109 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:107:16: error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
105 | /// the linear backoff interval.
106 | static func linear(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
107 | .linear(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
| `- error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
108 | }
109 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:120:52: error: cannot find 'DispatchTimeInterval' in scope
118 | /// the Fibonacci backoff interval.
119 | static func fibonacci(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
120 | .fibonacci(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
| `- error: cannot find 'DispatchTimeInterval' in scope
121 | }
122 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:120:19: error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
118 | /// the Fibonacci backoff interval.
119 | static func fibonacci(retry: UInt, duration: Duration) -> RetryPolicyStrategy {
120 | .fibonacci(retry: retry, dispatchDuration: DispatchTimeInterval.from(duration))
| `- error: incorrect argument label in call (have 'retry:dispatchDuration:', expected 'retry:duration:')
121 | }
122 |
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:141:44: error: cannot find 'DispatchTimeInterval' in scope
139 | retry: retry,
140 | jitterFactor: jitterFactor,
141 | maxInterval: maxInterval.map { DispatchTimeInterval.from($0) },
| `- error: cannot find 'DispatchTimeInterval' in scope
142 | multiplier: multiplier,
143 | dispatchDuration: DispatchTimeInterval.from(duration)
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:143:31: error: cannot find 'DispatchTimeInterval' in scope
141 | maxInterval: maxInterval.map { DispatchTimeInterval.from($0) },
142 | multiplier: multiplier,
143 | dispatchDuration: DispatchTimeInterval.from(duration)
| `- error: cannot find 'DispatchTimeInterval' in scope
144 | )
145 | }
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:138:21: error: incorrect argument label in call (have 'retry:jitterFactor:maxInterval:multiplier:dispatchDuration:', expected 'retry:jitterFactor:maxInterval:multiplier:duration:')
136 | duration: Duration
137 | ) -> RetryPolicyStrategy {
138 | .exponential(
| `- error: incorrect argument label in call (have 'retry:jitterFactor:maxInterval:multiplier:dispatchDuration:', expected 'retry:jitterFactor:maxInterval:multiplier:duration:')
139 | retry: retry,
140 | jitterFactor: jitterFactor,
/host/spi-builder-workspace/Sources/Typhoon/Classes/Strategy/RetryPolicyStrategy.swift:153:31: error: '_' can only appear in a pattern or on the left side of an assignment
151 | var strategy: IRetryDelayStrategy {
152 | switch self {
153 | case let .exponential(_, jitterFactor, maxInterval, multiplier, duration):
| `- error: '_' can only appear in a pattern or on the left side of an assignment
154 | ExponentialDelayStrategy(
155 | duration: duration,
BUILD FAILURE 6.2 wasm