The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Failed to build OktaClient, reference 2.0.0 (94acba), with Swift 6.2 (beta) for Linux on 25 Jun 2025 23:30:28 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/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/okta/okta-mobile-swift.git
Reference: 2.0.0
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/okta/okta-mobile-swift
 * tag               2.0.0      -> FETCH_HEAD
HEAD is now at 94acba6 Merge pull request #234 from okta/OKTA-954200-MigrationDocs
Cloned https://github.com/okta/okta-mobile-swift.git
Revision (git rev-parse @):
94acba67c4e3b4146985090c11cb9b8de93bcf00
SUCCESS checkout https://github.com/okta/okta-mobile-swift.git at 2.0.0
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.2
Building package at path:  $PWD
https://github.com/okta/okta-mobile-swift.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/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
[1/2082] Fetching swift-docc-plugin
Fetched https://github.com/apple/swift-docc-plugin from cache (0.66s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.4.4 (4.90s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3416] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.42s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.14s)
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-docc-plugin
Working copy of https://github.com/apple/swift-docc-plugin resolved at 1.4.4
[1/1] Compiling plugin Swift-DocC Preview
[2/2] Compiling plugin Swift-DocC
Building for debugging...
[2/19] Write sources
[2/19] Copying OktaIdx.strings
[2/19] Write sources
[6/19] Copying PrivacyInfo.xcprivacy
[6/19] Copying Info.plist
[6/19] Copying PrivacyInfo.xcprivacy
[6/19] Copying OktaDirectAuth.strings
[6/19] Copying Info.plist
[12/19] Copying AuthFoundation.strings
[12/19] Copying PrivacyInfo.xcprivacy
[15/19] Copying Info.plist
[15/19] Write sources
[18/19] Write swift-version-24593BA9C3E375BF.txt
[20/126] Emitting module AuthFoundation
/host/spi-builder-workspace/Sources/AuthFoundation/JWT/Extensions/ClaimConvertable+Extensions.swift:40:45: warning: conformance of 'NSString' to protocol 'Sendable' was already stated in the type's module 'Foundation'
38 | #else
39 | @_documentation(visibility: private)
40 | extension NSString: @unchecked @retroactive Sendable, ClaimConvertable {}
   |                                             `- warning: conformance of 'NSString' to protocol 'Sendable' was already stated in the type's module 'Foundation'
41 | #endif
42 |
Foundation.NSString:2:11: note: 'NSString' declares conformance to protocol 'Sendable' here
1 | @available(*, unavailable)
2 | extension NSString : @unchecked Sendable {
  |           `- note: 'NSString' declares conformance to protocol 'Sendable' here
3 | }
[21/141] Compiling AuthFoundation CredentialDataSource.swift
/host/spi-builder-workspace/Sources/AuthFoundation/Utilities/CoalescedResult.swift:47:14: error: sending value of non-Sendable type '() async -> ()' risks causing data races [#SendingRisksDataRace]
 45 |         let semaphore = DispatchSemaphore(value: 0)
 46 |         nonisolated(unsafe) var result: Bool = false
 47 |         Task.detached {
    |              |- error: sending value of non-Sendable type '() async -> ()' risks causing data races [#SendingRisksDataRace]
    |              `- note: Passing value of non-Sendable type '() async -> ()' as a 'sending' argument to static method 'detached(name:priority:operation:)' risks causing races in between local and caller code
 48 |             result = await self._isActive
 49 |             semaphore.signal()
 50 |         }
 51 |         semaphore.wait()
 52 |         return result
    |                `- note: access can happen concurrently
 53 |     }
 54 |
[#SendingRisksDataRace]: <https://docs.swift.org/compiler/documentation/diagnostics/sending-risks-data-race>
[22/141] Compiling AuthFoundation CredentialDataSourceDelegate.swift
/host/spi-builder-workspace/Sources/AuthFoundation/Utilities/CoalescedResult.swift:47:14: error: sending value of non-Sendable type '() async -> ()' risks causing data races [#SendingRisksDataRace]
 45 |         let semaphore = DispatchSemaphore(value: 0)
 46 |         nonisolated(unsafe) var result: Bool = false
 47 |         Task.detached {
    |              |- error: sending value of non-Sendable type '() async -> ()' risks causing data races [#SendingRisksDataRace]
    |              `- note: Passing value of non-Sendable type '() async -> ()' as a 'sending' argument to static method 'detached(name:priority:operation:)' risks causing races in between local and caller code
 48 |             result = await self._isActive
 49 |             semaphore.signal()
 50 |         }
 51 |         semaphore.wait()
 52 |         return result
    |                `- note: access can happen concurrently
 53 |     }
 54 |
[#SendingRisksDataRace]: <https://docs.swift.org/compiler/documentation/diagnostics/sending-risks-data-race>
[23/141] Compiling AuthFoundation CredentialError.swift
/host/spi-builder-workspace/Sources/AuthFoundation/Utilities/CoalescedResult.swift:47:14: error: sending value of non-Sendable type '() async -> ()' risks causing data races [#SendingRisksDataRace]
 45 |         let semaphore = DispatchSemaphore(value: 0)
 46 |         nonisolated(unsafe) var result: Bool = false
 47 |         Task.detached {
    |              |- error: sending value of non-Sendable type '() async -> ()' risks causing data races [#SendingRisksDataRace]
    |              `- note: Passing value of non-Sendable type '() async -> ()' as a 'sending' argument to static method 'detached(name:priority:operation:)' risks causing races in between local and caller code
 48 |             result = await self._isActive
 49 |             semaphore.signal()
 50 |         }
 51 |         semaphore.wait()
 52 |         return result
    |                `- note: access can happen concurrently
 53 |     }
 54 |
[#SendingRisksDataRace]: <https://docs.swift.org/compiler/documentation/diagnostics/sending-risks-data-race>
[24/141] Compiling AuthFoundation CredentialSecurity.swift
/host/spi-builder-workspace/Sources/AuthFoundation/Utilities/CoalescedResult.swift:47:14: error: sending value of non-Sendable type '() async -> ()' risks causing data races [#SendingRisksDataRace]
 45 |         let semaphore = DispatchSemaphore(value: 0)
 46 |         nonisolated(unsafe) var result: Bool = false
 47 |         Task.detached {
    |              |- error: sending value of non-Sendable type '() async -> ()' risks causing data races [#SendingRisksDataRace]
    |              `- note: Passing value of non-Sendable type '() async -> ()' as a 'sending' argument to static method 'detached(name:priority:operation:)' risks causing races in between local and caller code
 48 |             result = await self._isActive
 49 |             semaphore.signal()
 50 |         }
 51 |         semaphore.wait()
 52 |         return result
    |                `- note: access can happen concurrently
 53 |     }
 54 |
[#SendingRisksDataRace]: <https://docs.swift.org/compiler/documentation/diagnostics/sending-risks-data-race>
[25/141] Compiling AuthFoundation Credential+Internal.swift
/host/spi-builder-workspace/Sources/AuthFoundation/Utilities/CoalescedResult.swift:47:14: error: sending value of non-Sendable type '() async -> ()' risks causing data races [#SendingRisksDataRace]
 45 |         let semaphore = DispatchSemaphore(value: 0)
 46 |         nonisolated(unsafe) var result: Bool = false
 47 |         Task.detached {
    |              |- error: sending value of non-Sendable type '() async -> ()' risks causing data races [#SendingRisksDataRace]
    |              `- note: Passing value of non-Sendable type '() async -> ()' as a 'sending' argument to static method 'detached(name:priority:operation:)' risks causing races in between local and caller code
 48 |             result = await self._isActive
 49 |             semaphore.signal()
 50 |         }
 51 |         semaphore.wait()
 52 |         return result
    |                `- note: access can happen concurrently
 53 |     }
 54 |
[#SendingRisksDataRace]: <https://docs.swift.org/compiler/documentation/diagnostics/sending-risks-data-race>
[26/141] Compiling AuthFoundation CredentialCoordinatorImpl.swift
/host/spi-builder-workspace/Sources/AuthFoundation/Utilities/CoalescedResult.swift:47:14: error: sending value of non-Sendable type '() async -> ()' risks causing data races [#SendingRisksDataRace]
 45 |         let semaphore = DispatchSemaphore(value: 0)
 46 |         nonisolated(unsafe) var result: Bool = false
 47 |         Task.detached {
    |              |- error: sending value of non-Sendable type '() async -> ()' risks causing data races [#SendingRisksDataRace]
    |              `- note: Passing value of non-Sendable type '() async -> ()' as a 'sending' argument to static method 'detached(name:priority:operation:)' risks causing races in between local and caller code
 48 |             result = await self._isActive
 49 |             semaphore.signal()
 50 |         }
 51 |         semaphore.wait()
 52 |         return result
    |                `- note: access can happen concurrently
 53 |     }
 54 |
[#SendingRisksDataRace]: <https://docs.swift.org/compiler/documentation/diagnostics/sending-risks-data-race>
[27/141] Compiling AuthFoundation CredentialSecurity+Internal.swift
/host/spi-builder-workspace/Sources/AuthFoundation/Utilities/CoalescedResult.swift:47:14: error: sending value of non-Sendable type '() async -> ()' risks causing data races [#SendingRisksDataRace]
 45 |         let semaphore = DispatchSemaphore(value: 0)
 46 |         nonisolated(unsafe) var result: Bool = false
 47 |         Task.detached {
    |              |- error: sending value of non-Sendable type '() async -> ()' risks causing data races [#SendingRisksDataRace]
    |              `- note: Passing value of non-Sendable type '() async -> ()' as a 'sending' argument to static method 'detached(name:priority:operation:)' risks causing races in between local and caller code
 48 |             result = await self._isActive
 49 |             semaphore.signal()
 50 |         }
 51 |         semaphore.wait()
 52 |         return result
    |                `- note: access can happen concurrently
 53 |     }
 54 |
[#SendingRisksDataRace]: <https://docs.swift.org/compiler/documentation/diagnostics/sending-risks-data-race>
[28/141] Compiling AuthFoundation DefaultCredentialDataSource.swift
/host/spi-builder-workspace/Sources/AuthFoundation/Utilities/CoalescedResult.swift:47:14: error: sending value of non-Sendable type '() async -> ()' risks causing data races [#SendingRisksDataRace]
 45 |         let semaphore = DispatchSemaphore(value: 0)
 46 |         nonisolated(unsafe) var result: Bool = false
 47 |         Task.detached {
    |              |- error: sending value of non-Sendable type '() async -> ()' risks causing data races [#SendingRisksDataRace]
    |              `- note: Passing value of non-Sendable type '() async -> ()' as a 'sending' argument to static method 'detached(name:priority:operation:)' risks causing races in between local and caller code
 48 |             result = await self._isActive
 49 |             semaphore.signal()
 50 |         }
 51 |         semaphore.wait()
 52 |         return result
    |                `- note: access can happen concurrently
 53 |     }
 54 |
[#SendingRisksDataRace]: <https://docs.swift.org/compiler/documentation/diagnostics/sending-risks-data-race>
[29/141] Compiling AuthFoundation APIRequestPollingHandler.swift
/host/spi-builder-workspace/Sources/AuthFoundation/Utilities/CoalescedResult.swift:47:14: error: sending value of non-Sendable type '() async -> ()' risks causing data races [#SendingRisksDataRace]
 45 |         let semaphore = DispatchSemaphore(value: 0)
 46 |         nonisolated(unsafe) var result: Bool = false
 47 |         Task.detached {
    |              |- error: sending value of non-Sendable type '() async -> ()' risks causing data races [#SendingRisksDataRace]
    |              `- note: Passing value of non-Sendable type '() async -> ()' as a 'sending' argument to static method 'detached(name:priority:operation:)' risks causing races in between local and caller code
 48 |             result = await self._isActive
 49 |             semaphore.signal()
 50 |         }
 51 |         semaphore.wait()
 52 |         return result
    |                `- note: access can happen concurrently
 53 |     }
 54 |
[#SendingRisksDataRace]: <https://docs.swift.org/compiler/documentation/diagnostics/sending-risks-data-race>
[30/141] Compiling AuthFoundation AdditionalValuesCodingKeys.swift
/host/spi-builder-workspace/Sources/AuthFoundation/Utilities/CoalescedResult.swift:47:14: error: sending value of non-Sendable type '() async -> ()' risks causing data races [#SendingRisksDataRace]
 45 |         let semaphore = DispatchSemaphore(value: 0)
 46 |         nonisolated(unsafe) var result: Bool = false
 47 |         Task.detached {
    |              |- error: sending value of non-Sendable type '() async -> ()' risks causing data races [#SendingRisksDataRace]
    |              `- note: Passing value of non-Sendable type '() async -> ()' as a 'sending' argument to static method 'detached(name:priority:operation:)' risks causing races in between local and caller code
 48 |             result = await self._isActive
 49 |             semaphore.signal()
 50 |         }
 51 |         semaphore.wait()
 52 |         return result
    |                `- note: access can happen concurrently
 53 |     }
 54 |
[#SendingRisksDataRace]: <https://docs.swift.org/compiler/documentation/diagnostics/sending-risks-data-race>
[31/141] Compiling AuthFoundation AsyncUtilities.swift
/host/spi-builder-workspace/Sources/AuthFoundation/Utilities/CoalescedResult.swift:47:14: error: sending value of non-Sendable type '() async -> ()' risks causing data races [#SendingRisksDataRace]
 45 |         let semaphore = DispatchSemaphore(value: 0)
 46 |         nonisolated(unsafe) var result: Bool = false
 47 |         Task.detached {
    |              |- error: sending value of non-Sendable type '() async -> ()' risks causing data races [#SendingRisksDataRace]
    |              `- note: Passing value of non-Sendable type '() async -> ()' as a 'sending' argument to static method 'detached(name:priority:operation:)' risks causing races in between local and caller code
 48 |             result = await self._isActive
 49 |             semaphore.signal()
 50 |         }
 51 |         semaphore.wait()
 52 |         return result
    |                `- note: access can happen concurrently
 53 |     }
 54 |
[#SendingRisksDataRace]: <https://docs.swift.org/compiler/documentation/diagnostics/sending-risks-data-race>
[32/141] Compiling AuthFoundation BackgroundTaskWrapper.swift
/host/spi-builder-workspace/Sources/AuthFoundation/Utilities/CoalescedResult.swift:47:14: error: sending value of non-Sendable type '() async -> ()' risks causing data races [#SendingRisksDataRace]
 45 |         let semaphore = DispatchSemaphore(value: 0)
 46 |         nonisolated(unsafe) var result: Bool = false
 47 |         Task.detached {
    |              |- error: sending value of non-Sendable type '() async -> ()' risks causing data races [#SendingRisksDataRace]
    |              `- note: Passing value of non-Sendable type '() async -> ()' as a 'sending' argument to static method 'detached(name:priority:operation:)' risks causing races in between local and caller code
 48 |             result = await self._isActive
 49 |             semaphore.signal()
 50 |         }
 51 |         semaphore.wait()
 52 |         return result
    |                `- note: access can happen concurrently
 53 |     }
 54 |
[#SendingRisksDataRace]: <https://docs.swift.org/compiler/documentation/diagnostics/sending-risks-data-race>
[33/141] Compiling AuthFoundation Bundle+AuthFoundation.swift
/host/spi-builder-workspace/Sources/AuthFoundation/Utilities/CoalescedResult.swift:47:14: error: sending value of non-Sendable type '() async -> ()' risks causing data races [#SendingRisksDataRace]
 45 |         let semaphore = DispatchSemaphore(value: 0)
 46 |         nonisolated(unsafe) var result: Bool = false
 47 |         Task.detached {
    |              |- error: sending value of non-Sendable type '() async -> ()' risks causing data races [#SendingRisksDataRace]
    |              `- note: Passing value of non-Sendable type '() async -> ()' as a 'sending' argument to static method 'detached(name:priority:operation:)' risks causing races in between local and caller code
 48 |             result = await self._isActive
 49 |             semaphore.signal()
 50 |         }
 51 |         semaphore.wait()
 52 |         return result
    |                `- note: access can happen concurrently
 53 |     }
 54 |
[#SendingRisksDataRace]: <https://docs.swift.org/compiler/documentation/diagnostics/sending-risks-data-race>
[34/141] Compiling AuthFoundation CoalescedResult.swift
/host/spi-builder-workspace/Sources/AuthFoundation/Utilities/CoalescedResult.swift:47:14: error: sending value of non-Sendable type '() async -> ()' risks causing data races [#SendingRisksDataRace]
 45 |         let semaphore = DispatchSemaphore(value: 0)
 46 |         nonisolated(unsafe) var result: Bool = false
 47 |         Task.detached {
    |              |- error: sending value of non-Sendable type '() async -> ()' risks causing data races [#SendingRisksDataRace]
    |              `- note: Passing value of non-Sendable type '() async -> ()' as a 'sending' argument to static method 'detached(name:priority:operation:)' risks causing races in between local and caller code
 48 |             result = await self._isActive
 49 |             semaphore.signal()
 50 |         }
 51 |         semaphore.wait()
 52 |         return result
    |                `- note: access can happen concurrently
 53 |     }
 54 |
[#SendingRisksDataRace]: <https://docs.swift.org/compiler/documentation/diagnostics/sending-risks-data-race>
[35/141] Compiling AuthFoundation Data+Extensions.swift
/host/spi-builder-workspace/Sources/AuthFoundation/Utilities/CoalescedResult.swift:47:14: error: sending value of non-Sendable type '() async -> ()' risks causing data races [#SendingRisksDataRace]
 45 |         let semaphore = DispatchSemaphore(value: 0)
 46 |         nonisolated(unsafe) var result: Bool = false
 47 |         Task.detached {
    |              |- error: sending value of non-Sendable type '() async -> ()' risks causing data races [#SendingRisksDataRace]
    |              `- note: Passing value of non-Sendable type '() async -> ()' as a 'sending' argument to static method 'detached(name:priority:operation:)' risks causing races in between local and caller code
 48 |             result = await self._isActive
 49 |             semaphore.signal()
 50 |         }
 51 |         semaphore.wait()
 52 |         return result
    |                `- note: access can happen concurrently
 53 |     }
 54 |
[#SendingRisksDataRace]: <https://docs.swift.org/compiler/documentation/diagnostics/sending-risks-data-race>
[36/141] Compiling AuthFoundation APIRequestObserver.swift
/host/spi-builder-workspace/Sources/AuthFoundation/JWT/Extensions/ClaimConvertable+Extensions.swift:40:45: warning: conformance of 'NSString' to protocol 'Sendable' was already stated in the type's module 'Foundation'
38 | #else
39 | @_documentation(visibility: private)
40 | extension NSString: @unchecked @retroactive Sendable, ClaimConvertable {}
   |                                             `- warning: conformance of 'NSString' to protocol 'Sendable' was already stated in the type's module 'Foundation'
41 | #endif
42 |
Foundation.NSString:2:11: note: 'NSString' declares conformance to protocol 'Sendable' here
1 | @available(*, unavailable)
2 | extension NSString : @unchecked Sendable {
  |           `- note: 'NSString' declares conformance to protocol 'Sendable' here
3 | }
[37/141] Compiling AuthFoundation OAuth2Client+Deprecations.swift
/host/spi-builder-workspace/Sources/AuthFoundation/JWT/Extensions/ClaimConvertable+Extensions.swift:40:45: warning: conformance of 'NSString' to protocol 'Sendable' was already stated in the type's module 'Foundation'
38 | #else
39 | @_documentation(visibility: private)
40 | extension NSString: @unchecked @retroactive Sendable, ClaimConvertable {}
   |                                             `- warning: conformance of 'NSString' to protocol 'Sendable' was already stated in the type's module 'Foundation'
41 | #endif
42 |
Foundation.NSString:2:11: note: 'NSString' declares conformance to protocol 'Sendable' here
1 | @available(*, unavailable)
2 | extension NSString : @unchecked Sendable {
  |           `- note: 'NSString' declares conformance to protocol 'Sendable' here
3 | }
[38/141] Compiling AuthFoundation AuthenticationMethod.swift
/host/spi-builder-workspace/Sources/AuthFoundation/JWT/Extensions/ClaimConvertable+Extensions.swift:40:45: warning: conformance of 'NSString' to protocol 'Sendable' was already stated in the type's module 'Foundation'
38 | #else
39 | @_documentation(visibility: private)
40 | extension NSString: @unchecked @retroactive Sendable, ClaimConvertable {}
   |                                             `- warning: conformance of 'NSString' to protocol 'Sendable' was already stated in the type's module 'Foundation'
41 | #endif
42 |
Foundation.NSString:2:11: note: 'NSString' declares conformance to protocol 'Sendable' here
1 | @available(*, unavailable)
2 | extension NSString : @unchecked Sendable {
  |           `- note: 'NSString' declares conformance to protocol 'Sendable' here
3 | }
[39/141] Compiling AuthFoundation JWK+Enums.swift
/host/spi-builder-workspace/Sources/AuthFoundation/JWT/Extensions/ClaimConvertable+Extensions.swift:40:45: warning: conformance of 'NSString' to protocol 'Sendable' was already stated in the type's module 'Foundation'
38 | #else
39 | @_documentation(visibility: private)
40 | extension NSString: @unchecked @retroactive Sendable, ClaimConvertable {}
   |                                             `- warning: conformance of 'NSString' to protocol 'Sendable' was already stated in the type's module 'Foundation'
41 | #endif
42 |
Foundation.NSString:2:11: note: 'NSString' declares conformance to protocol 'Sendable' here
1 | @available(*, unavailable)
2 | extension NSString : @unchecked Sendable {
  |           `- note: 'NSString' declares conformance to protocol 'Sendable' here
3 | }
[40/141] Compiling AuthFoundation JWTClaim.swift
/host/spi-builder-workspace/Sources/AuthFoundation/JWT/Extensions/ClaimConvertable+Extensions.swift:40:45: warning: conformance of 'NSString' to protocol 'Sendable' was already stated in the type's module 'Foundation'
38 | #else
39 | @_documentation(visibility: private)
40 | extension NSString: @unchecked @retroactive Sendable, ClaimConvertable {}
   |                                             `- warning: conformance of 'NSString' to protocol 'Sendable' was already stated in the type's module 'Foundation'
41 | #endif
42 |
Foundation.NSString:2:11: note: 'NSString' declares conformance to protocol 'Sendable' here
1 | @available(*, unavailable)
2 | extension NSString : @unchecked Sendable {
  |           `- note: 'NSString' declares conformance to protocol 'Sendable' here
3 | }
[41/141] Compiling AuthFoundation Claim+ValueExtensions.swift
/host/spi-builder-workspace/Sources/AuthFoundation/JWT/Extensions/ClaimConvertable+Extensions.swift:40:45: warning: conformance of 'NSString' to protocol 'Sendable' was already stated in the type's module 'Foundation'
38 | #else
39 | @_documentation(visibility: private)
40 | extension NSString: @unchecked @retroactive Sendable, ClaimConvertable {}
   |                                             `- warning: conformance of 'NSString' to protocol 'Sendable' was already stated in the type's module 'Foundation'
41 | #endif
42 |
Foundation.NSString:2:11: note: 'NSString' declares conformance to protocol 'Sendable' here
1 | @available(*, unavailable)
2 | extension NSString : @unchecked Sendable {
  |           `- note: 'NSString' declares conformance to protocol 'Sendable' here
3 | }
[42/141] Compiling AuthFoundation ClaimConvertable+Extensions.swift
/host/spi-builder-workspace/Sources/AuthFoundation/JWT/Extensions/ClaimConvertable+Extensions.swift:40:45: warning: conformance of 'NSString' to protocol 'Sendable' was already stated in the type's module 'Foundation'
38 | #else
39 | @_documentation(visibility: private)
40 | extension NSString: @unchecked @retroactive Sendable, ClaimConvertable {}
   |                                             `- warning: conformance of 'NSString' to protocol 'Sendable' was already stated in the type's module 'Foundation'
41 | #endif
42 |
Foundation.NSString:2:11: note: 'NSString' declares conformance to protocol 'Sendable' here
1 | @available(*, unavailable)
2 | extension NSString : @unchecked Sendable {
  |           `- note: 'NSString' declares conformance to protocol 'Sendable' here
3 | }
[43/141] Compiling AuthFoundation JWK+EnumExtensions.swift
/host/spi-builder-workspace/Sources/AuthFoundation/JWT/Extensions/ClaimConvertable+Extensions.swift:40:45: warning: conformance of 'NSString' to protocol 'Sendable' was already stated in the type's module 'Foundation'
38 | #else
39 | @_documentation(visibility: private)
40 | extension NSString: @unchecked @retroactive Sendable, ClaimConvertable {}
   |                                             `- warning: conformance of 'NSString' to protocol 'Sendable' was already stated in the type's module 'Foundation'
41 | #endif
42 |
Foundation.NSString:2:11: note: 'NSString' declares conformance to protocol 'Sendable' here
1 | @available(*, unavailable)
2 | extension NSString : @unchecked Sendable {
  |           `- note: 'NSString' declares conformance to protocol 'Sendable' here
3 | }
[44/141] Compiling AuthFoundation JWTClaim+Extensions.swift
/host/spi-builder-workspace/Sources/AuthFoundation/JWT/Extensions/ClaimConvertable+Extensions.swift:40:45: warning: conformance of 'NSString' to protocol 'Sendable' was already stated in the type's module 'Foundation'
38 | #else
39 | @_documentation(visibility: private)
40 | extension NSString: @unchecked @retroactive Sendable, ClaimConvertable {}
   |                                             `- warning: conformance of 'NSString' to protocol 'Sendable' was already stated in the type's module 'Foundation'
41 | #endif
42 |
Foundation.NSString:2:11: note: 'NSString' declares conformance to protocol 'Sendable' here
1 | @available(*, unavailable)
2 | extension NSString : @unchecked Sendable {
  |           `- note: 'NSString' declares conformance to protocol 'Sendable' here
3 | }
[45/141] Compiling AuthFoundation Claim+Internal.swift
/host/spi-builder-workspace/Sources/AuthFoundation/JWT/Extensions/ClaimConvertable+Extensions.swift:40:45: warning: conformance of 'NSString' to protocol 'Sendable' was already stated in the type's module 'Foundation'
38 | #else
39 | @_documentation(visibility: private)
40 | extension NSString: @unchecked @retroactive Sendable, ClaimConvertable {}
   |                                             `- warning: conformance of 'NSString' to protocol 'Sendable' was already stated in the type's module 'Foundation'
41 | #endif
42 |
Foundation.NSString:2:11: note: 'NSString' declares conformance to protocol 'Sendable' here
1 | @available(*, unavailable)
2 | extension NSString : @unchecked Sendable {
  |           `- note: 'NSString' declares conformance to protocol 'Sendable' here
3 | }
[46/141] Compiling AuthFoundation Data+SigningExtensions.swift
/host/spi-builder-workspace/Sources/AuthFoundation/JWT/Extensions/ClaimConvertable+Extensions.swift:40:45: warning: conformance of 'NSString' to protocol 'Sendable' was already stated in the type's module 'Foundation'
38 | #else
39 | @_documentation(visibility: private)
40 | extension NSString: @unchecked @retroactive Sendable, ClaimConvertable {}
   |                                             `- warning: conformance of 'NSString' to protocol 'Sendable' was already stated in the type's module 'Foundation'
41 | #endif
42 |
Foundation.NSString:2:11: note: 'NSString' declares conformance to protocol 'Sendable' here
1 | @available(*, unavailable)
2 | extension NSString : @unchecked Sendable {
  |           `- note: 'NSString' declares conformance to protocol 'Sendable' here
3 | }
[47/141] Compiling AuthFoundation DefaultIDTokenValidator.swift
/host/spi-builder-workspace/Sources/AuthFoundation/JWT/Extensions/ClaimConvertable+Extensions.swift:40:45: warning: conformance of 'NSString' to protocol 'Sendable' was already stated in the type's module 'Foundation'
38 | #else
39 | @_documentation(visibility: private)
40 | extension NSString: @unchecked @retroactive Sendable, ClaimConvertable {}
   |                                             `- warning: conformance of 'NSString' to protocol 'Sendable' was already stated in the type's module 'Foundation'
41 | #endif
42 |
Foundation.NSString:2:11: note: 'NSString' declares conformance to protocol 'Sendable' here
1 | @available(*, unavailable)
2 | extension NSString : @unchecked Sendable {
  |           `- note: 'NSString' declares conformance to protocol 'Sendable' here
3 | }
[48/141] Compiling AuthFoundation DefaultJWKValidator.swift
/host/spi-builder-workspace/Sources/AuthFoundation/JWT/Extensions/ClaimConvertable+Extensions.swift:40:45: warning: conformance of 'NSString' to protocol 'Sendable' was already stated in the type's module 'Foundation'
38 | #else
39 | @_documentation(visibility: private)
40 | extension NSString: @unchecked @retroactive Sendable, ClaimConvertable {}
   |                                             `- warning: conformance of 'NSString' to protocol 'Sendable' was already stated in the type's module 'Foundation'
41 | #endif
42 |
Foundation.NSString:2:11: note: 'NSString' declares conformance to protocol 'Sendable' here
1 | @available(*, unavailable)
2 | extension NSString : @unchecked Sendable {
  |           `- note: 'NSString' declares conformance to protocol 'Sendable' here
3 | }
[49/141] Compiling AuthFoundation DefaultTokenHashValidator.swift
/host/spi-builder-workspace/Sources/AuthFoundation/JWT/Extensions/ClaimConvertable+Extensions.swift:40:45: warning: conformance of 'NSString' to protocol 'Sendable' was already stated in the type's module 'Foundation'
38 | #else
39 | @_documentation(visibility: private)
40 | extension NSString: @unchecked @retroactive Sendable, ClaimConvertable {}
   |                                             `- warning: conformance of 'NSString' to protocol 'Sendable' was already stated in the type's module 'Foundation'
41 | #endif
42 |
Foundation.NSString:2:11: note: 'NSString' declares conformance to protocol 'Sendable' here
1 | @available(*, unavailable)
2 | extension NSString : @unchecked Sendable {
  |           `- note: 'NSString' declares conformance to protocol 'Sendable' here
3 | }
[50/141] Compiling AuthFoundation JWK+Extensions.swift
/host/spi-builder-workspace/Sources/AuthFoundation/JWT/Extensions/ClaimConvertable+Extensions.swift:40:45: warning: conformance of 'NSString' to protocol 'Sendable' was already stated in the type's module 'Foundation'
38 | #else
39 | @_documentation(visibility: private)
40 | extension NSString: @unchecked @retroactive Sendable, ClaimConvertable {}
   |                                             `- warning: conformance of 'NSString' to protocol 'Sendable' was already stated in the type's module 'Foundation'
41 | #endif
42 |
Foundation.NSString:2:11: note: 'NSString' declares conformance to protocol 'Sendable' here
1 | @available(*, unavailable)
2 | extension NSString : @unchecked Sendable {
  |           `- note: 'NSString' declares conformance to protocol 'Sendable' here
3 | }
[51/141] Compiling AuthFoundation JWK+Verification.swift
/host/spi-builder-workspace/Sources/AuthFoundation/JWT/Extensions/ClaimConvertable+Extensions.swift:40:45: warning: conformance of 'NSString' to protocol 'Sendable' was already stated in the type's module 'Foundation'
38 | #else
39 | @_documentation(visibility: private)
40 | extension NSString: @unchecked @retroactive Sendable, ClaimConvertable {}
   |                                             `- warning: conformance of 'NSString' to protocol 'Sendable' was already stated in the type's module 'Foundation'
41 | #endif
42 |
Foundation.NSString:2:11: note: 'NSString' declares conformance to protocol 'Sendable' here
1 | @available(*, unavailable)
2 | extension NSString : @unchecked Sendable {
  |           `- note: 'NSString' declares conformance to protocol 'Sendable' here
3 | }
[52/141] Compiling AuthFoundation DelegateCollection.swift
[53/141] Compiling AuthFoundation Dictionary+Extensions.swift
[54/141] Compiling AuthFoundation Expires.swift
[55/141] Compiling AuthFoundation JSONCoding.swift
[56/141] Compiling AuthFoundation JSONDecodable.swift
[57/141] Compiling AuthFoundation JSONValue.swift
[58/141] Compiling AuthFoundation Lock.swift
[59/141] Compiling AuthFoundation LockedValue.swift
[60/141] Compiling AuthFoundation String+Extensions.swift
[61/141] Compiling AuthFoundation TimeCoordinator.swift
[62/141] Compiling AuthFoundation URL+Extensions.swift
[63/141] Compiling AuthFoundation URL+InternalExtensions.swift
[64/141] Compiling AuthFoundation WeakCollection.swift
[65/141] Compiling AuthFoundation Version+AuthFoundation.swift
[66/141] Compiling AuthFoundation resource_bundle_accessor.swift
[67/141] Compiling AuthFoundation ProvidesOAuth2Parameters+Extensions.swift
[68/141] Compiling AuthFoundation Token+Extensions.swift
[69/141] Compiling AuthFoundation OAuth2Client+Initializers.swift
[70/141] Compiling AuthFoundation OAuth2Client.swift
[71/141] Compiling AuthFoundation OAuth2ClientConfiguration.swift
[72/141] Compiling AuthFoundation OAuth2Error.swift
[73/141] Compiling AuthFoundation OAuth2TokenRequest.swift
[74/141] Compiling AuthFoundation PropertyListConfigurationError+Extensions.swift
[75/141] Compiling AuthFoundation ProvidesOAuth2Parameters.swift
[76/141] Compiling AuthFoundation KeysRequest.swift
[77/141] Compiling AuthFoundation OpenIdConfigurationRequest.swift
[78/141] Compiling AuthFoundation Token+Requests.swift
[79/141] Compiling AuthFoundation UserInfo+Requests.swift
[80/141] Compiling AuthFoundation GrantType.swift
[81/141] Compiling AuthFoundation OAuth2ServerError.swift
[82/141] Compiling AuthFoundation JWK.swift
[83/141] Compiling AuthFoundation JWKS.swift
[84/141] Compiling AuthFoundation JWT.swift
[85/141] Compiling AuthFoundation JWTError.swift
[86/141] Compiling AuthFoundation Claim.swift
[87/141] Compiling AuthFoundation ClaimCollection.swift
[88/141] Compiling AuthFoundation ClaimContainer.swift
[89/141] Compiling AuthFoundation ClaimConvertable.swift
[90/141] Compiling AuthFoundation ClaimError.swift
[91/141] Compiling AuthFoundation JWKValidator.swift
[92/141] Compiling AuthFoundation Migration.swift
[93/141] Compiling AuthFoundation Migrator.swift
[94/141] Compiling AuthFoundation OIDCLegacyMigrator.swift
[95/141] Compiling AuthFoundation SDKName.swift
[96/141] Compiling AuthFoundation SDKVersion.swift
[97/141] Compiling AuthFoundation Token+TestExtensions.swift
[98/141] Compiling AuthFoundation UserDefaultsTokenStorage.swift
[99/141] Compiling AuthFoundation Token+Context.swift
[100/141] Compiling AuthFoundation Token+Enums.swift
[101/141] Compiling AuthFoundation Token+Initialization.swift
[102/141] Compiling AuthFoundation Token+Metadata.swift
[103/141] Compiling AuthFoundation Token.swift
[104/141] Compiling AuthFoundation TokenError.swift
[105/141] Compiling AuthFoundation TokenExchangeCoordinator.swift
[106/141] Compiling AuthFoundation TokenHashValidator.swift
[107/141] Compiling AuthFoundation TokenStorage.swift
[108/141] Compiling AuthFoundation Credential+Extensions.swift
[109/141] Compiling AuthFoundation Credential.swift
[110/141] Compiling AuthFoundation CredentialCoordinator.swift
[111/141] Compiling AuthFoundation CredentialDataSource+Extensions.swift
[112/141] Compiling AuthFoundation OpenIdConfiguration.swift
[113/141] Compiling AuthFoundation OpenIdProviderMetadata.swift
[114/141] Compiling AuthFoundation TokenInfo.swift
[115/141] Compiling AuthFoundation UserInfo.swift
[116/141] Compiling AuthFoundation Keychain+Extensions.swift
[117/141] Compiling AuthFoundation KeychainProtocol.swift
[118/141] Compiling AuthFoundation Keychain.swift
[119/141] Compiling AuthFoundation KeychainError.swift
[120/141] Compiling AuthFoundation PKCE.swift
[121/141] Compiling AuthFoundation PKCEExtensions.swift
[122/141] Compiling AuthFoundation SecurityUtilities.swift
[123/141] Compiling AuthFoundation IDTokenValidator.swift
[124/141] Compiling AuthFoundation DefaultTokenExchangeCoordinator.swift
[125/141] Compiling AuthFoundation KeychainTokenStorage.swift
[126/141] Compiling AuthFoundation Token+Internal.swift
[127/141] Compiling AuthFoundation APIClient.swift
[128/141] Compiling AuthFoundation APIClientError.swift
[129/141] Compiling AuthFoundation APIRateLimit.swift
[130/141] Compiling AuthFoundation APIRequest.swift
[131/141] Compiling AuthFoundation APIRequestArgument.swift
[132/141] Compiling AuthFoundation APIResponse.swift
[133/141] Compiling AuthFoundation FormDataExtensions.swift
[134/141] Compiling AuthFoundation String+AuthFoundation.swift
[135/141] Compiling AuthFoundation OktaAPIError.swift
[136/141] Compiling AuthFoundation URLSessionProtocol.swift
[137/141] Compiling AuthFoundation Authentication.swift
[138/141] Compiling AuthFoundation ClientAuthentication.swift
[139/141] Compiling AuthFoundation Configuration+Initializers.swift
[140/141] Compiling AuthFoundation Configuration.swift
[141/141] Compiling AuthFoundation OAuth2Error+Extensions.swift
BUILD FAILURE 6.2 linux