Build Information
Successful build of swift-retry, reference main (df9d7b), with Swift 6.3 for macOS (SPM) on 14 Apr 2026 16:17:06 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64Build 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 /Users/admin/builder/spi-builder-workspace/.git/
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
Fetching https://github.com/apple/swift-docc-symbolkit
Fetching https://github.com/apple/swift-log.git
Fetching https://github.com/apple/swift-docc-plugin
[1/2271] Fetching swift-docc-plugin
[138/8840] Fetching swift-docc-plugin, swift-log
[821/12512] Fetching swift-docc-plugin, swift-log, swift-docc-symbolkit
Fetched https://github.com/apple/swift-docc-plugin from cache (1.28s)
Fetched https://github.com/apple/swift-log.git from cache (1.28s)
Computing version for https://github.com/apple/swift-log.git
Fetched https://github.com/apple/swift-docc-symbolkit from cache (1.28s)
Computed https://github.com/apple/swift-log.git at 1.5.4 (4.70s)
Computing version for https://github.com/apple/swift-docc-plugin.git
Computed https://github.com/apple/swift-docc-plugin.git at 1.3.0 (0.68s)
Computing version for https://github.com/apple/swift-docc-symbolkit
Computed https://github.com/apple/swift-docc-symbolkit at 1.0.0 (0.72s)
Creating working copy for https://github.com/apple/swift-docc-plugin
Working copy of https://github.com/apple/swift-docc-plugin resolved at 1.3.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.5.4
Creating working copy for https://github.com/apple/swift-docc-symbolkit
Working copy of https://github.com/apple/swift-docc-symbolkit resolved at 1.0.0
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
"identity": ".resolve-product-dependencies",
"name": "resolve-dependencies",
"url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"traits": [
"default"
],
"dependencies": [
{
"identity": "swift-retry",
"name": "swift-retry",
"url": "https://github.com/fumoboy007/swift-retry.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/swift-retry",
"traits": [
"default"
],
"dependencies": [
{
"identity": "swift-log",
"name": "swift-log",
"url": "https://github.com/apple/swift-log.git",
"version": "1.12.0",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/swift-log",
"traits": [
],
"dependencies": [
]
}
]
}
]
}
Fetching https://github.com/fumoboy007/swift-retry.git
[1/229] Fetching swift-retry
Fetched https://github.com/fumoboy007/swift-retry.git from cache (0.75s)
Fetching https://github.com/apple/swift-log.git from cache
Fetched https://github.com/apple/swift-log.git from cache (0.50s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.12.0 (1.15s)
Creating working copy for https://github.com/fumoboy007/swift-retry.git
Working copy of https://github.com/fumoboy007/swift-retry.git resolved at main (df9d7b1)
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
warning: '.resolve-product-dependencies': dependency 'swift-retry' is not used by any target
Found 1 product dependencies
- swift-log
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.3
Building package at path: $PWD
https://github.com/fumoboy007/swift-retry.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
[1/1] Compiling plugin Swift-DocC Preview
[2/2] Compiling plugin Swift-DocC
Building for debugging...
[2/32] Write sources
[13/32] Write swift-version--6988338F2F200930.txt
[15/37] Compiling Logging MetadataProvider.swift
[16/37] Emitting module Logging
[17/37] Compiling Logging Logging.swift
[18/37] Compiling Logging LogHandler.swift
[19/37] Compiling Logging Locks.swift
[20/52] Compiling Retry Retryable.swift
[21/52] Compiling Retry Error+OriginalError.swift
[22/52] Compiling Retry Logger+RetryMetadataKey.swift
[23/52] Compiling Retry RecoveryAction.swift
[24/52] Compiling Retry Retry.swift
/Users/admin/builder/spi-builder-workspace/Sources/Retry/Retry.swift:55: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
53 | appleLogger: os.Logger? = nil,
54 | logger: Logging.Logger? = nil,
55 | @_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
56 | recoverFromFailure: @escaping @Sendable (any Error) -> RecoveryAction<ContinuousClock> = { _ in .retry }
57 | ) async throws -> ReturnType {
/Users/admin/builder/spi-builder-workspace/Sources/Retry/Retry.swift:95: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
93 | appleLogger: os.Logger? = nil,
94 | logger: Logging.Logger? = nil,
95 | @_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
96 | recoverFromFailure: @escaping @Sendable (any Error) -> RecoveryAction<ClockType> = { _ in .retry }
97 | ) async throws -> ReturnType where ClockType.Duration == Duration {
/Users/admin/builder/spi-builder-workspace/Sources/Retry/Retry.swift:137: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
135 | appleLogger: os.Logger? = nil,
136 | logger: Logging.Logger? = nil,
137 | @_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
138 | recoverFromFailure: @escaping @Sendable (any Error) -> RecoveryAction<ClockType> = { _ in .retry }
139 | ) async throws -> ReturnType {
/Users/admin/builder/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
/Users/admin/builder/spi-builder-workspace/Sources/Retry/RetryConfiguration.swift:72: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
70 | public init(
71 | maxAttempts: Int? = 3,
72 | 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
73 | backoff: Backoff<ClockType> = .default(baseDelay: .seconds(1), maxDelay: .seconds(20)),
74 | appleLogger: os.Logger? = nil,
[25/52] Compiling Retry RetryConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Sources/Retry/Retry.swift:55: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
53 | appleLogger: os.Logger? = nil,
54 | logger: Logging.Logger? = nil,
55 | @_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
56 | recoverFromFailure: @escaping @Sendable (any Error) -> RecoveryAction<ContinuousClock> = { _ in .retry }
57 | ) async throws -> ReturnType {
/Users/admin/builder/spi-builder-workspace/Sources/Retry/Retry.swift:95: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
93 | appleLogger: os.Logger? = nil,
94 | logger: Logging.Logger? = nil,
95 | @_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
96 | recoverFromFailure: @escaping @Sendable (any Error) -> RecoveryAction<ClockType> = { _ in .retry }
97 | ) async throws -> ReturnType where ClockType.Duration == Duration {
/Users/admin/builder/spi-builder-workspace/Sources/Retry/Retry.swift:137: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
135 | appleLogger: os.Logger? = nil,
136 | logger: Logging.Logger? = nil,
137 | @_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
138 | recoverFromFailure: @escaping @Sendable (any Error) -> RecoveryAction<ClockType> = { _ in .retry }
139 | ) async throws -> ReturnType {
/Users/admin/builder/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
/Users/admin/builder/spi-builder-workspace/Sources/Retry/RetryConfiguration.swift:72: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
70 | public init(
71 | maxAttempts: Int? = 3,
72 | 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
73 | backoff: Backoff<ClockType> = .default(baseDelay: .seconds(1), maxDelay: .seconds(20)),
74 | appleLogger: os.Logger? = nil,
[26/53] Compiling Retry NotRetryable.swift
[27/53] Compiling Retry Backoff.swift
[28/53] Compiling Retry BackoffAlgorithm.swift
[29/53] Compiling Retry RandomNumberGenerator.swift
[30/53] Compiling Retry StandardRandomNumberGenerator.swift
[31/53] Compiling Retry ConstantBackoff.swift
[32/53] Compiling Retry FullJitterExponentialBackoff.swift
[33/53] Emitting module Retry
/Users/admin/builder/spi-builder-workspace/Sources/Retry/Retry.swift:55: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
53 | appleLogger: os.Logger? = nil,
54 | logger: Logging.Logger? = nil,
55 | @_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
56 | recoverFromFailure: @escaping @Sendable (any Error) -> RecoveryAction<ContinuousClock> = { _ in .retry }
57 | ) async throws -> ReturnType {
/Users/admin/builder/spi-builder-workspace/Sources/Retry/Retry.swift:95: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
93 | appleLogger: os.Logger? = nil,
94 | logger: Logging.Logger? = nil,
95 | @_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
96 | recoverFromFailure: @escaping @Sendable (any Error) -> RecoveryAction<ClockType> = { _ in .retry }
97 | ) async throws -> ReturnType where ClockType.Duration == Duration {
/Users/admin/builder/spi-builder-workspace/Sources/Retry/Retry.swift:137: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
135 | appleLogger: os.Logger? = nil,
136 | logger: Logging.Logger? = nil,
137 | @_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
138 | recoverFromFailure: @escaping @Sendable (any Error) -> RecoveryAction<ClockType> = { _ in .retry }
139 | ) async throws -> ReturnType {
/Users/admin/builder/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
/Users/admin/builder/spi-builder-workspace/Sources/Retry/RetryConfiguration.swift:72: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
70 | public init(
71 | maxAttempts: Int? = 3,
72 | 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
73 | backoff: Backoff<ClockType> = .default(baseDelay: .seconds(1), maxDelay: .seconds(20)),
74 | appleLogger: os.Logger? = nil,
/Users/admin/builder/spi-builder-workspace/Sources/Retry/RetryableRequest/RetryableRequest+SafeRetry.swift:60: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
58 | appleLogger: os.Logger? = nil,
59 | logger: Logging.Logger? = nil,
60 | @_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
61 | recoverFromFailure: @escaping @Sendable (any Error) -> RecoveryAction<ClockType> = { _ in .retry }
62 | ) async throws -> ReturnType where ClockType.Duration == Duration {
/Users/admin/builder/spi-builder-workspace/Sources/Retry/RetryableRequest/RetryableRequest+SafeRetry.swift:56:26: warning: cannot use default expression for inference of 'ClockType' because it is inferrable from parameters #1, #2, #6; this will be an error in a future Swift language mode
54 | public func retry<ClockType, ReturnType>(
55 | maxAttempts: Int? = 3,
56 | clock: ClockType = ContinuousClock(),
| `- warning: cannot use default expression for inference of 'ClockType' because it is inferrable from parameters #1, #2, #6; this will be an error in a future Swift language mode
57 | backoff: Backoff<ClockType> = .default(baseDelay: .seconds(1), maxDelay: .seconds(20)),
58 | appleLogger: os.Logger? = nil,
/Users/admin/builder/spi-builder-workspace/Sources/Retry/RetryableRequest/RetryableRequest+SafeRetry.swift:104: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
102 | appleLogger: os.Logger? = nil,
103 | logger: Logging.Logger? = nil,
104 | @_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
105 | recoverFromFailure: @escaping @Sendable (any Error) -> RecoveryAction<ClockType> = { _ in .retry }
106 | ) async throws -> ReturnType {
/Users/admin/builder/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)`.")
/Users/admin/builder/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 | }
[34/53] Compiling Retry RetryableRequest+SafeRetry.swift
/Users/admin/builder/spi-builder-workspace/Sources/Retry/RetryableRequest/RetryableRequest+SafeRetry.swift:60: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
58 | appleLogger: os.Logger? = nil,
59 | logger: Logging.Logger? = nil,
60 | @_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
61 | recoverFromFailure: @escaping @Sendable (any Error) -> RecoveryAction<ClockType> = { _ in .retry }
62 | ) async throws -> ReturnType where ClockType.Duration == Duration {
/Users/admin/builder/spi-builder-workspace/Sources/Retry/RetryableRequest/RetryableRequest+SafeRetry.swift:56:26: warning: cannot use default expression for inference of 'ClockType' because it is inferrable from parameters #1, #2, #6; this will be an error in a future Swift language mode
54 | public func retry<ClockType, ReturnType>(
55 | maxAttempts: Int? = 3,
56 | clock: ClockType = ContinuousClock(),
| `- warning: cannot use default expression for inference of 'ClockType' because it is inferrable from parameters #1, #2, #6; this will be an error in a future Swift language mode
57 | backoff: Backoff<ClockType> = .default(baseDelay: .seconds(1), maxDelay: .seconds(20)),
58 | appleLogger: os.Logger? = nil,
/Users/admin/builder/spi-builder-workspace/Sources/Retry/RetryableRequest/RetryableRequest+SafeRetry.swift:104: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
102 | appleLogger: os.Logger? = nil,
103 | logger: Logging.Logger? = nil,
104 | @_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
105 | recoverFromFailure: @escaping @Sendable (any Error) -> RecoveryAction<ClockType> = { _ in .retry }
106 | ) async throws -> ReturnType {
/Users/admin/builder/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)`.")
[35/53] Compiling Retry RetryableRequest.swift
/Users/admin/builder/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 | }
[36/71] Emitting module ReuseRetryConfiguration
[37/71] Compiling ReuseRetryConfiguration ReuseRetryConfiguration.swift
[37/71] Write Objects.LinkFileList
[39/71] Emitting module EnableOrDisableRetriesForSpecificCodePaths
[40/71] Compiling EnableOrDisableRetriesForSpecificCodePaths EnableOrDisableRetriesForSpecificCodePaths.swift
[41/71] Emitting module ConfigureRetryBehavior
[42/71] Compiling ConfigureRetryBehavior ConfigureRetryBehavior.swift
[43/71] Emitting module EnforceMinDelay
[44/71] Compiling EnforceMinDelay EnforceMinDelay.swift
[45/71] Emitting module RetryableRequest
/Users/admin/builder/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
[46/71] Compiling RetryableRequest RetryableRequest.swift
/Users/admin/builder/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
[47/71] Compiling EnableOrDisableRetriesForSpecificErrorCases EnableOrDisableRetriesForSpecificErrorCases.swift
[48/71] Emitting module EnableOrDisableRetriesForSpecificErrorCases
[49/71] Emitting module BasicUsage
[50/71] Compiling BasicUsage BasicUsage.swift
[50/71] Write Objects.LinkFileList
[51/71] Emitting module CustomBackoffAlgorithm
[52/71] Compiling CustomBackoffAlgorithm CustomBackoffAlgorithm.swift
[55/71] Write Objects.LinkFileList
[59/71] Linking RetryableRequest
[60/71] Linking ReuseRetryConfiguration
[61/71] Linking EnableOrDisableRetriesForSpecificCodePaths
[62/71] Linking EnforceMinDelay
[62/71] Linking BasicUsage
[64/71] Linking CustomBackoffAlgorithm
[65/71] Linking ConfigureRetryBehavior
[66/71] Linking EnableOrDisableRetriesForSpecificErrorCases
[68/71] Compiling UseFakeClockType UseFakeClockType.swift
[69/71] Emitting module UseFakeClockType
[69/71] Write Objects.LinkFileList
ld: warning: building for macOS-13.0, but linking with dylib '@rpath/libXCTestSwiftSupport.dylib' which was built for newer version 14.0
[70/71] Linking UseFakeClockType
Build complete! (24.02s)
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" : "/Users/admin/builder/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" : "EnableOrDisableRetriesForSpecificCodePaths",
"targets" : [
"EnableOrDisableRetriesForSpecificCodePaths"
],
"type" : {
"snippet" : null
}
},
{
"name" : "EnableOrDisableRetriesForSpecificErrorCases",
"targets" : [
"EnableOrDisableRetriesForSpecificErrorCases"
],
"type" : {
"snippet" : null
}
},
{
"name" : "ConfigureRetryBehavior",
"targets" : [
"ConfigureRetryBehavior"
],
"type" : {
"snippet" : null
}
},
{
"name" : "ReuseRetryConfiguration",
"targets" : [
"ReuseRetryConfiguration"
],
"type" : {
"snippet" : null
}
},
{
"name" : "BasicUsage",
"targets" : [
"BasicUsage"
],
"type" : {
"snippet" : null
}
},
{
"name" : "CustomBackoffAlgorithm",
"targets" : [
"CustomBackoffAlgorithm"
],
"type" : {
"snippet" : null
}
},
{
"name" : "RetryableRequest",
"targets" : [
"RetryableRequest"
],
"type" : {
"snippet" : null
}
},
{
"name" : "EnforceMinDelay",
"targets" : [
"EnforceMinDelay"
],
"type" : {
"snippet" : null
}
},
{
"name" : "UseFakeClockType",
"targets" : [
"UseFakeClockType"
],
"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",
"EnableOrDisableRetriesForSpecificCodePaths",
"EnableOrDisableRetriesForSpecificErrorCases",
"ConfigureRetryBehavior",
"ReuseRetryConfiguration",
"BasicUsage",
"CustomBackoffAlgorithm",
"RetryableRequest",
"EnforceMinDelay",
"UseFakeClockType"
],
"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" : "EnableOrDisableRetriesForSpecificCodePaths",
"module_type" : "SwiftTarget",
"name" : "EnableOrDisableRetriesForSpecificCodePaths",
"path" : "Snippets/Common Use Cases",
"product_memberships" : [
"EnableOrDisableRetriesForSpecificCodePaths"
],
"sources" : [
"EnableOrDisableRetriesForSpecificCodePaths.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" : "ConfigureRetryBehavior",
"module_type" : "SwiftTarget",
"name" : "ConfigureRetryBehavior",
"path" : "Snippets/Common Use Cases",
"product_memberships" : [
"ConfigureRetryBehavior"
],
"sources" : [
"ConfigureRetryBehavior.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" : "BasicUsage",
"module_type" : "SwiftTarget",
"name" : "BasicUsage",
"path" : "Snippets/Common Use Cases",
"product_memberships" : [
"BasicUsage"
],
"sources" : [
"BasicUsage.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" : "RetryableRequest",
"module_type" : "SwiftTarget",
"name" : "RetryableRequest",
"path" : "Snippets/Advanced Use Cases",
"product_memberships" : [
"RetryableRequest"
],
"sources" : [
"RetryableRequest.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"
},
{
"c99name" : "UseFakeClockType",
"module_type" : "SwiftTarget",
"name" : "UseFakeClockType",
"path" : "Snippets/Advanced Use Cases",
"product_memberships" : [
"UseFakeClockType"
],
"sources" : [
"UseFakeClockType.swift"
],
"target_dependencies" : [
"Retry"
],
"type" : "snippet"
}
],
"tools_version" : "5.9"
}
Done.