The Swift Package Index logo.Swift Package Index

Build Information

Failed to build Motor, reference master (ec165d), with Swift 6.3 for Wasm on 18 Apr 2026 18:02:56 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/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/flint-engine/Motor.git
Reference: master
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/flint-engine/Motor
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at ec165db Merge branch 'develop'
Cloned https://github.com/flint-engine/Motor.git
Revision (git rev-parse @):
ec165db3be9046b956cc3a9b035d4134ab95998e
SUCCESS checkout https://github.com/flint-engine/Motor.git at master
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/flint-engine/Motor.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/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
Fetching https://github.com/flintbox/ANSIEscapeCode
[1/48] Fetching ansiescapecode
Fetched https://github.com/flintbox/ANSIEscapeCode from cache (0.25s)
Computing version for https://github.com/flintbox/ANSIEscapeCode
Computed https://github.com/flintbox/ANSIEscapeCode at 0.1.1 (0.63s)
Creating working copy for https://github.com/flintbox/ANSIEscapeCode
Working copy of https://github.com/flintbox/ANSIEscapeCode resolved at 0.1.1
Building for debugging...
[0/9] Write sources
[3/9] Write swift-version-24593BA9C3E375BF.txt
[5/19] Compiling ANSIEscapeCode String+ANSIEscapeCode.swift
[6/20] Compiling ANSIEscapeCode PrintANSIEscapeCode.swift
[7/20] Compiling ANSIEscapeCode EraseInDisplayType.swift
[8/20] Compiling ANSIEscapeCode EraseInLineType.swift
[9/20] Compiling ANSIEscapeCode Scroll.swift
[10/20] Emitting module ANSIEscapeCode
[11/20] Compiling ANSIEscapeCode ANSIEscapeCode.swift
[12/20] Compiling ANSIEscapeCode BackgroundColor.swift
[13/20] Compiling ANSIEscapeCode Cursor.swift
[14/20] Compiling ANSIEscapeCode Erase.swift
[15/20] Compiling ANSIEscapeCode TextColor.swift
[16/21] Wrapping AST for ANSIEscapeCode for debugging
[18/27] Compiling Motor Spinner.swift
/host/spi-builder-workspace/Sources/Motor/Spinner.swift:35:24: error: cannot find 'OperationQueue' in scope
33 |     open private(set) var animator: Animator?
34 |     /// Operation queue to run animation.
35 |     public let queue = OperationQueue()
   |                        `- error: cannot find 'OperationQueue' in scope
36 |
37 |     /// Spinner pattern.
/host/spi-builder-workspace/Sources/Motor/Spinner.swift:60:19: error: value of type 'Animator' has no member 'qualityOfService'
58 |         queue.cancelAllOperations()
59 |         animator = Animator(pattern: pattern, delay: delay)
60 |         animator!.qualityOfService = .utility
   |                   `- error: value of type 'Animator' has no member 'qualityOfService'
61 |         animator!.text = message
62 |         queue.addOperation(animator!)
/host/spi-builder-workspace/Sources/Motor/Spinner.swift:60:39: error: cannot infer contextual base in reference to member 'utility'
58 |         queue.cancelAllOperations()
59 |         animator = Animator(pattern: pattern, delay: delay)
60 |         animator!.qualityOfService = .utility
   |                                       `- error: cannot infer contextual base in reference to member 'utility'
61 |         animator!.text = message
62 |         queue.addOperation(animator!)
/host/spi-builder-workspace/Sources/Motor/Spinner.swift:79:19: error: value of type 'Animator' has no member 'cancel'
77 |     ///                      beside spinner.
78 |     open func stop(message: String? = nil) {
79 |         animator?.cancel()
   |                   `- error: value of type 'Animator' has no member 'cancel'
80 |         animator = nil
81 |         moveCursorToColumn(1)
[19/27] Compiling Motor Animator.swift
/host/spi-builder-workspace/Sources/Motor/Animator.swift:30:22: error: cannot find type 'Operation' in scope
28 |
29 | /// Spinner animator.
30 | open class Animator: Operation {
   |                      `- error: cannot find type 'Operation' in scope
31 |
32 |     /// Text displayed beside spinner.
/host/spi-builder-workspace/Sources/Motor/Animator.swift:52:24: error: method does not override any method from its superclass
50 |
51 |     /// Run animation.
52 |     open override func main() {
   |                        `- error: method does not override any method from its superclass
53 |         super.main()
54 |         sleep(delay)
/host/spi-builder-workspace/Sources/Motor/Animator.swift:48:9: error: 'super' cannot be used in class 'Animator' because it has no superclass
46 |         spinner = Animation(pattern: pattern)
47 |         self.delay = delay
48 |         super.init()
   |         `- error: 'super' cannot be used in class 'Animator' because it has no superclass
49 |     }
50 |
/host/spi-builder-workspace/Sources/Motor/Animator.swift:53:9: error: 'super' cannot be used in class 'Animator' because it has no superclass
51 |     /// Run animation.
52 |     open override func main() {
53 |         super.main()
   |         `- error: 'super' cannot be used in class 'Animator' because it has no superclass
54 |         sleep(delay)
55 |         while !isCancelled {
/host/spi-builder-workspace/Sources/Motor/Animator.swift:55:16: error: cannot find 'isCancelled' in scope
53 |         super.main()
54 |         sleep(delay)
55 |         while !isCancelled {
   |                `- error: cannot find 'isCancelled' in scope
56 |             eraseLineAndPrintFrame()
57 |             usleep(1000000 * 1/spinner.pattern.fps)
error: emit-module command failed with exit code 1 (use -v to see invocation)
[20/27] Compiling Motor Pattern.swift
[21/27] Compiling Motor Animation.swift
[22/27] Compiling Motor Patterns.swift
[23/27] Emitting module Motor
/host/spi-builder-workspace/Sources/Motor/Animator.swift:30:22: error: cannot find type 'Operation' in scope
28 |
29 | /// Spinner animator.
30 | open class Animator: Operation {
   |                      `- error: cannot find type 'Operation' in scope
31 |
32 |     /// Text displayed beside spinner.
/host/spi-builder-workspace/Sources/Motor/Animator.swift:52:24: error: method does not override any method from its superclass
50 |
51 |     /// Run animation.
52 |     open override func main() {
   |                        `- error: method does not override any method from its superclass
53 |         super.main()
54 |         sleep(delay)
/host/spi-builder-workspace/Sources/Motor/Spinner.swift:35:24: error: cannot find 'OperationQueue' in scope
33 |     open private(set) var animator: Animator?
34 |     /// Operation queue to run animation.
35 |     public let queue = OperationQueue()
   |                        `- error: cannot find 'OperationQueue' in scope
36 |
37 |     /// Spinner pattern.
BUILD FAILURE 6.3 wasm