The Swift Package Index logo.Swift Package Index

Build Information

Failed to build SwiftiePod, reference main (766303), with Swift 6.2 for Wasm on 9 Apr 2026 22:04:39 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/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.2-latest swift build --swift-sdk wasm32-unknown-wasip1 2>&1

Build 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.2
Building package at path:  $PWD
https://github.com/robert-northmind/SwiftiePod.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/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.2-latest swift build --swift-sdk wasm32-unknown-wasip1 2>&1
wasm-6.2-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:2a8b2d9e022a9894c61e0736af7cdaa1ee64c002dbb133a55c0d7e8980b3ad16
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.2-latest
warning: multiple Swift SDKs match target triple `wasm32-unknown-wasip1` and host triple x86_64-unknown-linux-gnu, selected one at /root/.swiftpm/swift-sdks/swift-6.2-RELEASE_wasm.artifactbundle/swift-6.2-RELEASE_wasm/wasm32-unknown-wasip1/swift-sdk.json
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/12] Compiling SwiftiePod Provider.swift
[4/13] Compiling SwiftiePod ProviderScope.swift
[5/13] Compiling SwiftiePod ProviderResolver.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/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 InternalProviderResolver.swift
/host/spi-builder-workspace/Sources/SwiftiePod/InternalProviderResolver.swift:28:17: warning: stored property 'onBuildStart' of 'Sendable'-conforming struct 'InternalProviderResolver' contains 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' contains 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' contains 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' contains 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/13] Compiling SwiftiePod ProcessingAnyProvider.swift
/host/spi-builder-workspace/Sources/SwiftiePod/InternalProviderResolver.swift:28:17: warning: stored property 'onBuildStart' of 'Sendable'-conforming struct 'InternalProviderResolver' contains 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' contains 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' contains 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' contains 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>
[9/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]] = [:]
[10/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]()
error: emit-module command failed with exit code 1 (use -v to see invocation)
[11/13] Compiling SwiftiePod AnyProvider.swift
[12/13] Compiling SwiftiePod CyclicDependencyHandler.swift
[13/13] Emitting module SwiftiePod
/host/spi-builder-workspace/Sources/SwiftiePod/InternalProviderResolver.swift:28:17: warning: stored property 'onBuildStart' of 'Sendable'-conforming struct 'InternalProviderResolver' contains 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' contains 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' contains 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' contains 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()
BUILD FAILURE 6.2 wasm