Build Information
Successful build of swift-retry, reference main (df9d7b), with Swift 6.3 for Wasm on 14 Apr 2026 16:14:31 UTC.
Swift 6 data race errors: 0
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>&1Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/fumoboy007/swift-retry.git
Reference: main
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/fumoboy007/swift-retry
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at df9d7b1 Log the full error instead of only the error type.
Cloned https://github.com/fumoboy007/swift-retry.git
Revision (git rev-parse @):
df9d7b185d2e433147ec0083a73c257e665eea0d
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/fumoboy007/swift-retry.git at main
========================================
Build
========================================
Selected platform: wasm
Swift version: 6.3
Building package at path: $PWD
https://github.com/fumoboy007/swift-retry.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
Fetching https://github.com/apple/swift-docc-plugin.git
Fetching https://github.com/apple/swift-log.git
[1/2271] Fetching swift-docc-plugin
[456/8840] Fetching swift-docc-plugin, swift-log
Fetched https://github.com/apple/swift-log.git from cache (0.57s)
Fetched https://github.com/apple/swift-docc-plugin.git from cache (0.57s)
Computing version for https://github.com/apple/swift-docc-plugin.git
Computed https://github.com/apple/swift-docc-plugin.git at 1.4.6 (3.01s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3672] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.40s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.94s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.12.0 (0.48s)
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.12.0
Creating working copy for https://github.com/apple/swift-docc-plugin.git
Working copy of https://github.com/apple/swift-docc-plugin.git resolved at 1.4.6
[1/1] Compiling plugin Swift-DocC Preview
[2/2] Compiling plugin Swift-DocC
Building for debugging...
[2/43] Write sources
[13/43] Write swift-version-24593BA9C3E375BF.txt
[15/49] Compiling Logging MetadataProvider.swift
[16/49] Compiling Logging LogHandler.swift
[17/49] Compiling Logging Locks.swift
[18/49] Compiling Logging LogEvent.swift
[19/49] Emitting module Logging
[20/49] Compiling Logging Logging.swift
[21/50] Wrapping AST for Logging for debugging
[23/65] Compiling Retry Error+OriginalError.swift
[24/65] Compiling Retry NotRetryable.swift
[25/65] Compiling Retry Retryable.swift
/host/spi-builder-workspace/Sources/Retry/RetryableRequest/RetryableRequest+SafeRetry.swift:145:8: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
143 | backoff: Backoff<ClockType> = .default(baseDelay: .seconds(1), maxDelay: .seconds(20)),
144 | logger: Logging.Logger? = nil,
145 | @_inheritActorContext @_implicitSelfCapture operation: (Self) async throws -> ReturnType,
| `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
146 | recoverFromFailure: @escaping @Sendable (any Error) -> RecoveryAction<ClockType> = { _ in .retry }
147 | ) async throws -> ReturnType where ClockType.Duration == Duration {
/host/spi-builder-workspace/Sources/Retry/RetryableRequest/RetryableRequest+SafeRetry.swift:142:26: warning: cannot use default expression for inference of 'ClockType' because it is inferrable from parameters #1, #2, #5; this will be an error in a future Swift language mode
140 | public func retry<ClockType, ReturnType>(
141 | maxAttempts: Int? = 3,
142 | clock: ClockType = ContinuousClock(),
| `- warning: cannot use default expression for inference of 'ClockType' because it is inferrable from parameters #1, #2, #5; this will be an error in a future Swift language mode
143 | backoff: Backoff<ClockType> = .default(baseDelay: .seconds(1), maxDelay: .seconds(20)),
144 | logger: Logging.Logger? = nil,
/host/spi-builder-workspace/Sources/Retry/RetryableRequest/RetryableRequest+SafeRetry.swift:185:8: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
183 | backoff: Backoff<ClockType>,
184 | logger: Logging.Logger? = nil,
185 | @_inheritActorContext @_implicitSelfCapture operation: (Self) async throws -> ReturnType,
| `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
186 | recoverFromFailure: @escaping @Sendable (any Error) -> RecoveryAction<ClockType> = { _ in .retry }
187 | ) async throws -> ReturnType {
/host/spi-builder-workspace/Sources/Retry/RetryableRequest/RetryableRequest+SafeRetry.swift:217:8: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
215 | public func retry<ClockType, ReturnType>(
216 | with configuration: RetryConfiguration<ClockType>,
217 | @_inheritActorContext @_implicitSelfCapture operation: (Self) async throws -> ReturnType
| `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
218 | ) async throws -> ReturnType {
219 | precondition(isIdempotent, "The request is not idempotent: `\(self)`.")
[26/65] Compiling Retry RetryableRequest+SafeRetry.swift
/host/spi-builder-workspace/Sources/Retry/RetryableRequest/RetryableRequest+SafeRetry.swift:145:8: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
143 | backoff: Backoff<ClockType> = .default(baseDelay: .seconds(1), maxDelay: .seconds(20)),
144 | logger: Logging.Logger? = nil,
145 | @_inheritActorContext @_implicitSelfCapture operation: (Self) async throws -> ReturnType,
| `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
146 | recoverFromFailure: @escaping @Sendable (any Error) -> RecoveryAction<ClockType> = { _ in .retry }
147 | ) async throws -> ReturnType where ClockType.Duration == Duration {
/host/spi-builder-workspace/Sources/Retry/RetryableRequest/RetryableRequest+SafeRetry.swift:142:26: warning: cannot use default expression for inference of 'ClockType' because it is inferrable from parameters #1, #2, #5; this will be an error in a future Swift language mode
140 | public func retry<ClockType, ReturnType>(
141 | maxAttempts: Int? = 3,
142 | clock: ClockType = ContinuousClock(),
| `- warning: cannot use default expression for inference of 'ClockType' because it is inferrable from parameters #1, #2, #5; this will be an error in a future Swift language mode
143 | backoff: Backoff<ClockType> = .default(baseDelay: .seconds(1), maxDelay: .seconds(20)),
144 | logger: Logging.Logger? = nil,
/host/spi-builder-workspace/Sources/Retry/RetryableRequest/RetryableRequest+SafeRetry.swift:185:8: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
183 | backoff: Backoff<ClockType>,
184 | logger: Logging.Logger? = nil,
185 | @_inheritActorContext @_implicitSelfCapture operation: (Self) async throws -> ReturnType,
| `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
186 | recoverFromFailure: @escaping @Sendable (any Error) -> RecoveryAction<ClockType> = { _ in .retry }
187 | ) async throws -> ReturnType {
/host/spi-builder-workspace/Sources/Retry/RetryableRequest/RetryableRequest+SafeRetry.swift:217:8: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
215 | public func retry<ClockType, ReturnType>(
216 | with configuration: RetryConfiguration<ClockType>,
217 | @_inheritActorContext @_implicitSelfCapture operation: (Self) async throws -> ReturnType
| `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
218 | ) async throws -> ReturnType {
219 | precondition(isIdempotent, "The request is not idempotent: `\(self)`.")
[27/66] Compiling Retry Backoff.swift
[28/66] Compiling Retry BackoffAlgorithm.swift
[29/66] Compiling Retry Logger+RetryMetadataKey.swift
[30/66] Compiling Retry RecoveryAction.swift
[31/66] Compiling Retry RetryableRequest.swift
/host/spi-builder-workspace/Sources/Retry/RetryableRequest/RetryableRequest.swift:63:8: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
61 | func unsafeRetryIgnoringIdempotency<ClockType, ReturnType>(
62 | with configuration: RetryConfiguration<ClockType>,
63 | @_inheritActorContext @_implicitSelfCapture operation: (Self) async throws -> ReturnType
| `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
64 | ) async throws -> ReturnType
65 | }
[32/66] Emitting module Retry
/host/spi-builder-workspace/Sources/Retry/Retry.swift:174:5: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
172 | backoff: Backoff<ContinuousClock> = .default(baseDelay: .seconds(1), maxDelay: .seconds(20)),
173 | logger: Logging.Logger? = nil,
174 | @_inheritActorContext @_implicitSelfCapture operation: () async throws -> ReturnType,
| `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
175 | recoverFromFailure: @escaping @Sendable (any Error) -> RecoveryAction<ContinuousClock> = { _ in .retry }
176 | ) async throws -> ReturnType {
/host/spi-builder-workspace/Sources/Retry/Retry.swift:210:5: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
208 | backoff: Backoff<ClockType> = .default(baseDelay: .seconds(1), maxDelay: .seconds(20)),
209 | logger: Logging.Logger? = nil,
210 | @_inheritActorContext @_implicitSelfCapture operation: () async throws -> ReturnType,
| `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
211 | recoverFromFailure: @escaping @Sendable (any Error) -> RecoveryAction<ClockType> = { _ in .retry }
212 | ) async throws -> ReturnType where ClockType.Duration == Duration {
/host/spi-builder-workspace/Sources/Retry/Retry.swift:248:5: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
246 | backoff: Backoff<ClockType>,
247 | logger: Logging.Logger? = nil,
248 | @_inheritActorContext @_implicitSelfCapture operation: () async throws -> ReturnType,
| `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
249 | recoverFromFailure: @escaping @Sendable (any Error) -> RecoveryAction<ClockType> = { _ in .retry }
250 | ) async throws -> ReturnType {
/host/spi-builder-workspace/Sources/Retry/Retry.swift:279:5: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
277 | public func retry<ClockType, ReturnType>(
278 | with configuration: RetryConfiguration<ClockType>,
279 | @_inheritActorContext @_implicitSelfCapture operation: () async throws -> ReturnType
| `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
280 | ) async throws -> ReturnType {
281 | let maxAttempts = configuration.maxAttempts
/host/spi-builder-workspace/Sources/Retry/RetryConfiguration.swift:140:26: warning: cannot use default expression for inference of 'ClockType' because it is inferrable from parameters #1, #2, #4; this will be an error in a future Swift language mode
138 | public init(
139 | maxAttempts: Int? = 3,
140 | clock: ClockType = ContinuousClock(),
| `- warning: cannot use default expression for inference of 'ClockType' because it is inferrable from parameters #1, #2, #4; this will be an error in a future Swift language mode
141 | backoff: Backoff<ClockType> = .default(baseDelay: .seconds(1), maxDelay: .seconds(20)),
142 | logger: Logging.Logger? = nil,
/host/spi-builder-workspace/Sources/Retry/RetryableRequest/RetryableRequest+SafeRetry.swift:145:8: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
143 | backoff: Backoff<ClockType> = .default(baseDelay: .seconds(1), maxDelay: .seconds(20)),
144 | logger: Logging.Logger? = nil,
145 | @_inheritActorContext @_implicitSelfCapture operation: (Self) async throws -> ReturnType,
| `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
146 | recoverFromFailure: @escaping @Sendable (any Error) -> RecoveryAction<ClockType> = { _ in .retry }
147 | ) async throws -> ReturnType where ClockType.Duration == Duration {
/host/spi-builder-workspace/Sources/Retry/RetryableRequest/RetryableRequest+SafeRetry.swift:142:26: warning: cannot use default expression for inference of 'ClockType' because it is inferrable from parameters #1, #2, #5; this will be an error in a future Swift language mode
140 | public func retry<ClockType, ReturnType>(
141 | maxAttempts: Int? = 3,
142 | clock: ClockType = ContinuousClock(),
| `- warning: cannot use default expression for inference of 'ClockType' because it is inferrable from parameters #1, #2, #5; this will be an error in a future Swift language mode
143 | backoff: Backoff<ClockType> = .default(baseDelay: .seconds(1), maxDelay: .seconds(20)),
144 | logger: Logging.Logger? = nil,
/host/spi-builder-workspace/Sources/Retry/RetryableRequest/RetryableRequest+SafeRetry.swift:185:8: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
183 | backoff: Backoff<ClockType>,
184 | logger: Logging.Logger? = nil,
185 | @_inheritActorContext @_implicitSelfCapture operation: (Self) async throws -> ReturnType,
| `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
186 | recoverFromFailure: @escaping @Sendable (any Error) -> RecoveryAction<ClockType> = { _ in .retry }
187 | ) async throws -> ReturnType {
/host/spi-builder-workspace/Sources/Retry/RetryableRequest/RetryableRequest+SafeRetry.swift:217:8: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
215 | public func retry<ClockType, ReturnType>(
216 | with configuration: RetryConfiguration<ClockType>,
217 | @_inheritActorContext @_implicitSelfCapture operation: (Self) async throws -> ReturnType
| `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
218 | ) async throws -> ReturnType {
219 | precondition(isIdempotent, "The request is not idempotent: `\(self)`.")
/host/spi-builder-workspace/Sources/Retry/RetryableRequest/RetryableRequest.swift:63:8: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
61 | func unsafeRetryIgnoringIdempotency<ClockType, ReturnType>(
62 | with configuration: RetryConfiguration<ClockType>,
63 | @_inheritActorContext @_implicitSelfCapture operation: (Self) async throws -> ReturnType
| `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
64 | ) async throws -> ReturnType
65 | }
[33/66] Compiling Retry RandomNumberGenerator.swift
[34/66] Compiling Retry StandardRandomNumberGenerator.swift
[35/66] Compiling Retry ConstantBackoff.swift
[36/66] Compiling Retry FullJitterExponentialBackoff.swift
[37/66] Compiling Retry Retry.swift
/host/spi-builder-workspace/Sources/Retry/Retry.swift:174:5: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
172 | backoff: Backoff<ContinuousClock> = .default(baseDelay: .seconds(1), maxDelay: .seconds(20)),
173 | logger: Logging.Logger? = nil,
174 | @_inheritActorContext @_implicitSelfCapture operation: () async throws -> ReturnType,
| `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
175 | recoverFromFailure: @escaping @Sendable (any Error) -> RecoveryAction<ContinuousClock> = { _ in .retry }
176 | ) async throws -> ReturnType {
/host/spi-builder-workspace/Sources/Retry/Retry.swift:210:5: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
208 | backoff: Backoff<ClockType> = .default(baseDelay: .seconds(1), maxDelay: .seconds(20)),
209 | logger: Logging.Logger? = nil,
210 | @_inheritActorContext @_implicitSelfCapture operation: () async throws -> ReturnType,
| `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
211 | recoverFromFailure: @escaping @Sendable (any Error) -> RecoveryAction<ClockType> = { _ in .retry }
212 | ) async throws -> ReturnType where ClockType.Duration == Duration {
/host/spi-builder-workspace/Sources/Retry/Retry.swift:248:5: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
246 | backoff: Backoff<ClockType>,
247 | logger: Logging.Logger? = nil,
248 | @_inheritActorContext @_implicitSelfCapture operation: () async throws -> ReturnType,
| `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
249 | recoverFromFailure: @escaping @Sendable (any Error) -> RecoveryAction<ClockType> = { _ in .retry }
250 | ) async throws -> ReturnType {
/host/spi-builder-workspace/Sources/Retry/Retry.swift:279:5: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
277 | public func retry<ClockType, ReturnType>(
278 | with configuration: RetryConfiguration<ClockType>,
279 | @_inheritActorContext @_implicitSelfCapture operation: () async throws -> ReturnType
| `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
280 | ) async throws -> ReturnType {
281 | let maxAttempts = configuration.maxAttempts
/host/spi-builder-workspace/Sources/Retry/RetryConfiguration.swift:140:26: warning: cannot use default expression for inference of 'ClockType' because it is inferrable from parameters #1, #2, #4; this will be an error in a future Swift language mode
138 | public init(
139 | maxAttempts: Int? = 3,
140 | clock: ClockType = ContinuousClock(),
| `- warning: cannot use default expression for inference of 'ClockType' because it is inferrable from parameters #1, #2, #4; this will be an error in a future Swift language mode
141 | backoff: Backoff<ClockType> = .default(baseDelay: .seconds(1), maxDelay: .seconds(20)),
142 | logger: Logging.Logger? = nil,
[38/66] Compiling Retry RetryConfiguration.swift
/host/spi-builder-workspace/Sources/Retry/Retry.swift:174:5: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
172 | backoff: Backoff<ContinuousClock> = .default(baseDelay: .seconds(1), maxDelay: .seconds(20)),
173 | logger: Logging.Logger? = nil,
174 | @_inheritActorContext @_implicitSelfCapture operation: () async throws -> ReturnType,
| `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
175 | recoverFromFailure: @escaping @Sendable (any Error) -> RecoveryAction<ContinuousClock> = { _ in .retry }
176 | ) async throws -> ReturnType {
/host/spi-builder-workspace/Sources/Retry/Retry.swift:210:5: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
208 | backoff: Backoff<ClockType> = .default(baseDelay: .seconds(1), maxDelay: .seconds(20)),
209 | logger: Logging.Logger? = nil,
210 | @_inheritActorContext @_implicitSelfCapture operation: () async throws -> ReturnType,
| `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
211 | recoverFromFailure: @escaping @Sendable (any Error) -> RecoveryAction<ClockType> = { _ in .retry }
212 | ) async throws -> ReturnType where ClockType.Duration == Duration {
/host/spi-builder-workspace/Sources/Retry/Retry.swift:248:5: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
246 | backoff: Backoff<ClockType>,
247 | logger: Logging.Logger? = nil,
248 | @_inheritActorContext @_implicitSelfCapture operation: () async throws -> ReturnType,
| `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
249 | recoverFromFailure: @escaping @Sendable (any Error) -> RecoveryAction<ClockType> = { _ in .retry }
250 | ) async throws -> ReturnType {
/host/spi-builder-workspace/Sources/Retry/Retry.swift:279:5: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
277 | public func retry<ClockType, ReturnType>(
278 | with configuration: RetryConfiguration<ClockType>,
279 | @_inheritActorContext @_implicitSelfCapture operation: () async throws -> ReturnType
| `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
280 | ) async throws -> ReturnType {
281 | let maxAttempts = configuration.maxAttempts
/host/spi-builder-workspace/Sources/Retry/RetryConfiguration.swift:140:26: warning: cannot use default expression for inference of 'ClockType' because it is inferrable from parameters #1, #2, #4; this will be an error in a future Swift language mode
138 | public init(
139 | maxAttempts: Int? = 3,
140 | clock: ClockType = ContinuousClock(),
| `- warning: cannot use default expression for inference of 'ClockType' because it is inferrable from parameters #1, #2, #4; this will be an error in a future Swift language mode
141 | backoff: Backoff<ClockType> = .default(baseDelay: .seconds(1), maxDelay: .seconds(20)),
142 | logger: Logging.Logger? = nil,
[40/83] Compiling EnableOrDisableRetriesForSpecificCodePaths EnableOrDisableRetriesForSpecificCodePaths.swift
[41/83] Emitting module EnableOrDisableRetriesForSpecificCodePaths
[42/83] Emitting module RetryableRequest
/host/spi-builder-workspace/Snippets/Advanced Use Cases/RetryableRequest.swift:19:8: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
17 | func unsafeRetryIgnoringIdempotency<ClockType, ReturnType>(
18 | with configuration: RetryConfiguration<ClockType>,
19 | @_inheritActorContext @_implicitSelfCapture operation: (Self) async throws -> ReturnType
| `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
20 | ) async throws -> ReturnType {
21 | // We can override the `recoverFromFailure` closure to automatically handle errors
[43/83] Compiling RetryableRequest RetryableRequest.swift
/host/spi-builder-workspace/Snippets/Advanced Use Cases/RetryableRequest.swift:19:8: warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
17 | func unsafeRetryIgnoringIdempotency<ClockType, ReturnType>(
18 | with configuration: RetryConfiguration<ClockType>,
19 | @_inheritActorContext @_implicitSelfCapture operation: (Self) async throws -> ReturnType
| `- warning: @_inheritActorContext only applies to 'sending' parameters or parameters with '@Sendable' function types; this will be an error in a future Swift language mode
20 | ) async throws -> ReturnType {
21 | // We can override the `recoverFromFailure` closure to automatically handle errors
[44/85] Emitting module CustomBackoffAlgorithm
[45/85] Compiling CustomBackoffAlgorithm CustomBackoffAlgorithm.swift
[46/86] Emitting module ConfigureRetryBehavior
[47/86] Compiling ConfigureRetryBehavior ConfigureRetryBehavior.swift
[48/86] Emitting module EnforceMinDelay
[49/86] Compiling EnforceMinDelay EnforceMinDelay.swift
[53/88] Emitting module ReuseRetryConfiguration
[54/88] Compiling ReuseRetryConfiguration ReuseRetryConfiguration.swift
[57/89] Compiling EnableOrDisableRetriesForSpecificErrorCases EnableOrDisableRetriesForSpecificErrorCases.swift
[58/89] Emitting module EnableOrDisableRetriesForSpecificErrorCases
[59/90] Wrapping AST for RetryableRequest for debugging
[60/90] Wrapping AST for EnableOrDisableRetriesForSpecificCodePaths for debugging
[62/90] Wrapping AST for Retry for debugging
[63/90] Wrapping AST for EnforceMinDelay for debugging
[64/90] Write Objects.LinkFileList
[67/92] Wrapping AST for CustomBackoffAlgorithm for debugging
[68/92] Wrapping AST for ConfigureRetryBehavior for debugging
[69/92] Wrapping AST for EnableOrDisableRetriesForSpecificErrorCases for debugging
[70/92] Wrapping AST for ReuseRetryConfiguration for debugging
[72/92] Emitting module BasicUsage
[73/92] Compiling BasicUsage BasicUsage.swift
[73/93] Write Objects.LinkFileList
[78/93] Linking EnableOrDisableRetriesForSpecificCodePaths.wasm
[79/93] Linking RetryableRequest.wasm
[80/93] Linking EnforceMinDelay.wasm
[81/93] Wrapping AST for BasicUsage for debugging
[82/93] Write Objects.LinkFileList
[83/93] Linking CustomBackoffAlgorithm.wasm
[84/93] Linking ConfigureRetryBehavior.wasm
[85/93] Linking EnableOrDisableRetriesForSpecificErrorCases.wasm
[86/93] Linking ReuseRetryConfiguration.wasm
[87/93] Linking BasicUsage.wasm
[89/93] Compiling UseFakeClockType UseFakeClockType.swift
[90/93] Emitting module UseFakeClockType
[91/94] Wrapping AST for UseFakeClockType for debugging
[92/94] Write Objects.LinkFileList
[93/94] Linking UseFakeClockType.wasm
Build complete! (34.46s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-docc-plugin",
"requirement" : {
"range" : [
{
"lower_bound" : "1.3.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-docc-plugin.git"
},
{
"identity" : "swift-log",
"requirement" : {
"range" : [
{
"lower_bound" : "1.5.3",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-log.git"
}
],
"manifest_display_name" : "swift-retry",
"name" : "swift-retry",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "visionos",
"version" : "1.0"
},
{
"name" : "macos",
"version" : "13.0"
},
{
"name" : "maccatalyst",
"version" : "16.0"
},
{
"name" : "ios",
"version" : "16.0"
},
{
"name" : "tvos",
"version" : "16.0"
},
{
"name" : "watchos",
"version" : "9.0"
}
],
"products" : [
{
"name" : "DMRetry",
"targets" : [
"Retry"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "BasicUsage",
"targets" : [
"BasicUsage"
],
"type" : {
"snippet" : null
}
},
{
"name" : "ConfigureRetryBehavior",
"targets" : [
"ConfigureRetryBehavior"
],
"type" : {
"snippet" : null
}
},
{
"name" : "EnableOrDisableRetriesForSpecificErrorCases",
"targets" : [
"EnableOrDisableRetriesForSpecificErrorCases"
],
"type" : {
"snippet" : null
}
},
{
"name" : "ReuseRetryConfiguration",
"targets" : [
"ReuseRetryConfiguration"
],
"type" : {
"snippet" : null
}
},
{
"name" : "EnableOrDisableRetriesForSpecificCodePaths",
"targets" : [
"EnableOrDisableRetriesForSpecificCodePaths"
],
"type" : {
"snippet" : null
}
},
{
"name" : "RetryableRequest",
"targets" : [
"RetryableRequest"
],
"type" : {
"snippet" : null
}
},
{
"name" : "CustomBackoffAlgorithm",
"targets" : [
"CustomBackoffAlgorithm"
],
"type" : {
"snippet" : null
}
},
{
"name" : "UseFakeClockType",
"targets" : [
"UseFakeClockType"
],
"type" : {
"snippet" : null
}
},
{
"name" : "EnforceMinDelay",
"targets" : [
"EnforceMinDelay"
],
"type" : {
"snippet" : null
}
}
],
"targets" : [
{
"c99name" : "RetryTests",
"module_type" : "SwiftTarget",
"name" : "RetryTests",
"path" : "Tests/RetryTests",
"sources" : [
"ConstantBackoffTests.swift",
"Fakes/BackoffAlgorithmFake.swift",
"Fakes/ClockFake.swift",
"Fakes/ErrorFake.swift",
"Fakes/RandomNumberGeneratorFake.swift",
"FullJitterExponentialBackoffTests.swift",
"RetryTests.swift"
],
"target_dependencies" : [
"Retry"
],
"type" : "test"
},
{
"c99name" : "Retry",
"module_type" : "SwiftTarget",
"name" : "Retry",
"path" : "Sources/Retry",
"product_dependencies" : [
"Logging"
],
"product_memberships" : [
"DMRetry",
"BasicUsage",
"ConfigureRetryBehavior",
"EnableOrDisableRetriesForSpecificErrorCases",
"ReuseRetryConfiguration",
"EnableOrDisableRetriesForSpecificCodePaths",
"RetryableRequest",
"CustomBackoffAlgorithm",
"UseFakeClockType",
"EnforceMinDelay"
],
"sources" : [
"Backoff/Algorithms/ConstantBackoff.swift",
"Backoff/Algorithms/FullJitterExponentialBackoff.swift",
"Backoff/Algorithms/Random Number Generator/RandomNumberGenerator.swift",
"Backoff/Algorithms/Random Number Generator/StandardRandomNumberGenerator.swift",
"Backoff/Backoff.swift",
"Backoff/BackoffAlgorithm.swift",
"Logger+RetryMetadataKey.swift",
"RecoveryAction.swift",
"Retry.swift",
"RetryConfiguration.swift",
"Retryable/Error+OriginalError.swift",
"Retryable/NotRetryable.swift",
"Retryable/Retryable.swift",
"RetryableRequest/RetryableRequest+SafeRetry.swift",
"RetryableRequest/RetryableRequest.swift"
],
"type" : "library"
},
{
"c99name" : "BasicUsage",
"module_type" : "SwiftTarget",
"name" : "BasicUsage",
"path" : "Snippets/Common Use Cases",
"product_memberships" : [
"BasicUsage"
],
"sources" : [
"BasicUsage.swift"
],
"target_dependencies" : [
"Retry"
],
"type" : "snippet"
},
{
"c99name" : "ConfigureRetryBehavior",
"module_type" : "SwiftTarget",
"name" : "ConfigureRetryBehavior",
"path" : "Snippets/Common Use Cases",
"product_memberships" : [
"ConfigureRetryBehavior"
],
"sources" : [
"ConfigureRetryBehavior.swift"
],
"target_dependencies" : [
"Retry"
],
"type" : "snippet"
},
{
"c99name" : "EnableOrDisableRetriesForSpecificErrorCases",
"module_type" : "SwiftTarget",
"name" : "EnableOrDisableRetriesForSpecificErrorCases",
"path" : "Snippets/Common Use Cases",
"product_memberships" : [
"EnableOrDisableRetriesForSpecificErrorCases"
],
"sources" : [
"EnableOrDisableRetriesForSpecificErrorCases.swift"
],
"target_dependencies" : [
"Retry"
],
"type" : "snippet"
},
{
"c99name" : "ReuseRetryConfiguration",
"module_type" : "SwiftTarget",
"name" : "ReuseRetryConfiguration",
"path" : "Snippets/Common Use Cases",
"product_memberships" : [
"ReuseRetryConfiguration"
],
"sources" : [
"ReuseRetryConfiguration.swift"
],
"target_dependencies" : [
"Retry"
],
"type" : "snippet"
},
{
"c99name" : "EnableOrDisableRetriesForSpecificCodePaths",
"module_type" : "SwiftTarget",
"name" : "EnableOrDisableRetriesForSpecificCodePaths",
"path" : "Snippets/Common Use Cases",
"product_memberships" : [
"EnableOrDisableRetriesForSpecificCodePaths"
],
"sources" : [
"EnableOrDisableRetriesForSpecificCodePaths.swift"
],
"target_dependencies" : [
"Retry"
],
"type" : "snippet"
},
{
"c99name" : "RetryableRequest",
"module_type" : "SwiftTarget",
"name" : "RetryableRequest",
"path" : "Snippets/Advanced Use Cases",
"product_memberships" : [
"RetryableRequest"
],
"sources" : [
"RetryableRequest.swift"
],
"target_dependencies" : [
"Retry"
],
"type" : "snippet"
},
{
"c99name" : "CustomBackoffAlgorithm",
"module_type" : "SwiftTarget",
"name" : "CustomBackoffAlgorithm",
"path" : "Snippets/Advanced Use Cases",
"product_memberships" : [
"CustomBackoffAlgorithm"
],
"sources" : [
"CustomBackoffAlgorithm.swift"
],
"target_dependencies" : [
"Retry"
],
"type" : "snippet"
},
{
"c99name" : "UseFakeClockType",
"module_type" : "SwiftTarget",
"name" : "UseFakeClockType",
"path" : "Snippets/Advanced Use Cases",
"product_memberships" : [
"UseFakeClockType"
],
"sources" : [
"UseFakeClockType.swift"
],
"target_dependencies" : [
"Retry"
],
"type" : "snippet"
},
{
"c99name" : "EnforceMinDelay",
"module_type" : "SwiftTarget",
"name" : "EnforceMinDelay",
"path" : "Snippets/Advanced Use Cases",
"product_memberships" : [
"EnforceMinDelay"
],
"sources" : [
"EnforceMinDelay.swift"
],
"target_dependencies" : [
"Retry"
],
"type" : "snippet"
}
],
"tools_version" : "5.9"
}
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
Done.