The Swift Package Index logo.Swift Package Index

Build Information

Failed to build Rapid, reference main (e1296f), with Swift 6.2 for Wasm on 2 Nov 2025 22:24:12 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/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/kaascevich/Rapid.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/kaascevich/Rapid
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at e1296f3 remove dependency on swift-docc-plugin
Cloned https://github.com/kaascevich/Rapid.git
Revision (git rev-parse @):
e1296f38e6a71e8e6787b464cc2ae452bba5562a
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/kaascevich/Rapid.git at main
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/kaascevich/Rapid.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/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/embedded-swift-sdk.json
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[4/7] Emitting module TestHelpers
/host/spi-builder-workspace/Sources/TestHelpers/Tags.swift:4:8: error: no such module 'Testing'
 2 | // SPDX-License-Identifier: AGPL-3.0-or-later
 3 |
 4 | import Testing
   |        `- error: no such module 'Testing'
 5 |
 6 | extension Tag {
[5/7] Compiling TestHelpers Helpers.swift
/host/spi-builder-workspace/Sources/TestHelpers/Tags.swift:4:8: error: no such module 'Testing'
 2 | // SPDX-License-Identifier: AGPL-3.0-or-later
 3 |
 4 | import Testing
   |        `- error: no such module 'Testing'
 5 |
 6 | extension Tag {
error: emit-module command failed with exit code 1 (use -v to see invocation)
[6/7] Emitting module Rapid
/host/spi-builder-workspace/Sources/Rapid/Conformances/PartialRangeFromConformances.swift:57:28: error: 'Mirror' is unavailable
55 |   /// If this type has value semantics, the mirror should be unaffected by
56 |   /// subsequent mutations of the instance.
57 |   public var customMirror: Mirror {
   |                            `- error: 'Mirror' is unavailable
58 |     Mirror(self, children: ["lowerBound": lowerBound])
59 |   }
Swift.Mirror:2:15: note: 'Mirror' has been explicitly marked unavailable here
 1 | @available(*, unavailable)
 2 | public struct Mirror {
   |               `- note: 'Mirror' has been explicitly marked unavailable here
 3 |     public enum AncestorRepresentation {
 4 |         case generated
/host/spi-builder-workspace/Sources/Rapid/Conformances/PartialRangeFromConformances.swift:52:42: error: 'CustomReflectable' is unavailable
50 | }
51 |
52 | extension PartialRangeFrom: @retroactive CustomReflectable {
   |                                          `- error: 'CustomReflectable' is unavailable
53 |   /// The custom mirror for this instance.
54 |   ///
Swift.CustomReflectable:2:17: note: 'CustomReflectable' has been explicitly marked unavailable here
1 | @available(*, unavailable)
2 | public protocol CustomReflectable {
  |                 `- note: 'CustomReflectable' has been explicitly marked unavailable here
3 |     var customMirror: Mirror { get }
4 | }
/host/spi-builder-workspace/Sources/Rapid/Conformances/PartialRangeFromConformances.swift:48:25: error: 'init(reflecting:)' is unavailable: unavailable in embedded Swift
46 |   /// A textual representation of the range, suitable for debugging.
47 |   public var debugDescription: String {
48 |     "PartialRangeFrom(\(String(reflecting: lowerBound))...)"
   |                         `- error: 'init(reflecting:)' is unavailable: unavailable in embedded Swift
49 |   }
50 | }
Swift.String.init:2:8: note: 'init(reflecting:)' has been explicitly marked unavailable here
1 | struct String {
2 | public init<Subject>(reflecting subject: Subject)}
  |        `- note: 'init(reflecting:)' has been explicitly marked unavailable here
3 |
/host/spi-builder-workspace/Sources/Rapid/Conformances/PartialRangeFromConformances.swift:58:5: error: 'Mirror' is unavailable
56 |   /// subsequent mutations of the instance.
57 |   public var customMirror: Mirror {
58 |     Mirror(self, children: ["lowerBound": lowerBound])
   |     `- error: 'Mirror' is unavailable
59 |   }
60 | }
Swift.Mirror:2:15: note: 'Mirror' has been explicitly marked unavailable here
 1 | @available(*, unavailable)
 2 | public struct Mirror {
   |               `- note: 'Mirror' has been explicitly marked unavailable here
 3 |     public enum AncestorRepresentation {
 4 |         case generated
/host/spi-builder-workspace/Sources/Rapid/Conformances/PartialRangeThroughConformances.swift:57:28: error: 'Mirror' is unavailable
55 |   /// If this type has value semantics, the mirror should be unaffected by
56 |   /// subsequent mutations of the instance.
57 |   public var customMirror: Mirror {
   |                            `- error: 'Mirror' is unavailable
58 |     Mirror(self, children: ["upperBound": upperBound])
59 |   }
Swift.Mirror:2:15: note: 'Mirror' has been explicitly marked unavailable here
 1 | @available(*, unavailable)
 2 | public struct Mirror {
   |               `- note: 'Mirror' has been explicitly marked unavailable here
 3 |     public enum AncestorRepresentation {
 4 |         case generated
/host/spi-builder-workspace/Sources/Rapid/Conformances/PartialRangeThroughConformances.swift:52:45: error: 'CustomReflectable' is unavailable
50 | }
51 |
52 | extension PartialRangeThrough: @retroactive CustomReflectable {
   |                                             `- error: 'CustomReflectable' is unavailable
53 |   /// The custom mirror for this instance.
54 |   ///
Swift.CustomReflectable:2:17: note: 'CustomReflectable' has been explicitly marked unavailable here
1 | @available(*, unavailable)
2 | public protocol CustomReflectable {
  |                 `- note: 'CustomReflectable' has been explicitly marked unavailable here
3 |     var customMirror: Mirror { get }
4 | }
/host/spi-builder-workspace/Sources/Rapid/Conformances/PartialRangeThroughConformances.swift:48:31: error: 'init(reflecting:)' is unavailable: unavailable in embedded Swift
46 |   /// A textual representation of the range, suitable for debugging.
47 |   public var debugDescription: String {
48 |     "PartialRangeThrough(...\(String(reflecting: upperBound)))"
   |                               `- error: 'init(reflecting:)' is unavailable: unavailable in embedded Swift
49 |   }
50 | }
Swift.String.init:2:8: note: 'init(reflecting:)' has been explicitly marked unavailable here
1 | struct String {
2 | public init<Subject>(reflecting subject: Subject)}
  |        `- note: 'init(reflecting:)' has been explicitly marked unavailable here
3 |
/host/spi-builder-workspace/Sources/Rapid/Conformances/PartialRangeThroughConformances.swift:58:5: error: 'Mirror' is unavailable
56 |   /// subsequent mutations of the instance.
57 |   public var customMirror: Mirror {
58 |     Mirror(self, children: ["upperBound": upperBound])
   |     `- error: 'Mirror' is unavailable
59 |   }
60 | }
Swift.Mirror:2:15: note: 'Mirror' has been explicitly marked unavailable here
 1 | @available(*, unavailable)
 2 | public struct Mirror {
   |               `- note: 'Mirror' has been explicitly marked unavailable here
 3 |     public enum AncestorRepresentation {
 4 |         case generated
/host/spi-builder-workspace/Sources/Rapid/Conformances/PartialRangeUpToConformances.swift:57:28: error: 'Mirror' is unavailable
55 |   /// If this type has value semantics, the mirror should be unaffected by
56 |   /// subsequent mutations of the instance.
57 |   public var customMirror: Mirror {
   |                            `- error: 'Mirror' is unavailable
58 |     Mirror(self, children: ["upperBound": upperBound])
59 |   }
Swift.Mirror:2:15: note: 'Mirror' has been explicitly marked unavailable here
 1 | @available(*, unavailable)
 2 | public struct Mirror {
   |               `- note: 'Mirror' has been explicitly marked unavailable here
 3 |     public enum AncestorRepresentation {
 4 |         case generated
/host/spi-builder-workspace/Sources/Rapid/Conformances/PartialRangeUpToConformances.swift:52:42: error: 'CustomReflectable' is unavailable
50 | }
51 |
52 | extension PartialRangeUpTo: @retroactive CustomReflectable {
   |                                          `- error: 'CustomReflectable' is unavailable
53 |   /// The custom mirror for this instance.
54 |   ///
Swift.CustomReflectable:2:17: note: 'CustomReflectable' has been explicitly marked unavailable here
1 | @available(*, unavailable)
2 | public protocol CustomReflectable {
  |                 `- note: 'CustomReflectable' has been explicitly marked unavailable here
3 |     var customMirror: Mirror { get }
4 | }
/host/spi-builder-workspace/Sources/Rapid/Conformances/PartialRangeUpToConformances.swift:48:28: error: 'init(reflecting:)' is unavailable: unavailable in embedded Swift
46 |   /// A textual representation of the range, suitable for debugging.
47 |   public var debugDescription: String {
48 |     "PartialRangeUpTo(..<\(String(reflecting: upperBound)))"
   |                            `- error: 'init(reflecting:)' is unavailable: unavailable in embedded Swift
49 |   }
50 | }
Swift.String.init:2:8: note: 'init(reflecting:)' has been explicitly marked unavailable here
1 | struct String {
2 | public init<Subject>(reflecting subject: Subject)}
  |        `- note: 'init(reflecting:)' has been explicitly marked unavailable here
3 |
/host/spi-builder-workspace/Sources/Rapid/Conformances/PartialRangeUpToConformances.swift:58:5: error: 'Mirror' is unavailable
56 |   /// subsequent mutations of the instance.
57 |   public var customMirror: Mirror {
58 |     Mirror(self, children: ["upperBound": upperBound])
   |     `- error: 'Mirror' is unavailable
59 |   }
60 | }
Swift.Mirror:2:15: note: 'Mirror' has been explicitly marked unavailable here
 1 | @available(*, unavailable)
 2 | public struct Mirror {
   |               `- note: 'Mirror' has been explicitly marked unavailable here
 3 |     public enum AncestorRepresentation {
 4 |         case generated
/host/spi-builder-workspace/Sources/Rapid/PatternMatching/PatternMatching.swift:55:11: error: cannot find type 'Regex' in scope
53 |
54 | @available(iOS 16, macOS 13, tvOS 16, watchOS 9, *)
55 | extension Regex {
   |           `- error: cannot find type 'Regex' in scope
56 |   /// Returns a Boolean value indicating whether a regex matches the given
57 |   /// string in its entirety.
/host/spi-builder-workspace/Sources/Rapid/Strings/Stringify.swift:56:3: error: 'init(describing:)' is unavailable: unavailable in embedded Swift
54 | @inlinable
55 | public prefix func § (_ instance: some Any) -> String {
56 |   String(describing: instance)
   |   `- error: 'init(describing:)' is unavailable: unavailable in embedded Swift
57 | }
58 |
Swift.String.init:2:8: note: 'init(describing:)' has been explicitly marked unavailable here
1 | struct String {
2 | public init<Subject>(describing instance: Subject)}
  |        `- note: 'init(describing:)' has been explicitly marked unavailable here
3 |
/host/spi-builder-workspace/Sources/Rapid/Conformances/PartialRangeFromConformances.swift:57:28: error: 'Mirror' is unavailable
55 |   /// If this type has value semantics, the mirror should be unaffected by
56 |   /// subsequent mutations of the instance.
57 |   public var customMirror: Mirror {
   |                            `- error: 'Mirror' is unavailable
58 |     Mirror(self, children: ["lowerBound": lowerBound])
59 |   }
Swift.Mirror:2:15: note: 'Mirror' has been explicitly marked unavailable here
 1 | @available(*, unavailable)
 2 | public struct Mirror {
   |               `- note: 'Mirror' has been explicitly marked unavailable here
 3 |     public enum AncestorRepresentation {
 4 |         case generated
/host/spi-builder-workspace/Sources/Rapid/Conformances/PartialRangeFromConformances.swift:52:42: error: 'CustomReflectable' is unavailable
50 | }
51 |
52 | extension PartialRangeFrom: @retroactive CustomReflectable {
   |                                          `- error: 'CustomReflectable' is unavailable
53 |   /// The custom mirror for this instance.
54 |   ///
Swift.CustomReflectable:2:17: note: 'CustomReflectable' has been explicitly marked unavailable here
1 | @available(*, unavailable)
2 | public protocol CustomReflectable {
  |                 `- note: 'CustomReflectable' has been explicitly marked unavailable here
3 |     var customMirror: Mirror { get }
4 | }
/host/spi-builder-workspace/Sources/Rapid/Conformances/PartialRangeFromConformances.swift:48:25: error: 'init(reflecting:)' is unavailable: unavailable in embedded Swift
46 |   /// A textual representation of the range, suitable for debugging.
47 |   public var debugDescription: String {
48 |     "PartialRangeFrom(\(String(reflecting: lowerBound))...)"
   |                         `- error: 'init(reflecting:)' is unavailable: unavailable in embedded Swift
49 |   }
50 | }
Swift.String.init:2:8: note: 'init(reflecting:)' has been explicitly marked unavailable here
1 | struct String {
2 | public init<Subject>(reflecting subject: Subject)}
  |        `- note: 'init(reflecting:)' has been explicitly marked unavailable here
3 |
/host/spi-builder-workspace/Sources/Rapid/Conformances/PartialRangeFromConformances.swift:58:5: error: 'Mirror' is unavailable
56 |   /// subsequent mutations of the instance.
57 |   public var customMirror: Mirror {
58 |     Mirror(self, children: ["lowerBound": lowerBound])
   |     `- error: 'Mirror' is unavailable
59 |   }
60 | }
Swift.Mirror:2:15: note: 'Mirror' has been explicitly marked unavailable here
 1 | @available(*, unavailable)
 2 | public struct Mirror {
   |               `- note: 'Mirror' has been explicitly marked unavailable here
 3 |     public enum AncestorRepresentation {
 4 |         case generated
/host/spi-builder-workspace/Sources/Rapid/Conformances/PartialRangeThroughConformances.swift:57:28: error: 'Mirror' is unavailable
55 |   /// If this type has value semantics, the mirror should be unaffected by
56 |   /// subsequent mutations of the instance.
57 |   public var customMirror: Mirror {
   |                            `- error: 'Mirror' is unavailable
58 |     Mirror(self, children: ["upperBound": upperBound])
59 |   }
Swift.Mirror:2:15: note: 'Mirror' has been explicitly marked unavailable here
 1 | @available(*, unavailable)
 2 | public struct Mirror {
   |               `- note: 'Mirror' has been explicitly marked unavailable here
 3 |     public enum AncestorRepresentation {
 4 |         case generated
/host/spi-builder-workspace/Sources/Rapid/Conformances/PartialRangeThroughConformances.swift:52:45: error: 'CustomReflectable' is unavailable
50 | }
51 |
52 | extension PartialRangeThrough: @retroactive CustomReflectable {
   |                                             `- error: 'CustomReflectable' is unavailable
53 |   /// The custom mirror for this instance.
54 |   ///
Swift.CustomReflectable:2:17: note: 'CustomReflectable' has been explicitly marked unavailable here
1 | @available(*, unavailable)
2 | public protocol CustomReflectable {
  |                 `- note: 'CustomReflectable' has been explicitly marked unavailable here
3 |     var customMirror: Mirror { get }
4 | }
/host/spi-builder-workspace/Sources/Rapid/Conformances/PartialRangeThroughConformances.swift:48:31: error: 'init(reflecting:)' is unavailable: unavailable in embedded Swift
46 |   /// A textual representation of the range, suitable for debugging.
47 |   public var debugDescription: String {
48 |     "PartialRangeThrough(...\(String(reflecting: upperBound)))"
   |                               `- error: 'init(reflecting:)' is unavailable: unavailable in embedded Swift
49 |   }
50 | }
Swift.String.init:2:8: note: 'init(reflecting:)' has been explicitly marked unavailable here
1 | struct String {
2 | public init<Subject>(reflecting subject: Subject)}
  |        `- note: 'init(reflecting:)' has been explicitly marked unavailable here
3 |
/host/spi-builder-workspace/Sources/Rapid/Conformances/PartialRangeThroughConformances.swift:58:5: error: 'Mirror' is unavailable
56 |   /// subsequent mutations of the instance.
57 |   public var customMirror: Mirror {
58 |     Mirror(self, children: ["upperBound": upperBound])
   |     `- error: 'Mirror' is unavailable
59 |   }
60 | }
Swift.Mirror:2:15: note: 'Mirror' has been explicitly marked unavailable here
 1 | @available(*, unavailable)
 2 | public struct Mirror {
   |               `- note: 'Mirror' has been explicitly marked unavailable here
 3 |     public enum AncestorRepresentation {
 4 |         case generated
/host/spi-builder-workspace/Sources/Rapid/Conformances/PartialRangeUpToConformances.swift:57:28: error: 'Mirror' is unavailable
55 |   /// If this type has value semantics, the mirror should be unaffected by
56 |   /// subsequent mutations of the instance.
57 |   public var customMirror: Mirror {
   |                            `- error: 'Mirror' is unavailable
58 |     Mirror(self, children: ["upperBound": upperBound])
59 |   }
Swift.Mirror:2:15: note: 'Mirror' has been explicitly marked unavailable here
 1 | @available(*, unavailable)
 2 | public struct Mirror {
   |               `- note: 'Mirror' has been explicitly marked unavailable here
 3 |     public enum AncestorRepresentation {
 4 |         case generated
/host/spi-builder-workspace/Sources/Rapid/Conformances/PartialRangeUpToConformances.swift:52:42: error: 'CustomReflectable' is unavailable
50 | }
51 |
52 | extension PartialRangeUpTo: @retroactive CustomReflectable {
   |                                          `- error: 'CustomReflectable' is unavailable
53 |   /// The custom mirror for this instance.
54 |   ///
Swift.CustomReflectable:2:17: note: 'CustomReflectable' has been explicitly marked unavailable here
1 | @available(*, unavailable)
2 | public protocol CustomReflectable {
  |                 `- note: 'CustomReflectable' has been explicitly marked unavailable here
3 |     var customMirror: Mirror { get }
4 | }
/host/spi-builder-workspace/Sources/Rapid/Conformances/PartialRangeUpToConformances.swift:48:28: error: 'init(reflecting:)' is unavailable: unavailable in embedded Swift
46 |   /// A textual representation of the range, suitable for debugging.
47 |   public var debugDescription: String {
48 |     "PartialRangeUpTo(..<\(String(reflecting: upperBound)))"
   |                            `- error: 'init(reflecting:)' is unavailable: unavailable in embedded Swift
49 |   }
50 | }
Swift.String.init:2:8: note: 'init(reflecting:)' has been explicitly marked unavailable here
1 | struct String {
2 | public init<Subject>(reflecting subject: Subject)}
  |        `- note: 'init(reflecting:)' has been explicitly marked unavailable here
3 |
/host/spi-builder-workspace/Sources/Rapid/Conformances/PartialRangeUpToConformances.swift:58:5: error: 'Mirror' is unavailable
56 |   /// subsequent mutations of the instance.
57 |   public var customMirror: Mirror {
58 |     Mirror(self, children: ["upperBound": upperBound])
   |     `- error: 'Mirror' is unavailable
59 |   }
60 | }
Swift.Mirror:2:15: note: 'Mirror' has been explicitly marked unavailable here
 1 | @available(*, unavailable)
 2 | public struct Mirror {
   |               `- note: 'Mirror' has been explicitly marked unavailable here
 3 |     public enum AncestorRepresentation {
 4 |         case generated
/host/spi-builder-workspace/Sources/Rapid/PatternMatching/PatternMatching.swift:55:11: error: cannot find type 'Regex' in scope
53 |
54 | @available(iOS 16, macOS 13, tvOS 16, watchOS 9, *)
55 | extension Regex {
   |           `- error: cannot find type 'Regex' in scope
56 |   /// Returns a Boolean value indicating whether a regex matches the given
57 |   /// string in its entirety.
BUILD FAILURE 6.2 wasm