Build Information
Failed to build SwiftiePod, reference main (766303), with Swift 6.1 for Wasm on 9 Apr 2026 22:10:49 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.69.2
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/robert-northmind/SwiftiePod.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/robert-northmind/SwiftiePod
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 7663034 Merge pull request #8 from robert-northmind/codex/fix-cyclic-handler-test-race
Cloned https://github.com/robert-northmind/SwiftiePod.git
Revision (git rev-parse @):
766303409ddc9478f4a4157fd9ceffd1b7c93d21
SUCCESS checkout https://github.com/robert-northmind/SwiftiePod.git at main
========================================
Build
========================================
Selected platform: wasm
Swift version: 6.1
Building package at path: $PWD
https://github.com/robert-northmind/SwiftiePod.git
https://github.com/robert-northmind/SwiftiePod.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
],
"manifest_display_name" : "SwiftiePod",
"name" : "SwiftiePod",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "SwiftiePod",
"targets" : [
"SwiftiePod"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "SwiftiePodTests",
"module_type" : "SwiftTarget",
"name" : "SwiftiePodTests",
"path" : "Tests/SwiftiePodTests",
"sources" : [
"AnyProviderTests.swift",
"ProcessingAnyProvidersTest.swift",
"ProviderScopeTests.swift",
"ProviderTests.swift",
"ReentrantResolveTests.swift",
"SwiftiePodTests.swift",
"TestUtils.swift"
],
"target_dependencies" : [
"SwiftiePod"
],
"type" : "test"
},
{
"c99name" : "SwiftiePod",
"module_type" : "SwiftTarget",
"name" : "SwiftiePod",
"path" : "Sources/SwiftiePod",
"product_memberships" : [
"SwiftiePod"
],
"sources" : [
"AnyProvider.swift",
"CyclicDependencyHandler.swift",
"InternalProviderResolver.swift",
"ProcessingAnyProvider.swift",
"Provider.swift",
"ProviderInstanceContainer.swift",
"ProviderOverrider.swift",
"ProviderResolver.swift",
"ProviderScope.swift",
"SwiftiePod.swift"
],
"type" : "library"
}
],
"tools_version" : "5.8"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
wasm-6.1-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:276d66a16377d3ee059b2e3429cbc1154d9f01e42871e5d702fd5d8b9044d93d
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.1-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/12] Compiling SwiftiePod ProviderResolver.swift
[4/12] Compiling SwiftiePod ProviderScope.swift
[5/13] Compiling SwiftiePod Provider.swift
[6/13] Compiling SwiftiePod SwiftiePod.swift
/host/spi-builder-workspace/Sources/SwiftiePod/SwiftiePod.swift:30:33: error: cannot find 'DispatchQueue' in scope
28 | }
29 |
30 | private let dispatchQueue = DispatchQueue(label: "SwiftiePod.resolve.lock.queue")
| `- error: cannot find 'DispatchQueue' in scope
31 | // Used to detect whether the current execution context is already inside the queue.
32 | private let queueKey = DispatchSpecificKey<Bool>()
/host/spi-builder-workspace/Sources/SwiftiePod/SwiftiePod.swift:32:28: error: cannot find 'DispatchSpecificKey' in scope
30 | private let dispatchQueue = DispatchQueue(label: "SwiftiePod.resolve.lock.queue")
31 | // Used to detect whether the current execution context is already inside the queue.
32 | private let queueKey = DispatchSpecificKey<Bool>()
| `- error: cannot find 'DispatchSpecificKey' in scope
33 |
34 | private let instanceContainer = ProviderInstanceContainer()
/host/spi-builder-workspace/Sources/SwiftiePod/ProviderInstanceContainer.swift:11:33: error: cannot find 'DispatchQueue' in scope
9 |
10 | final class ProviderInstanceContainer: @unchecked Sendable {
11 | private let dispatchQueue = DispatchQueue(label: "instance.container.lock.queue")
| `- error: cannot find 'DispatchQueue' in scope
12 |
13 | private var scopeProvidersDict: [ObjectIdentifier: [AnyProvider: Any]] = [:]
/host/spi-builder-workspace/Sources/SwiftiePod/SwiftiePod.swift:60:12: error: cannot find 'DispatchQueue' in scope
58 | // If we are already executing on the queue (re-entrant call from within a builder
59 | // that references this pod directly), skip the `sync` to prevent a deadlock.
60 | if DispatchQueue.getSpecific(key: queueKey) == true {
| `- error: cannot find 'DispatchQueue' in scope
61 | // Detect a self-referential cycle: the same provider's builder is already
62 | // on the call stack and has called pod.resolve() on itself.
[7/13] Compiling SwiftiePod ProviderOverrider.swift
/host/spi-builder-workspace/Sources/SwiftiePod/ProviderOverrider.swift:15:33: error: cannot find 'DispatchQueue' in scope
13 | }
14 |
15 | private let dispatchQueue = DispatchQueue(label: "provider.overrider.lock.queue")
| `- error: cannot find 'DispatchQueue' in scope
16 |
17 | private var originalToOverrideProviderDict = [AnyProvider: AnyProvider]()
[8/13] Compiling SwiftiePod ProviderInstanceContainer.swift
/host/spi-builder-workspace/Sources/SwiftiePod/ProviderInstanceContainer.swift:11:33: error: cannot find 'DispatchQueue' in scope
9 |
10 | final class ProviderInstanceContainer: @unchecked Sendable {
11 | private let dispatchQueue = DispatchQueue(label: "instance.container.lock.queue")
| `- error: cannot find 'DispatchQueue' in scope
12 |
13 | private var scopeProvidersDict: [ObjectIdentifier: [AnyProvider: Any]] = [:]
error: emit-module command failed with exit code 1 (use -v to see invocation)
[9/13] Compiling SwiftiePod AnyProvider.swift
/host/spi-builder-workspace/Sources/SwiftiePod/CyclicDependencyHandler.swift:12:5: warning: var 'cyclicDependencyHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 | /// Internal handler for cyclic dependency errors.
11 | /// Replaceable to allow testing code paths that trigger cycle detection.
12 | var cyclicDependencyHandler: (String) -> Never = { message in
| |- warning: var 'cyclicDependencyHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'cyclicDependencyHandler' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'cyclicDependencyHandler' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | Swift.fatalError(message)
14 | }
[10/13] Compiling SwiftiePod CyclicDependencyHandler.swift
/host/spi-builder-workspace/Sources/SwiftiePod/CyclicDependencyHandler.swift:12:5: warning: var 'cyclicDependencyHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 | /// Internal handler for cyclic dependency errors.
11 | /// Replaceable to allow testing code paths that trigger cycle detection.
12 | var cyclicDependencyHandler: (String) -> Never = { message in
| |- warning: var 'cyclicDependencyHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'cyclicDependencyHandler' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'cyclicDependencyHandler' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | Swift.fatalError(message)
14 | }
[11/13] Emitting module SwiftiePod
/host/spi-builder-workspace/Sources/SwiftiePod/CyclicDependencyHandler.swift:12:5: warning: var 'cyclicDependencyHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 | /// Internal handler for cyclic dependency errors.
11 | /// Replaceable to allow testing code paths that trigger cycle detection.
12 | var cyclicDependencyHandler: (String) -> Never = { message in
| |- warning: var 'cyclicDependencyHandler' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'cyclicDependencyHandler' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make var 'cyclicDependencyHandler' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 | Swift.fatalError(message)
14 | }
/host/spi-builder-workspace/Sources/SwiftiePod/InternalProviderResolver.swift:28:17: warning: stored property 'onBuildStart' of 'Sendable'-conforming struct 'InternalProviderResolver' has non-sendable type '((ObjectIdentifier) -> Void)?'; this is an error in the Swift 6 language mode
26 | private let processingAnyProviders: ProcessingAnyProviders
27 | private let providerOverrider: ProviderOverrider
28 | private let onBuildStart: ((ObjectIdentifier) -> Void)?
| |- warning: stored property 'onBuildStart' of 'Sendable'-conforming struct 'InternalProviderResolver' has non-sendable type '((ObjectIdentifier) -> Void)?'; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
29 | private let onBuildEnd: ((ObjectIdentifier) -> Void)?
30 |
/host/spi-builder-workspace/Sources/SwiftiePod/InternalProviderResolver.swift:29:17: warning: stored property 'onBuildEnd' of 'Sendable'-conforming struct 'InternalProviderResolver' has non-sendable type '((ObjectIdentifier) -> Void)?'; this is an error in the Swift 6 language mode
27 | private let providerOverrider: ProviderOverrider
28 | private let onBuildStart: ((ObjectIdentifier) -> Void)?
29 | private let onBuildEnd: ((ObjectIdentifier) -> Void)?
| |- warning: stored property 'onBuildEnd' of 'Sendable'-conforming struct 'InternalProviderResolver' has non-sendable type '((ObjectIdentifier) -> Void)?'; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
30 |
31 | func resolve<T>(_ originalProvider: Provider<T>) -> T {
/host/spi-builder-workspace/Sources/SwiftiePod/ProcessingAnyProvider.swift:24:40: error: cannot find 'DispatchQueue' in scope
22 |
23 | struct ProcessingAnyProviders: @unchecked Sendable {
24 | private static let dispatchQueue = DispatchQueue(label: "processing.any.providers.lock.queue")
| `- error: cannot find 'DispatchQueue' in scope
25 |
26 | private let providers: Set<ProcessingAnyProvider>
/host/spi-builder-workspace/Sources/SwiftiePod/ProviderInstanceContainer.swift:11:33: error: cannot find 'DispatchQueue' in scope
9 |
10 | final class ProviderInstanceContainer: @unchecked Sendable {
11 | private let dispatchQueue = DispatchQueue(label: "instance.container.lock.queue")
| `- error: cannot find 'DispatchQueue' in scope
12 |
13 | private var scopeProvidersDict: [ObjectIdentifier: [AnyProvider: Any]] = [:]
/host/spi-builder-workspace/Sources/SwiftiePod/ProviderOverrider.swift:15:33: error: cannot find 'DispatchQueue' in scope
13 | }
14 |
15 | private let dispatchQueue = DispatchQueue(label: "provider.overrider.lock.queue")
| `- error: cannot find 'DispatchQueue' in scope
16 |
17 | private var originalToOverrideProviderDict = [AnyProvider: AnyProvider]()
/host/spi-builder-workspace/Sources/SwiftiePod/SwiftiePod.swift:30:33: error: cannot find 'DispatchQueue' in scope
28 | }
29 |
30 | private let dispatchQueue = DispatchQueue(label: "SwiftiePod.resolve.lock.queue")
| `- error: cannot find 'DispatchQueue' in scope
31 | // Used to detect whether the current execution context is already inside the queue.
32 | private let queueKey = DispatchSpecificKey<Bool>()
/host/spi-builder-workspace/Sources/SwiftiePod/SwiftiePod.swift:32:28: error: cannot find 'DispatchSpecificKey' in scope
30 | private let dispatchQueue = DispatchQueue(label: "SwiftiePod.resolve.lock.queue")
31 | // Used to detect whether the current execution context is already inside the queue.
32 | private let queueKey = DispatchSpecificKey<Bool>()
| `- error: cannot find 'DispatchSpecificKey' in scope
33 |
34 | private let instanceContainer = ProviderInstanceContainer()
[12/13] Compiling SwiftiePod InternalProviderResolver.swift
/host/spi-builder-workspace/Sources/SwiftiePod/InternalProviderResolver.swift:28:17: warning: stored property 'onBuildStart' of 'Sendable'-conforming struct 'InternalProviderResolver' has non-sendable type '((ObjectIdentifier) -> Void)?'; this is an error in the Swift 6 language mode
26 | private let processingAnyProviders: ProcessingAnyProviders
27 | private let providerOverrider: ProviderOverrider
28 | private let onBuildStart: ((ObjectIdentifier) -> Void)?
| |- warning: stored property 'onBuildStart' of 'Sendable'-conforming struct 'InternalProviderResolver' has non-sendable type '((ObjectIdentifier) -> Void)?'; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
29 | private let onBuildEnd: ((ObjectIdentifier) -> Void)?
30 |
/host/spi-builder-workspace/Sources/SwiftiePod/InternalProviderResolver.swift:29:17: warning: stored property 'onBuildEnd' of 'Sendable'-conforming struct 'InternalProviderResolver' has non-sendable type '((ObjectIdentifier) -> Void)?'; this is an error in the Swift 6 language mode
27 | private let providerOverrider: ProviderOverrider
28 | private let onBuildStart: ((ObjectIdentifier) -> Void)?
29 | private let onBuildEnd: ((ObjectIdentifier) -> Void)?
| |- warning: stored property 'onBuildEnd' of 'Sendable'-conforming struct 'InternalProviderResolver' has non-sendable type '((ObjectIdentifier) -> Void)?'; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
30 |
31 | func resolve<T>(_ originalProvider: Provider<T>) -> T {
/host/spi-builder-workspace/Sources/SwiftiePod/ProcessingAnyProvider.swift:24:40: error: cannot find 'DispatchQueue' in scope
22 |
23 | struct ProcessingAnyProviders: @unchecked Sendable {
24 | private static let dispatchQueue = DispatchQueue(label: "processing.any.providers.lock.queue")
| `- error: cannot find 'DispatchQueue' in scope
25 |
26 | private let providers: Set<ProcessingAnyProvider>
[13/13] Compiling SwiftiePod ProcessingAnyProvider.swift
/host/spi-builder-workspace/Sources/SwiftiePod/InternalProviderResolver.swift:28:17: warning: stored property 'onBuildStart' of 'Sendable'-conforming struct 'InternalProviderResolver' has non-sendable type '((ObjectIdentifier) -> Void)?'; this is an error in the Swift 6 language mode
26 | private let processingAnyProviders: ProcessingAnyProviders
27 | private let providerOverrider: ProviderOverrider
28 | private let onBuildStart: ((ObjectIdentifier) -> Void)?
| |- warning: stored property 'onBuildStart' of 'Sendable'-conforming struct 'InternalProviderResolver' has non-sendable type '((ObjectIdentifier) -> Void)?'; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
29 | private let onBuildEnd: ((ObjectIdentifier) -> Void)?
30 |
/host/spi-builder-workspace/Sources/SwiftiePod/InternalProviderResolver.swift:29:17: warning: stored property 'onBuildEnd' of 'Sendable'-conforming struct 'InternalProviderResolver' has non-sendable type '((ObjectIdentifier) -> Void)?'; this is an error in the Swift 6 language mode
27 | private let providerOverrider: ProviderOverrider
28 | private let onBuildStart: ((ObjectIdentifier) -> Void)?
29 | private let onBuildEnd: ((ObjectIdentifier) -> Void)?
| |- warning: stored property 'onBuildEnd' of 'Sendable'-conforming struct 'InternalProviderResolver' has non-sendable type '((ObjectIdentifier) -> Void)?'; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
30 |
31 | func resolve<T>(_ originalProvider: Provider<T>) -> T {
/host/spi-builder-workspace/Sources/SwiftiePod/ProcessingAnyProvider.swift:24:40: error: cannot find 'DispatchQueue' in scope
22 |
23 | struct ProcessingAnyProviders: @unchecked Sendable {
24 | private static let dispatchQueue = DispatchQueue(label: "processing.any.providers.lock.queue")
| `- error: cannot find 'DispatchQueue' in scope
25 |
26 | private let providers: Set<ProcessingAnyProvider>
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:276d66a16377d3ee059b2e3429cbc1154d9f01e42871e5d702fd5d8b9044d93d
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/11] Compiling SwiftiePod ProviderInstanceContainer.swift
/host/spi-builder-workspace/Sources/SwiftiePod/ProviderInstanceContainer.swift:11:33: error: cannot find 'DispatchQueue' in scope
9 |
10 | final class ProviderInstanceContainer: @unchecked Sendable {
11 | private let dispatchQueue = DispatchQueue(label: "instance.container.lock.queue")
| `- error: cannot find 'DispatchQueue' in scope
12 |
13 | private var scopeProvidersDict: [ObjectIdentifier: [AnyProvider: Any]] = [:]
error: emit-module command failed with exit code 1 (use -v to see invocation)
[3/12] Compiling SwiftiePod AnyProvider.swift
[4/12] Compiling SwiftiePod CyclicDependencyHandler.swift
[5/12] Emitting module SwiftiePod
/host/spi-builder-workspace/Sources/SwiftiePod/InternalProviderResolver.swift:28:17: warning: stored property 'onBuildStart' of 'Sendable'-conforming struct 'InternalProviderResolver' has non-sendable type '((ObjectIdentifier) -> Void)?'; this is an error in the Swift 6 language mode
26 | private let processingAnyProviders: ProcessingAnyProviders
27 | private let providerOverrider: ProviderOverrider
28 | private let onBuildStart: ((ObjectIdentifier) -> Void)?
| |- warning: stored property 'onBuildStart' of 'Sendable'-conforming struct 'InternalProviderResolver' has non-sendable type '((ObjectIdentifier) -> Void)?'; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
29 | private let onBuildEnd: ((ObjectIdentifier) -> Void)?
30 |
/host/spi-builder-workspace/Sources/SwiftiePod/InternalProviderResolver.swift:29:17: warning: stored property 'onBuildEnd' of 'Sendable'-conforming struct 'InternalProviderResolver' has non-sendable type '((ObjectIdentifier) -> Void)?'; this is an error in the Swift 6 language mode
27 | private let providerOverrider: ProviderOverrider
28 | private let onBuildStart: ((ObjectIdentifier) -> Void)?
29 | private let onBuildEnd: ((ObjectIdentifier) -> Void)?
| |- warning: stored property 'onBuildEnd' of 'Sendable'-conforming struct 'InternalProviderResolver' has non-sendable type '((ObjectIdentifier) -> Void)?'; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
30 |
31 | func resolve<T>(_ originalProvider: Provider<T>) -> T {
/host/spi-builder-workspace/Sources/SwiftiePod/ProcessingAnyProvider.swift:24:40: error: cannot find 'DispatchQueue' in scope
22 |
23 | struct ProcessingAnyProviders: @unchecked Sendable {
24 | private static let dispatchQueue = DispatchQueue(label: "processing.any.providers.lock.queue")
| `- error: cannot find 'DispatchQueue' in scope
25 |
26 | private let providers: Set<ProcessingAnyProvider>
/host/spi-builder-workspace/Sources/SwiftiePod/ProviderInstanceContainer.swift:11:33: error: cannot find 'DispatchQueue' in scope
9 |
10 | final class ProviderInstanceContainer: @unchecked Sendable {
11 | private let dispatchQueue = DispatchQueue(label: "instance.container.lock.queue")
| `- error: cannot find 'DispatchQueue' in scope
12 |
13 | private var scopeProvidersDict: [ObjectIdentifier: [AnyProvider: Any]] = [:]
/host/spi-builder-workspace/Sources/SwiftiePod/ProviderOverrider.swift:15:33: error: cannot find 'DispatchQueue' in scope
13 | }
14 |
15 | private let dispatchQueue = DispatchQueue(label: "provider.overrider.lock.queue")
| `- error: cannot find 'DispatchQueue' in scope
16 |
17 | private var originalToOverrideProviderDict = [AnyProvider: AnyProvider]()
/host/spi-builder-workspace/Sources/SwiftiePod/SwiftiePod.swift:30:33: error: cannot find 'DispatchQueue' in scope
28 | }
29 |
30 | private let dispatchQueue = DispatchQueue(label: "SwiftiePod.resolve.lock.queue")
| `- error: cannot find 'DispatchQueue' in scope
31 | // Used to detect whether the current execution context is already inside the queue.
32 | private let queueKey = DispatchSpecificKey<Bool>()
/host/spi-builder-workspace/Sources/SwiftiePod/SwiftiePod.swift:32:28: error: cannot find 'DispatchSpecificKey' in scope
30 | private let dispatchQueue = DispatchQueue(label: "SwiftiePod.resolve.lock.queue")
31 | // Used to detect whether the current execution context is already inside the queue.
32 | private let queueKey = DispatchSpecificKey<Bool>()
| `- error: cannot find 'DispatchSpecificKey' in scope
33 |
34 | private let instanceContainer = ProviderInstanceContainer()
[6/12] Compiling SwiftiePod InternalProviderResolver.swift
/host/spi-builder-workspace/Sources/SwiftiePod/InternalProviderResolver.swift:28:17: warning: stored property 'onBuildStart' of 'Sendable'-conforming struct 'InternalProviderResolver' has non-sendable type '((ObjectIdentifier) -> Void)?'; this is an error in the Swift 6 language mode
26 | private let processingAnyProviders: ProcessingAnyProviders
27 | private let providerOverrider: ProviderOverrider
28 | private let onBuildStart: ((ObjectIdentifier) -> Void)?
| |- warning: stored property 'onBuildStart' of 'Sendable'-conforming struct 'InternalProviderResolver' has non-sendable type '((ObjectIdentifier) -> Void)?'; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
29 | private let onBuildEnd: ((ObjectIdentifier) -> Void)?
30 |
/host/spi-builder-workspace/Sources/SwiftiePod/InternalProviderResolver.swift:29:17: warning: stored property 'onBuildEnd' of 'Sendable'-conforming struct 'InternalProviderResolver' has non-sendable type '((ObjectIdentifier) -> Void)?'; this is an error in the Swift 6 language mode
27 | private let providerOverrider: ProviderOverrider
28 | private let onBuildStart: ((ObjectIdentifier) -> Void)?
29 | private let onBuildEnd: ((ObjectIdentifier) -> Void)?
| |- warning: stored property 'onBuildEnd' of 'Sendable'-conforming struct 'InternalProviderResolver' has non-sendable type '((ObjectIdentifier) -> Void)?'; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
30 |
31 | func resolve<T>(_ originalProvider: Provider<T>) -> T {
/host/spi-builder-workspace/Sources/SwiftiePod/ProcessingAnyProvider.swift:24:40: error: cannot find 'DispatchQueue' in scope
22 |
23 | struct ProcessingAnyProviders: @unchecked Sendable {
24 | private static let dispatchQueue = DispatchQueue(label: "processing.any.providers.lock.queue")
| `- error: cannot find 'DispatchQueue' in scope
25 |
26 | private let providers: Set<ProcessingAnyProvider>
[7/12] Compiling SwiftiePod ProcessingAnyProvider.swift
/host/spi-builder-workspace/Sources/SwiftiePod/InternalProviderResolver.swift:28:17: warning: stored property 'onBuildStart' of 'Sendable'-conforming struct 'InternalProviderResolver' has non-sendable type '((ObjectIdentifier) -> Void)?'; this is an error in the Swift 6 language mode
26 | private let processingAnyProviders: ProcessingAnyProviders
27 | private let providerOverrider: ProviderOverrider
28 | private let onBuildStart: ((ObjectIdentifier) -> Void)?
| |- warning: stored property 'onBuildStart' of 'Sendable'-conforming struct 'InternalProviderResolver' has non-sendable type '((ObjectIdentifier) -> Void)?'; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
29 | private let onBuildEnd: ((ObjectIdentifier) -> Void)?
30 |
/host/spi-builder-workspace/Sources/SwiftiePod/InternalProviderResolver.swift:29:17: warning: stored property 'onBuildEnd' of 'Sendable'-conforming struct 'InternalProviderResolver' has non-sendable type '((ObjectIdentifier) -> Void)?'; this is an error in the Swift 6 language mode
27 | private let providerOverrider: ProviderOverrider
28 | private let onBuildStart: ((ObjectIdentifier) -> Void)?
29 | private let onBuildEnd: ((ObjectIdentifier) -> Void)?
| |- warning: stored property 'onBuildEnd' of 'Sendable'-conforming struct 'InternalProviderResolver' has non-sendable type '((ObjectIdentifier) -> Void)?'; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
30 |
31 | func resolve<T>(_ originalProvider: Provider<T>) -> T {
/host/spi-builder-workspace/Sources/SwiftiePod/ProcessingAnyProvider.swift:24:40: error: cannot find 'DispatchQueue' in scope
22 |
23 | struct ProcessingAnyProviders: @unchecked Sendable {
24 | private static let dispatchQueue = DispatchQueue(label: "processing.any.providers.lock.queue")
| `- error: cannot find 'DispatchQueue' in scope
25 |
26 | private let providers: Set<ProcessingAnyProvider>
[8/12] Compiling SwiftiePod ProviderOverrider.swift
/host/spi-builder-workspace/Sources/SwiftiePod/ProviderOverrider.swift:15:33: error: cannot find 'DispatchQueue' in scope
13 | }
14 |
15 | private let dispatchQueue = DispatchQueue(label: "provider.overrider.lock.queue")
| `- error: cannot find 'DispatchQueue' in scope
16 |
17 | private var originalToOverrideProviderDict = [AnyProvider: AnyProvider]()
[9/12] Compiling SwiftiePod Provider.swift
[10/12] Compiling SwiftiePod ProviderResolver.swift
[11/12] Compiling SwiftiePod ProviderScope.swift
[12/12] Compiling SwiftiePod SwiftiePod.swift
/host/spi-builder-workspace/Sources/SwiftiePod/SwiftiePod.swift:30:33: error: cannot find 'DispatchQueue' in scope
28 | }
29 |
30 | private let dispatchQueue = DispatchQueue(label: "SwiftiePod.resolve.lock.queue")
| `- error: cannot find 'DispatchQueue' in scope
31 | // Used to detect whether the current execution context is already inside the queue.
32 | private let queueKey = DispatchSpecificKey<Bool>()
/host/spi-builder-workspace/Sources/SwiftiePod/SwiftiePod.swift:32:28: error: cannot find 'DispatchSpecificKey' in scope
30 | private let dispatchQueue = DispatchQueue(label: "SwiftiePod.resolve.lock.queue")
31 | // Used to detect whether the current execution context is already inside the queue.
32 | private let queueKey = DispatchSpecificKey<Bool>()
| `- error: cannot find 'DispatchSpecificKey' in scope
33 |
34 | private let instanceContainer = ProviderInstanceContainer()
/host/spi-builder-workspace/Sources/SwiftiePod/SwiftiePod.swift:60:12: error: cannot find 'DispatchQueue' in scope
58 | // If we are already executing on the queue (re-entrant call from within a builder
59 | // that references this pod directly), skip the `sync` to prevent a deadlock.
60 | if DispatchQueue.getSpecific(key: queueKey) == true {
| `- error: cannot find 'DispatchQueue' in scope
61 | // Detect a self-referential cycle: the same provider's builder is already
62 | // on the call stack and has called pod.resolve() on itself.
BUILD FAILURE 6.1 wasm