Build Information
Successful build of swift-retry, reference main (df9d7b), with Swift 6.3 for Linux on 14 Apr 2026 16:14:30 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/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:basic-6.3-latest swift build --triple x86_64-unknown-linux-gnu 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: linux
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-3":/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:basic-6.3-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:5a7d791d2ead8a924b1292cb31bf3288eabcfe8880e0b005b00b45b71a5bc36a
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:basic-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
[2272/8840] Fetching swift-docc-plugin, swift-log
Fetched https://github.com/apple/swift-docc-plugin.git from cache (0.43s)
[3548/6569] Fetching swift-log
Fetched https://github.com/apple/swift-log.git from cache (0.62s)
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.05s)
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.46s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.03s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.12.0 (0.44s)
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
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
[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 LogHandler.swift
[16/49] Compiling Logging LogEvent.swift
[17/49] Compiling Logging MetadataProvider.swift
[18/49] Emitting module Logging
[19/49] Compiling Logging Locks.swift
[20/49] Compiling Logging Logging.swift
[21/50] Wrapping AST for Logging for debugging
[23/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)`.")
[24/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)`.")
[25/65] Compiling Retry Error+OriginalError.swift
[26/65] Compiling Retry NotRetryable.swift
[27/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 | }
[28/66] Compiling Retry RandomNumberGenerator.swift
[29/66] Compiling Retry StandardRandomNumberGenerator.swift
[30/66] Compiling Retry ConstantBackoff.swift
[31/66] Compiling Retry FullJitterExponentialBackoff.swift
[32/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,
[33/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,
[34/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 | }
[35/66] Compiling Retry Backoff.swift
[36/66] Compiling Retry BackoffAlgorithm.swift
[37/66] Compiling Retry Logger+RetryMetadataKey.swift
[38/66] Compiling Retry RecoveryAction.swift
[39/76] Wrapping AST for Retry for debugging
[41/81] Emitting module EnforceMinDelay
[42/83] Emitting module EnableOrDisableRetriesForSpecificCodePaths
[43/83] Compiling EnableOrDisableRetriesForSpecificCodePaths EnableOrDisableRetriesForSpecificCodePaths.swift
[44/83] Compiling ReuseRetryConfiguration ReuseRetryConfiguration.swift
[45/83] Emitting module ReuseRetryConfiguration
[46/84] Emitting module CustomBackoffAlgorithm
[47/85] Compiling CustomBackoffAlgorithm CustomBackoffAlgorithm.swift
[48/85] Compiling EnforceMinDelay EnforceMinDelay.swift
[51/87] 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
[52/87] 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
[54/88] Emitting module ConfigureRetryBehavior
[55/88] Compiling ConfigureRetryBehavior ConfigureRetryBehavior.swift
[55/88] Wrapping AST for EnableOrDisableRetriesForSpecificCodePaths for debugging
[58/88] Emitting module EnableOrDisableRetriesForSpecificErrorCases
[59/88] Compiling EnableOrDisableRetriesForSpecificErrorCases EnableOrDisableRetriesForSpecificErrorCases.swift
[60/90] Write Objects.LinkFileList
[62/92] Wrapping AST for ReuseRetryConfiguration for debugging
[63/92] Write Objects.LinkFileList
[64/92] Wrapping AST for RetryableRequest for debugging
[65/92] Wrapping AST for EnforceMinDelay for debugging
[67/92] Wrapping AST for CustomBackoffAlgorithm for debugging
[68/92] Wrapping AST for ConfigureRetryBehavior for debugging
[69/92] Write Objects.LinkFileList
[73/92] Compiling BasicUsage BasicUsage.swift
[74/92] Emitting module BasicUsage
[75/93] Linking EnableOrDisableRetriesForSpecificCodePaths
[76/93] Linking ReuseRetryConfiguration
[77/93] Write Objects.LinkFileList
[78/93] Wrapping AST for EnableOrDisableRetriesForSpecificErrorCases for debugging
[79/93] Linking RetryableRequest
[80/93] Linking EnforceMinDelay
[81/93] Linking CustomBackoffAlgorithm
[82/93] Wrapping AST for BasicUsage for debugging
[83/93] Linking ConfigureRetryBehavior
[83/93] Write Objects.LinkFileList
[86/93] Linking EnableOrDisableRetriesForSpecificErrorCases
[87/93] Linking BasicUsage
[89/93] Emitting module UseFakeClockType
[90/93] Compiling UseFakeClockType UseFakeClockType.swift
[91/94] Wrapping AST for UseFakeClockType for debugging
[92/94] Write Objects.LinkFileList
[93/94] Linking UseFakeClockType
Build complete! (33.75s)
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"
}
basic-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:5a7d791d2ead8a924b1292cb31bf3288eabcfe8880e0b005b00b45b71a5bc36a
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest
Done.