The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Failed to build DataThespian, reference 1.0.2 (717182), with Swift 6.2 for Wasm on 6 Oct 2025 23:29:31 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/finestructure/spi-images:wasm-6.2-latest swift build --swift-sdk wasm32-unknown-wasip1 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/brightdigit/DataThespian.git
Reference: 1.0.2
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/brightdigit/DataThespian
 * tag               1.0.2      -> FETCH_HEAD
HEAD is now at 717182c Migrating from subscription to FetchDescriptors
Cloned https://github.com/brightdigit/DataThespian.git
Revision (git rev-parse @):
717182cf73fcdfc045ef5928d9d6b014801f8e67
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/brightdigit/DataThespian.git at 1.0.2
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/brightdigit/DataThespian.git
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/finestructure/spi-images:wasm-6.2-latest swift build --swift-sdk wasm32-unknown-wasip1 2>&1
wasm-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f6b6b9bdb5d5605d727da337418fc455cd8a0394d3a815b70631008c48829755
Status: Image is up to date for registry.gitlab.com/finestructure/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
Fetching https://github.com/brightdigit/FelinePine.git
Fetching https://github.com/swiftlang/swift-docc-plugin
[1/586] Fetching felinepine
[587/2719] Fetching felinepine, swift-docc-plugin
Fetched https://github.com/brightdigit/FelinePine.git from cache (0.28s)
[256/2133] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (0.37s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.5 (2.87s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3540] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.45s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.86s)
Computing version for https://github.com/brightdigit/FelinePine.git
Computed https://github.com/brightdigit/FelinePine.git at 1.0.0 (0.31s)
Creating working copy for https://github.com/brightdigit/FelinePine.git
Working copy of https://github.com/brightdigit/FelinePine.git resolved at 1.0.0
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.5
[1/1] Compiling plugin Swift-DocC Preview
[2/2] Compiling plugin Swift-DocC
Building for debugging...
[2/5] Write sources
[4/5] Write swift-version-24593BA9C3E375BF.txt
[6/13] Compiling FelinePine Pine.swift
[7/13] Compiling FelinePine NSLocking.swift
[8/13] Emitting module FelinePine
[9/13] Compiling FelinePine Loggable.swift
[10/13] Compiling FelinePine Feline.swift
[11/13] Compiling FelinePine Logger+LoggerCategory.swift
[12/13] Compiling FelinePine LoggingSystem.swift
[13/13] Compiling FelinePine LoggingSystem+LoggingSystemRepository.swift
[15/53] Compiling DataThespian EnvironmentValues+Database.swift
[16/53] Compiling DataThespian ModelActor+Database.swift
[17/53] Compiling DataThespian ModelActorDatabase.swift
[18/53] Compiling DataThespian QueryError.swift
[19/53] Compiling DataThespian Queryable+Extensions.swift
[20/53] Compiling DataThespian Queryable.swift
[21/53] Compiling DataThespian AnyModel.swift
/host/spi-builder-workspace/Sources/DataThespian/Assert.swift:38:49: error: cannot find 'Thread' in scope
36 | ///   - assertIsBackground: A boolean indicating whether the assertion should be made.
37 | @inlinable internal func assert(isMainThread: Bool, if assertIsBackground: Bool) {
38 |   assert(!assertIsBackground || isMainThread == Thread.isMainThread)
   |                                                 `- error: cannot find 'Thread' in scope
39 | }
40 |
/host/spi-builder-workspace/Sources/DataThespian/Assert.swift:45:26: error: cannot find 'Thread' in scope
43 | /// - Parameter isMainThread: A boolean indicating whether the current thread should be the main thread.
44 | @inlinable internal func assert(isMainThread: Bool) {
45 |   assert(isMainThread == Thread.isMainThread)
   |                          `- error: cannot find 'Thread' in scope
46 | }
47 |
[22/53] Compiling DataThespian Assert.swift
/host/spi-builder-workspace/Sources/DataThespian/Assert.swift:38:49: error: cannot find 'Thread' in scope
36 | ///   - assertIsBackground: A boolean indicating whether the assertion should be made.
37 | @inlinable internal func assert(isMainThread: Bool, if assertIsBackground: Bool) {
38 |   assert(!assertIsBackground || isMainThread == Thread.isMainThread)
   |                                                 `- error: cannot find 'Thread' in scope
39 | }
40 |
/host/spi-builder-workspace/Sources/DataThespian/Assert.swift:45:26: error: cannot find 'Thread' in scope
43 | /// - Parameter isMainThread: A boolean indicating whether the current thread should be the main thread.
44 | @inlinable internal func assert(isMainThread: Bool) {
45 |   assert(isMainThread == Thread.isMainThread)
   |                          `- error: cannot find 'Thread' in scope
46 | }
47 |
[23/53] Compiling DataThespian BackgroundDatabase.swift
/host/spi-builder-workspace/Sources/DataThespian/Assert.swift:38:49: error: cannot find 'Thread' in scope
36 | ///   - assertIsBackground: A boolean indicating whether the assertion should be made.
37 | @inlinable internal func assert(isMainThread: Bool, if assertIsBackground: Bool) {
38 |   assert(!assertIsBackground || isMainThread == Thread.isMainThread)
   |                                                 `- error: cannot find 'Thread' in scope
39 | }
40 |
/host/spi-builder-workspace/Sources/DataThespian/Assert.swift:45:26: error: cannot find 'Thread' in scope
43 | /// - Parameter isMainThread: A boolean indicating whether the current thread should be the main thread.
44 | @inlinable internal func assert(isMainThread: Bool) {
45 |   assert(isMainThread == Thread.isMainThread)
   |                          `- error: cannot find 'Thread' in scope
46 | }
47 |
[24/53] Compiling DataThespian Database+Extras.swift
/host/spi-builder-workspace/Sources/DataThespian/Assert.swift:38:49: error: cannot find 'Thread' in scope
36 | ///   - assertIsBackground: A boolean indicating whether the assertion should be made.
37 | @inlinable internal func assert(isMainThread: Bool, if assertIsBackground: Bool) {
38 |   assert(!assertIsBackground || isMainThread == Thread.isMainThread)
   |                                                 `- error: cannot find 'Thread' in scope
39 | }
40 |
/host/spi-builder-workspace/Sources/DataThespian/Assert.swift:45:26: error: cannot find 'Thread' in scope
43 | /// - Parameter isMainThread: A boolean indicating whether the current thread should be the main thread.
44 | @inlinable internal func assert(isMainThread: Bool) {
45 |   assert(isMainThread == Thread.isMainThread)
   |                          `- error: cannot find 'Thread' in scope
46 | }
47 |
[25/53] Compiling DataThespian Database+Queryable.swift
/host/spi-builder-workspace/Sources/DataThespian/Assert.swift:38:49: error: cannot find 'Thread' in scope
36 | ///   - assertIsBackground: A boolean indicating whether the assertion should be made.
37 | @inlinable internal func assert(isMainThread: Bool, if assertIsBackground: Bool) {
38 |   assert(!assertIsBackground || isMainThread == Thread.isMainThread)
   |                                                 `- error: cannot find 'Thread' in scope
39 | }
40 |
/host/spi-builder-workspace/Sources/DataThespian/Assert.swift:45:26: error: cannot find 'Thread' in scope
43 | /// - Parameter isMainThread: A boolean indicating whether the current thread should be the main thread.
44 | @inlinable internal func assert(isMainThread: Bool) {
45 |   assert(isMainThread == Thread.isMainThread)
   |                          `- error: cannot find 'Thread' in scope
46 | }
47 |
[26/53] Compiling DataThespian Database.swift
/host/spi-builder-workspace/Sources/DataThespian/Assert.swift:38:49: error: cannot find 'Thread' in scope
36 | ///   - assertIsBackground: A boolean indicating whether the assertion should be made.
37 | @inlinable internal func assert(isMainThread: Bool, if assertIsBackground: Bool) {
38 |   assert(!assertIsBackground || isMainThread == Thread.isMainThread)
   |                                                 `- error: cannot find 'Thread' in scope
39 | }
40 |
/host/spi-builder-workspace/Sources/DataThespian/Assert.swift:45:26: error: cannot find 'Thread' in scope
43 | /// - Parameter isMainThread: A boolean indicating whether the current thread should be the main thread.
44 | @inlinable internal func assert(isMainThread: Bool) {
45 |   assert(isMainThread == Thread.isMainThread)
   |                          `- error: cannot find 'Thread' in scope
46 | }
47 |
error: emit-module command failed with exit code 1 (use -v to see invocation)
[27/58] Emitting module DataThespian
/host/spi-builder-workspace/Sources/DataThespian/Assert.swift:38:49: error: cannot find 'Thread' in scope
36 | ///   - assertIsBackground: A boolean indicating whether the assertion should be made.
37 | @inlinable internal func assert(isMainThread: Bool, if assertIsBackground: Bool) {
38 |   assert(!assertIsBackground || isMainThread == Thread.isMainThread)
   |                                                 `- error: cannot find 'Thread' in scope
39 | }
40 |
/host/spi-builder-workspace/Sources/DataThespian/Assert.swift:45:26: error: cannot find 'Thread' in scope
43 | /// - Parameter isMainThread: A boolean indicating whether the current thread should be the main thread.
44 | @inlinable internal func assert(isMainThread: Bool) {
45 |   assert(isMainThread == Thread.isMainThread)
   |                          `- error: cannot find 'Thread' in scope
46 | }
47 |
[28/58] Compiling DataThespian Selector.swift
[29/58] Compiling DataThespian Unique.swift
[30/58] Compiling DataThespian UniqueKey.swift
[31/58] Compiling DataThespian UniqueKeyPath.swift
[32/58] Compiling DataThespian UniqueKeys.swift
[33/58] Compiling DataThespian Model.swift
[34/58] Compiling DataThespian ManagedObjectMetadata.swift
[35/58] Compiling DataThespian Notification.swift
[36/58] Compiling DataThespian NotificationDataUpdate.swift
[37/58] Compiling DataThespian RegistrationCollection.swift
[38/58] Compiling DataThespian FetchDescriptor.swift
[39/58] Compiling DataThespian ModelContext+Extension.swift
[40/58] Compiling DataThespian ModelContext+Queryable.swift
[41/58] Compiling DataThespian ModelContext.swift
[42/58] Compiling DataThespian NSManagedObjectID.swift
[43/58] Compiling DataThespian CollectionDifference.swift
[44/58] Compiling DataThespian DataAgent.swift
[45/58] Compiling DataThespian DataMonitor.swift
[46/58] Compiling DataThespian DatabaseChangeSet.swift
[47/58] Compiling DataThespian DatabaseChangeType.swift
[48/58] Compiling DataThespian DatabaseMonitoring.swift
[49/58] Compiling DataThespian AgentRegister.swift
[50/58] Compiling DataThespian DatabaseChangePublicist.swift
[51/58] Compiling DataThespian EnvironmentValues+DatabaseChangePublicist.swift
[52/58] Compiling DataThespian PublishingAgent.swift
[53/58] Compiling DataThespian PublishingRegister.swift
[54/58] Compiling DataThespian CollectionSynchronizer.swift
[55/58] Compiling DataThespian ModelDifferenceSynchronizer.swift
[56/58] Compiling DataThespian ModelSynchronizer.swift
[57/58] Compiling DataThespian SynchronizationDifference.swift
[58/58] Compiling DataThespian ThespianLogging.swift
BUILD FAILURE 6.2 wasm