The Swift Package Index logo.Swift Package Index

Build Information

Failed to build SwiftiePod, reference 1.1.3 (9dd4fb), with Swift 6.3 for Wasm on 19 Apr 2026 15:14:50 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-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.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/robert-northmind/SwiftiePod.git
Reference: 1.1.3
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
 * tag               1.1.3      -> FETCH_HEAD
HEAD is now at 9dd4fba Merge pull request #7 from robert-northmind/fix/reentrant-self-cycle-detection
Cloned https://github.com/robert-northmind/SwiftiePod.git
Revision (git rev-parse @):
9dd4fba6775e592741761493c212ddf13e0334b8
SUCCESS checkout https://github.com/robert-northmind/SwiftiePod.git at 1.1.3
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/robert-northmind/SwiftiePod.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-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.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1
wasm-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:d69f4e7582c319245442d62a08b2d7c7fd5a0c0c69f5d2ef11d1530cd8d3329b
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/12] Compiling SwiftiePod ProviderScope.swift
[4/12] Compiling SwiftiePod ProviderResolver.swift
[5/13] Compiling SwiftiePod AnyProvider.swift
[6/13] Compiling SwiftiePod CyclicDependencyHandler.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[7/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) -> ()'; 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) -> ()'; 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) -> ()'; 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) -> ()'; 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()
[8/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.
[9/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) -> ()'; 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) -> ()'; 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) -> ()'; 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) -> ()'; 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>
[10/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) -> ()'; 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) -> ()'; 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) -> ()'; 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) -> ()'; 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>
[11/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]()
[12/13] Compiling SwiftiePod Provider.swift
[13/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]] = [:]
BUILD FAILURE 6.3 wasm