Build Information
Failed to build CoordinatorPlus, reference main (27dee8), with Swift 6.3 for Wasm on 12 Apr 2026 21:02:23 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.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/richardpiazza/CoordinatorPlus.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/richardpiazza/CoordinatorPlus
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 27dee8b Removes all deprecated type-aliases and methods. (#2)
Cloned https://github.com/richardpiazza/CoordinatorPlus.git
Revision (git rev-parse @):
27dee8b58d780df59d560e1f3d0f32ff8f4d603b
SUCCESS checkout https://github.com/richardpiazza/CoordinatorPlus.git at main
========================================
Build
========================================
Selected platform: wasm
Swift version: 6.3
Building package at path: $PWD
https://github.com/richardpiazza/CoordinatorPlus.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.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 CoordinatorPlus SplitViewFlowStepCoordinator.swift
[4/13] Compiling CoordinatorPlus NavigationFlowStepCoordinator.swift
[5/13] Compiling CoordinatorPlus TabBarFlowStepCoordinator.swift
[6/13] Compiling CoordinatorPlus FlowStepViewController.swift
[7/13] Compiling CoordinatorPlus FlowStep.swift
[8/13] Compiling CoordinatorPlus FlowCoordinator.swift
[9/13] Compiling CoordinatorPlus FlowCoordinatorDelegate.swift
[10/13] Compiling CoordinatorPlus FlowStepCoordinator.swift
[11/13] Emitting module CoordinatorPlus
[12/13] Compiling CoordinatorPlus AppCoordinator.swift
/host/spi-builder-workspace/Sources/CoordinatorPlus/AppCoordinator.swift:122:13: error: cannot find 'DispatchQueue' in scope
120 | func beginFlow(_ flow: Flow, animated: Bool = true, with data: Any? = nil) {
121 | if let currentCoordinator = self.currentCoordinator, currentCoordinator.flow.isEqual(flow) {
122 | DispatchQueue.main.async {
| `- error: cannot find 'DispatchQueue' in scope
123 | currentCoordinator.resume()
124 | }
/host/spi-builder-workspace/Sources/CoordinatorPlus/AppCoordinator.swift:127:13: error: cannot find 'DispatchQueue' in scope
125 | return
126 | } else if let modalCoordinator = self.modalCoordinator, modalCoordinator.flow.isEqual(flow) {
127 | DispatchQueue.main.async {
| `- error: cannot find 'DispatchQueue' in scope
128 | modalCoordinator.resume()
129 | }
/host/spi-builder-workspace/Sources/CoordinatorPlus/AppCoordinator.swift:145:13: error: cannot find 'DispatchQueue' in scope
143 | // Don't stack modals & don't present a non-modal over existing modal
144 | if let modalCoordinator = self.modalCoordinator, nextCoordinator.isModal {
145 | DispatchQueue.main.async {
| `- error: cannot find 'DispatchQueue' in scope
146 | modalCoordinator.end()
147 | }
/host/spi-builder-workspace/Sources/CoordinatorPlus/AppCoordinator.swift:153:13: error: cannot find 'DispatchQueue' in scope
151 | }
152 | } else if let currentCoordinator = self.currentCoordinator, !nextCoordinator.isModal {
153 | DispatchQueue.main.async {
| `- error: cannot find 'DispatchQueue' in scope
154 | currentCoordinator.end()
155 | }
/host/spi-builder-workspace/Sources/CoordinatorPlus/AppCoordinator.swift:161:13: error: cannot find 'DispatchQueue' in scope
159 | }
160 | } else {
161 | DispatchQueue.main.async {
| `- error: cannot find 'DispatchQueue' in scope
162 | self.currentCoordinator?.pause()
163 | nextCoordinator.begin(with: data)
/host/spi-builder-workspace/Sources/CoordinatorPlus/AppCoordinator.swift:171:13: error: cannot find 'DispatchQueue' in scope
169 | func endFlow(_ flow: Flow) {
170 | if let coordinator = self.currentCoordinator, coordinator.flow.isEqual(flow) {
171 | DispatchQueue.main.async {
| `- error: cannot find 'DispatchQueue' in scope
172 | coordinator.end()
173 | }
/host/spi-builder-workspace/Sources/CoordinatorPlus/AppCoordinator.swift:177:13: error: cannot find 'DispatchQueue' in scope
175 | self.currentCoordinator = nil
176 | } else if let coordinator = self.modalCoordinator, coordinator.flow.isEqual(flow) {
177 | DispatchQueue.main.async {
| `- error: cannot find 'DispatchQueue' in scope
178 | coordinator.end()
179 | }
/host/spi-builder-workspace/Sources/CoordinatorPlus/AppCoordinator.swift:182:13: error: cannot find 'DispatchQueue' in scope
180 | dismiss(flowCoordinator: coordinator, animated: true, completion: nil)
181 | self.modalCoordinator = nil
182 | DispatchQueue.main.async {
| `- error: cannot find 'DispatchQueue' in scope
183 | self.currentCoordinator?.resume()
184 | }
[13/13] Compiling CoordinatorPlus Flow.swift
/host/spi-builder-workspace/Sources/CoordinatorPlus/AppCoordinator.swift:122:13: error: cannot find 'DispatchQueue' in scope
120 | func beginFlow(_ flow: Flow, animated: Bool = true, with data: Any? = nil) {
121 | if let currentCoordinator = self.currentCoordinator, currentCoordinator.flow.isEqual(flow) {
122 | DispatchQueue.main.async {
| `- error: cannot find 'DispatchQueue' in scope
123 | currentCoordinator.resume()
124 | }
/host/spi-builder-workspace/Sources/CoordinatorPlus/AppCoordinator.swift:127:13: error: cannot find 'DispatchQueue' in scope
125 | return
126 | } else if let modalCoordinator = self.modalCoordinator, modalCoordinator.flow.isEqual(flow) {
127 | DispatchQueue.main.async {
| `- error: cannot find 'DispatchQueue' in scope
128 | modalCoordinator.resume()
129 | }
/host/spi-builder-workspace/Sources/CoordinatorPlus/AppCoordinator.swift:145:13: error: cannot find 'DispatchQueue' in scope
143 | // Don't stack modals & don't present a non-modal over existing modal
144 | if let modalCoordinator = self.modalCoordinator, nextCoordinator.isModal {
145 | DispatchQueue.main.async {
| `- error: cannot find 'DispatchQueue' in scope
146 | modalCoordinator.end()
147 | }
/host/spi-builder-workspace/Sources/CoordinatorPlus/AppCoordinator.swift:153:13: error: cannot find 'DispatchQueue' in scope
151 | }
152 | } else if let currentCoordinator = self.currentCoordinator, !nextCoordinator.isModal {
153 | DispatchQueue.main.async {
| `- error: cannot find 'DispatchQueue' in scope
154 | currentCoordinator.end()
155 | }
/host/spi-builder-workspace/Sources/CoordinatorPlus/AppCoordinator.swift:161:13: error: cannot find 'DispatchQueue' in scope
159 | }
160 | } else {
161 | DispatchQueue.main.async {
| `- error: cannot find 'DispatchQueue' in scope
162 | self.currentCoordinator?.pause()
163 | nextCoordinator.begin(with: data)
/host/spi-builder-workspace/Sources/CoordinatorPlus/AppCoordinator.swift:171:13: error: cannot find 'DispatchQueue' in scope
169 | func endFlow(_ flow: Flow) {
170 | if let coordinator = self.currentCoordinator, coordinator.flow.isEqual(flow) {
171 | DispatchQueue.main.async {
| `- error: cannot find 'DispatchQueue' in scope
172 | coordinator.end()
173 | }
/host/spi-builder-workspace/Sources/CoordinatorPlus/AppCoordinator.swift:177:13: error: cannot find 'DispatchQueue' in scope
175 | self.currentCoordinator = nil
176 | } else if let coordinator = self.modalCoordinator, coordinator.flow.isEqual(flow) {
177 | DispatchQueue.main.async {
| `- error: cannot find 'DispatchQueue' in scope
178 | coordinator.end()
179 | }
/host/spi-builder-workspace/Sources/CoordinatorPlus/AppCoordinator.swift:182:13: error: cannot find 'DispatchQueue' in scope
180 | dismiss(flowCoordinator: coordinator, animated: true, completion: nil)
181 | self.modalCoordinator = nil
182 | DispatchQueue.main.async {
| `- error: cannot find 'DispatchQueue' in scope
183 | self.currentCoordinator?.resume()
184 | }
BUILD FAILURE 6.3 wasm