Build Information
Successful build of swift-retry, reference main (df9d7b
), with Swift 6.2 (beta) for Linux on 21 Jun 2025 15:45:28 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.64.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.2
Building package at path: $PWD
https://github.com/fumoboy007/swift-retry.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Fetching https://github.com/apple/swift-docc-plugin.git
Fetching https://github.com/apple/swift-log.git
[1/2082] Fetching swift-docc-plugin
[231/5918] Fetching swift-docc-plugin, swift-log
Fetched https://github.com/apple/swift-log.git from cache (0.54s)
Fetched https://github.com/apple/swift-docc-plugin.git from cache (0.55s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.3 (1.20s)
Computing version for https://github.com/apple/swift-docc-plugin.git
Computed https://github.com/apple/swift-docc-plugin.git at 1.4.4 (3.24s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3414] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.54s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (3.44s)
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.6.3
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.4
[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/48] Compiling Logging MetadataProvider.swift
[16/48] Compiling Logging LogHandler.swift
[17/48] Compiling Logging Locks.swift
[18/48] Emitting module Logging
[19/48] Compiling Logging Logging.swift
[20/49] Wrapping AST for Logging for debugging
[22/64] Compiling Retry Error+OriginalError.swift
[23/64] Compiling Retry NotRetryable.swift
[24/65] 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 | }
[25/65] Compiling Retry Backoff.swift
[26/65] Compiling Retry BackoffAlgorithm.swift
[27/65] Compiling Retry Logger+RetryMetadataKey.swift
[28/65] Compiling Retry RecoveryAction.swift
[29/65] 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/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: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 | }
[30/65] Compiling Retry RandomNumberGenerator.swift
[31/65] Compiling Retry StandardRandomNumberGenerator.swift
[32/65] Compiling Retry ConstantBackoff.swift
[33/65] Compiling Retry FullJitterExponentialBackoff.swift
[34/65] 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
[35/65] 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
[36/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: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)`.")
[37/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: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)`.")
[38/78] Wrapping AST for Retry for debugging
[40/79] Emitting module EnforceMinDelay
[41/82] Compiling ReuseRetryConfiguration ReuseRetryConfiguration.swift
[42/82] Emitting module ReuseRetryConfiguration
[43/83] Compiling EnforceMinDelay EnforceMinDelay.swift
[45/84] Compiling ConfigureRetryBehavior ConfigureRetryBehavior.swift
[46/84] Emitting module ConfigureRetryBehavior
[47/84] 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
[49/84] 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
[50/84] Emitting module CustomBackoffAlgorithm
[51/84] Compiling CustomBackoffAlgorithm CustomBackoffAlgorithm.swift
[52/86] Emitting module EnableOrDisableRetriesForSpecificErrorCases
[53/86] Compiling EnableOrDisableRetriesForSpecificErrorCases EnableOrDisableRetriesForSpecificErrorCases.swift
[54/87] Emitting module EnableOrDisableRetriesForSpecificCodePaths
[55/87] Compiling EnableOrDisableRetriesForSpecificCodePaths EnableOrDisableRetriesForSpecificCodePaths.swift
[60/91] Wrapping AST for ReuseRetryConfiguration for debugging
[61/91] Write Objects.LinkFileList
[62/91] Wrapping AST for RetryableRequest for debugging
[63/91] Wrapping AST for ConfigureRetryBehavior for debugging
[63/91] Wrapping AST for EnforceMinDelay for debugging
[63/91] Write Objects.LinkFileList
[68/91] Wrapping AST for CustomBackoffAlgorithm for debugging
[69/91] Wrapping AST for EnableOrDisableRetriesForSpecificCodePaths for debugging
[70/91] Write Objects.LinkFileList
[72/91] Wrapping AST for EnableOrDisableRetriesForSpecificErrorCases for debugging
[74/91] Emitting module BasicUsage
[75/91] Compiling BasicUsage BasicUsage.swift
[76/92] Linking EnforceMinDelay
[77/92] Write Objects.LinkFileList
[78/92] Linking EnableOrDisableRetriesForSpecificCodePaths
[79/92] Linking CustomBackoffAlgorithm
[80/92] Linking RetryableRequest
[81/92] Linking ConfigureRetryBehavior
[82/92] Linking ReuseRetryConfiguration
[83/92] Linking EnableOrDisableRetriesForSpecificErrorCases
[84/92] Wrapping AST for BasicUsage for debugging
[85/92] Write Objects.LinkFileList
[86/92] Linking BasicUsage
[88/92] Emitting module UseFakeClockType
[89/92] Compiling UseFakeClockType UseFakeClockType.swift
[90/93] Wrapping AST for UseFakeClockType for debugging
[91/93] Write Objects.LinkFileList
[92/93] Linking UseFakeClockType
Build complete! (44.04s)
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.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Done.