Build Information
Failed to build WrkstrmMain, reference main (9a7c83), with Swift 6.2 for Wasm on 4 Feb 2026 06:13:42 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/finestructure/spi-images:wasm-6.2-latest swift build --swift-sdk wasm32-unknown-wasip1 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/wrkstrm/wrkstrm-main.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/wrkstrm/wrkstrm-main
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 9a7c83c chore: bump version to 3.0.4
Cloned https://github.com/wrkstrm/wrkstrm-main.git
Revision (git rev-parse @):
9a7c83c10d439eeb22c643cde50e826d33152d3b
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/wrkstrm/wrkstrm-main.git at main
========================================
Build
========================================
Selected platform: wasm
Swift version: 6.2
Building package at path: $PWD
https://github.com/wrkstrm/wrkstrm-main.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/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:c50555b47c4db0b0576f9f25702fbe2fdff28194c4a4f4c23a7dce4b3504c85e
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
warning: 'spi-builder-workspace': ---- Package Inject Deps: Begin ----
Use Local Deps? false
[]
---- Package Inject Deps: End ----
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[3/4] Emitting module WrkstrmMain
/host/spi-builder-workspace/sources/wrkstrm-main/CustomCollections/Classes/Tree.swift:13:10: error: attribute 'weak' cannot be used in embedded Swift
11 |
12 | /// A weak reference to the parent node of this tree node.
13 | public weak var parent: Tree?
| `- error: attribute 'weak' cannot be used in embedded Swift
14 |
15 | /// A textual representation of this tree node, which is based on the value it contains.
/host/spi-builder-workspace/sources/wrkstrm-main/CustomCollections/Classes/Tree.swift:16:41: error: 'init(describing:)' is unavailable: unavailable in embedded Swift
14 |
15 | /// A textual representation of this tree node, which is based on the value it contains.
16 | public var debugDescription: String { String(describing: value) }
| `- error: 'init(describing:)' is unavailable: unavailable in embedded Swift
17 |
18 | /// Initializes a new tree node with the given value.
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/wrkstrm-main/Extensions/CommandLine+Executable.swift:1:11: error: cannot find type 'CommandLine' in scope
1 | extension CommandLine {
| `- error: cannot find type 'CommandLine' in scope
2 | /// An array of substrings derived from splitting the first command-line argument by the "/"
3 | /// separator.
/host/spi-builder-workspace/sources/wrkstrm-main/Extensions/String/String+Count.swift:5:23: error: cannot find 'range' in scope
3 | var indices: [Int] = []
4 | var position = startIndex
5 | while let range = range(of: occurrence, range: position..<endIndex) {
| `- error: cannot find 'range' in scope
6 | let i = distance(from: startIndex, to: range.lowerBound)
7 | indices.append(i)
/host/spi-builder-workspace/sources/wrkstrm-main/Extensions/String/String+Source.swift:12:60: error: cannot convert value of type 'String' to expected argument type 'String.Element' (aka 'Character')
10 | /// - Returns: An optional array of `String` containing only source file paths, or `nil` if no
11 | /// source files are found.
12 | public var sourceFiles: [String]? { filter { $0.contains(".m") || $0.contains(".swift") } }
| `- error: cannot convert value of type 'String' to expected argument type 'String.Element' (aka 'Character')
13 |
14 | /// Filters the array to include only Interface Builder files.
/host/spi-builder-workspace/sources/wrkstrm-main/Extensions/String/String+Source.swift:12:81: error: cannot convert value of type 'String' to expected argument type 'String.Element' (aka 'Character')
10 | /// - Returns: An optional array of `String` containing only source file paths, or `nil` if no
11 | /// source files are found.
12 | public var sourceFiles: [String]? { filter { $0.contains(".m") || $0.contains(".swift") } }
| `- error: cannot convert value of type 'String' to expected argument type 'String.Element' (aka 'Character')
13 |
14 | /// Filters the array to include only Interface Builder files.
/host/spi-builder-workspace/sources/wrkstrm-main/Extensions/String/String+Source.swift:22:57: error: cannot convert value of type 'String' to expected argument type 'String.Element' (aka 'Character')
20 | /// - Returns: An optional array of `String` containing only Interface Builder file paths, or
21 | /// `nil` if no such files are found.
22 | public var nibFiles: [String]? { filter { $0.contains(".xib") || $0.contains(".storyboard") } }
| `- error: cannot convert value of type 'String' to expected argument type 'String.Element' (aka 'Character')
23 |
24 | /// Filters the array to include only Base Localization Interface Builder files.
/host/spi-builder-workspace/sources/wrkstrm-main/Extensions/String/String+Source.swift:22:80: error: cannot convert value of type 'String' to expected argument type 'String.Element' (aka 'Character')
20 | /// - Returns: An optional array of `String` containing only Interface Builder file paths, or
21 | /// `nil` if no such files are found.
22 | public var nibFiles: [String]? { filter { $0.contains(".xib") || $0.contains(".storyboard") } }
| `- error: cannot convert value of type 'String' to expected argument type 'String.Element' (aka 'Character')
23 |
24 | /// Filters the array to include only Base Localization Interface Builder files.
/host/spi-builder-workspace/sources/wrkstrm-main/Extensions/String/String+Source.swift:32:70: error: cannot convert value of type 'String' to expected argument type 'String.Element' (aka 'Character')
30 | /// - Returns: An optional array of `String` containing only Base Localization Interface Builder
31 | /// file paths, or `nil` if no such files are found.
32 | public var baseLocalizedNibFiles: [String]? { filter { $0.contains("Base.lproj") } }
| `- error: cannot convert value of type 'String' to expected argument type 'String.Element' (aka 'Character')
33 |
34 | /// Filters the array to include only non-localized and non-debug Interface Builder files.
/host/spi-builder-workspace/sources/wrkstrm-main/Extensions/String/String+Source.swift:44:27: error: cannot convert value of type 'String' to expected argument type 'String.Element' (aka 'Character')
42 | /// Builder file paths, or `nil` if no such files are found.
43 | public var unlocalizedNibFiles: [String]? {
44 | filter { !$0.contains("Base.lproj") && !$0.contains("Debug") }
| `- error: cannot convert value of type 'String' to expected argument type 'String.Element' (aka 'Character')
45 | }
46 | }
/host/spi-builder-workspace/sources/wrkstrm-main/Extensions/String/String+Source.swift:44:57: error: cannot convert value of type 'String' to expected argument type 'String.Element' (aka 'Character')
42 | /// Builder file paths, or `nil` if no such files are found.
43 | public var unlocalizedNibFiles: [String]? {
44 | filter { !$0.contains("Base.lproj") && !$0.contains("Debug") }
| `- error: cannot convert value of type 'String' to expected argument type 'String.Element' (aka 'Character')
45 | }
46 | }
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/AnyCodingKey.swift:20:29: error: 'CodingKey' is unavailable: unavailable in embedded Swift
18 | /// See also StackOverflow guidance on detecting empty JSON objects via keyed decoding:
19 | /// https://stackoverflow.com/questions/48943510/swift-codable-decode-empty-json-as-nil-or-empty-object
20 | public struct AnyCodingKey: CodingKey {
| `- error: 'CodingKey' is unavailable: unavailable in embedded Swift
21 | /// The dynamic string value of the key in JSON.
22 | public var stringValue: String
Swift.CodingKey:2:17: note: 'CodingKey' has been explicitly marked unavailable here
1 | @_unavailableInEmbedded
2 | public protocol CodingKey {
| `- note: 'CodingKey' has been explicitly marked unavailable here
3 | }
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/DynamicCodingKey.swift:4:33: error: 'CodingKey' is unavailable: unavailable in embedded Swift
2 | /// when encoding or decoding JSON.
3 | /// Useful for working with dictionaries whose keys are not known at compile time.
4 | public struct DynamicCodingKey: CodingKey {
| `- error: 'CodingKey' is unavailable: unavailable in embedded Swift
5 | /// The string value of the key. Required by `CodingKey`.
6 | public var stringValue: String
Swift.CodingKey:2:17: note: 'CodingKey' has been explicitly marked unavailable here
1 | @_unavailableInEmbedded
2 | public protocol CodingKey {
| `- note: 'CodingKey' has been explicitly marked unavailable here
3 | }
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/JSON+EmptyCodableStruct.swift:9:24: error: 'Decoder' is unavailable: unavailable in embedded Swift
7 | init() {}
8 |
9 | init(from decoder: Decoder) throws {
| `- error: 'Decoder' is unavailable: unavailable in embedded Swift
10 | let container = try decoder.container(keyedBy: AnyCodingKey.self)
11 | guard container.allKeys.isEmpty else {
Swift.Decoder:2:17: note: 'Decoder' has been explicitly marked unavailable here
1 | @_unavailableInEmbedded
2 | public protocol Decoder {
| `- note: 'Decoder' has been explicitly marked unavailable here
3 | var codingPath: [any CodingKey] { get }
4 | func container<Key>(keyedBy type: Key.Type) throws -> KeyedDecodingContainer<Key> where Key : CodingKey
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/JSON+EmptyCodableStruct.swift:18:29: error: 'Encoder' is unavailable: unavailable in embedded Swift
16 | }
17 |
18 | func encode(to encoder: Encoder) throws {
| `- error: 'Encoder' is unavailable: unavailable in embedded Swift
19 | _ = encoder.container(keyedBy: AnyCodingKey.self)
20 | }
Swift.Encoder:2:17: note: 'Encoder' has been explicitly marked unavailable here
1 | @_unavailableInEmbedded
2 | public protocol Encoder {
| `- note: 'Encoder' has been explicitly marked unavailable here
3 | var codingPath: [any CodingKey] { get }
4 | func container<Key>(keyedBy type: Key.Type) -> KeyedEncodingContainer<Key> where Key : CodingKey
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/JSON+EmptyCodableStruct.swift:6:30: error: 'Codable' is unavailable: unavailable in embedded Swift
4 | /// Empty `Codable` used to validate `{}` objects when decoding.
5 | /// Decoding succeeds only if the underlying object has no keys.
6 | struct EmptyCodableStruct: Codable {
| `- error: 'Codable' is unavailable: unavailable in embedded Swift
7 | init() {}
8 |
Swift.Codable:2:18: note: 'Codable' has been explicitly marked unavailable here
1 | @_unavailableInEmbedded
2 | public typealias Codable = Decodable & Encodable
| `- note: 'Codable' has been explicitly marked unavailable here
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/JSON+EmptyCodableStruct.swift:11:23: error: value of type 'KeyedDecodingContainer<AnyCodingKey>' has no member 'allKeys'
9 | init(from decoder: Decoder) throws {
10 | let container = try decoder.container(keyedBy: AnyCodingKey.self)
11 | guard container.allKeys.isEmpty else {
| `- error: value of type 'KeyedDecodingContainer<AnyCodingKey>' has no member 'allKeys'
12 | throw DecodingError.dataCorrupted(
13 | .init(codingPath: decoder.codingPath, debugDescription: "Expected empty object")
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/JSON+EmptyCodableStruct.swift:12:15: error: 'DecodingError' is unavailable: unavailable in embedded Swift
10 | let container = try decoder.container(keyedBy: AnyCodingKey.self)
11 | guard container.allKeys.isEmpty else {
12 | throw DecodingError.dataCorrupted(
| `- error: 'DecodingError' is unavailable: unavailable in embedded Swift
13 | .init(codingPath: decoder.codingPath, debugDescription: "Expected empty object")
14 | )
Swift.DecodingError:2:13: note: 'DecodingError' has been explicitly marked unavailable here
1 | @_unavailableInEmbedded
2 | public enum DecodingError : Error {
| `- note: 'DecodingError' has been explicitly marked unavailable here
3 | public struct Context : Sendable {
4 | public init(codingPath: [any CodingKey], debugDescription: String, underlyingError: (any Error)? = nil)
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/KeyedDecodingContainer+FuzzyDecoding.swift:12:17: error: cannot find type 'Key' in scope
10 | public func decodeArrayAllowingNullOrSingle<T>(
11 | _ type: T.Type = T.self,
12 | forKey key: Key
| `- error: cannot find type 'Key' in scope
13 | ) throws -> [T]? where T: Decodable {
14 | guard contains(key) else {
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/KeyedDecodingContainer+FuzzyDecoding.swift:13:29: error: 'Decodable' is unavailable: unavailable in embedded Swift
11 | _ type: T.Type = T.self,
12 | forKey key: Key
13 | ) throws -> [T]? where T: Decodable {
| `- error: 'Decodable' is unavailable: unavailable in embedded Swift
14 | guard contains(key) else {
15 | throw DecodingError.dataCorruptedError(
Swift.Decodable:2:17: note: 'Decodable' has been explicitly marked unavailable here
1 | @_unavailableInEmbedded
2 | public protocol Decodable {
| `- note: 'Decodable' has been explicitly marked unavailable here
3 | init(from decoder: any Decoder) throws
4 | }
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/KeyedDecodingContainer+FuzzyDecoding.swift:54:17: error: cannot find type 'Key' in scope
52 | public func decodeAllowingNullOrEmptyObject<T>(
53 | _ type: T.Type = T.self,
54 | forKey key: Key
| `- error: cannot find type 'Key' in scope
55 | ) throws -> T? where T: Decodable {
56 | guard contains(key) else {
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/KeyedDecodingContainer+FuzzyDecoding.swift:55:27: error: 'Decodable' is unavailable: unavailable in embedded Swift
53 | _ type: T.Type = T.self,
54 | forKey key: Key
55 | ) throws -> T? where T: Decodable {
| `- error: 'Decodable' is unavailable: unavailable in embedded Swift
56 | guard contains(key) else {
57 | return nil
Swift.Decodable:2:17: note: 'Decodable' has been explicitly marked unavailable here
1 | @_unavailableInEmbedded
2 | public protocol Decodable {
| `- note: 'Decodable' has been explicitly marked unavailable here
3 | init(from decoder: any Decoder) throws
4 | }
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/KeyedDecodingContainer+FuzzyDecoding.swift:1:11: error: 'KeyedDecodingContainer' is unavailable: unavailable in embedded Swift
1 | extension KeyedDecodingContainer {
| `- error: 'KeyedDecodingContainer' is unavailable: unavailable in embedded Swift
2 | /// Decodes a value for `key` that may be null, a single object,
3 | /// or an array of objects, returning a normalized optional array.
Swift.KeyedDecodingContainer:2:15: note: 'KeyedDecodingContainer' has been explicitly marked unavailable here
1 | @_unavailableInEmbedded
2 | public struct KeyedDecodingContainer<K> where K : CodingKey {
| `- note: 'KeyedDecodingContainer' has been explicitly marked unavailable here
3 | }
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/KeyedDecodingContainer+FuzzyDecoding.swift:14:11: error: cannot find 'contains' in scope
12 | forKey key: Key
13 | ) throws -> [T]? where T: Decodable {
14 | guard contains(key) else {
| `- error: cannot find 'contains' in scope
15 | throw DecodingError.dataCorruptedError(
16 | forKey: key,
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/KeyedDecodingContainer+FuzzyDecoding.swift:15:27: error: type 'DecodingError' has no member 'dataCorruptedError'
13 | ) throws -> [T]? where T: Decodable {
14 | guard contains(key) else {
15 | throw DecodingError.dataCorruptedError(
| `- error: type 'DecodingError' has no member 'dataCorruptedError'
16 | forKey: key,
17 | in: self,
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/KeyedDecodingContainer+FuzzyDecoding.swift:22:12: error: cannot find 'decodeNil' in scope
20 | )
21 | }
22 | if try decodeNil(forKey: key) {
| `- error: cannot find 'decodeNil' in scope
23 | return nil
24 | }
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/KeyedDecodingContainer+FuzzyDecoding.swift:27:18: error: cannot find 'decode' in scope
25 | do {
26 | // Try decoding as array
27 | return try decode([T].self, forKey: key)
| `- error: cannot find 'decode' in scope
28 | } catch {
29 | // Try decoding as single value
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/KeyedDecodingContainer+FuzzyDecoding.swift:33:27: error: type 'DecodingError' has no member 'dataCorruptedError'
31 | return [single]
32 | }
33 | throw DecodingError.dataCorruptedError(
| `- error: type 'DecodingError' has no member 'dataCorruptedError'
34 | forKey: key,
35 | in: self,
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/KeyedDecodingContainer+FuzzyDecoding.swift:56:11: error: cannot find 'contains' in scope
54 | forKey key: Key
55 | ) throws -> T? where T: Decodable {
56 | guard contains(key) else {
| `- error: cannot find 'contains' in scope
57 | return nil
58 | }
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/KeyedDecodingContainer+FuzzyDecoding.swift:60:12: error: cannot find 'decodeNil' in scope
58 | }
59 |
60 | if try decodeNil(forKey: key) {
| `- error: cannot find 'decodeNil' in scope
61 | return nil
62 | }
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/KeyedDecodingContainer+FuzzyDecoding.swift:64:14: error: cannot find 'decode' in scope
62 | }
63 |
64 | if (try? decode(String.self, forKey: key)) == "null" {
| `- error: cannot find 'decode' in scope
65 | return nil
66 | }
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/KeyedDecodingContainer+FuzzyDecoding.swift:68:14: error: cannot find 'decode' in scope
66 | }
67 |
68 | if (try? decode(JSON.EmptyCodableStruct.self, forKey: key)) != nil {
| `- error: cannot find 'decode' in scope
69 | return nil
70 | }
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/KeyedDecodingContainer+FuzzyDecoding.swift:73:16: error: cannot find 'decode' in scope
71 |
72 | // Try decoding as an object
73 | return try decode(T.self, forKey: key)
| `- error: cannot find 'decode' in scope
74 | }
75 | }
[4/4] Compiling WrkstrmMain BinaryTree.swift
/host/spi-builder-workspace/sources/wrkstrm-main/CustomCollections/Classes/Tree.swift:13:10: error: attribute 'weak' cannot be used in embedded Swift
11 |
12 | /// A weak reference to the parent node of this tree node.
13 | public weak var parent: Tree?
| `- error: attribute 'weak' cannot be used in embedded Swift
14 |
15 | /// A textual representation of this tree node, which is based on the value it contains.
/host/spi-builder-workspace/sources/wrkstrm-main/CustomCollections/Classes/Tree.swift:16:41: error: 'init(describing:)' is unavailable: unavailable in embedded Swift
14 |
15 | /// A textual representation of this tree node, which is based on the value it contains.
16 | public var debugDescription: String { String(describing: value) }
| `- error: 'init(describing:)' is unavailable: unavailable in embedded Swift
17 |
18 | /// Initializes a new tree node with the given value.
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/wrkstrm-main/Extensions/CommandLine+Executable.swift:1:11: error: cannot find type 'CommandLine' in scope
1 | extension CommandLine {
| `- error: cannot find type 'CommandLine' in scope
2 | /// An array of substrings derived from splitting the first command-line argument by the "/"
3 | /// separator.
/host/spi-builder-workspace/sources/wrkstrm-main/Extensions/String/String+Count.swift:5:23: error: cannot find 'range' in scope
3 | var indices: [Int] = []
4 | var position = startIndex
5 | while let range = range(of: occurrence, range: position..<endIndex) {
| `- error: cannot find 'range' in scope
6 | let i = distance(from: startIndex, to: range.lowerBound)
7 | indices.append(i)
/host/spi-builder-workspace/sources/wrkstrm-main/Extensions/String/String+Source.swift:12:60: error: cannot convert value of type 'String' to expected argument type 'String.Element' (aka 'Character')
10 | /// - Returns: An optional array of `String` containing only source file paths, or `nil` if no
11 | /// source files are found.
12 | public var sourceFiles: [String]? { filter { $0.contains(".m") || $0.contains(".swift") } }
| `- error: cannot convert value of type 'String' to expected argument type 'String.Element' (aka 'Character')
13 |
14 | /// Filters the array to include only Interface Builder files.
/host/spi-builder-workspace/sources/wrkstrm-main/Extensions/String/String+Source.swift:12:81: error: cannot convert value of type 'String' to expected argument type 'String.Element' (aka 'Character')
10 | /// - Returns: An optional array of `String` containing only source file paths, or `nil` if no
11 | /// source files are found.
12 | public var sourceFiles: [String]? { filter { $0.contains(".m") || $0.contains(".swift") } }
| `- error: cannot convert value of type 'String' to expected argument type 'String.Element' (aka 'Character')
13 |
14 | /// Filters the array to include only Interface Builder files.
/host/spi-builder-workspace/sources/wrkstrm-main/Extensions/String/String+Source.swift:22:57: error: cannot convert value of type 'String' to expected argument type 'String.Element' (aka 'Character')
20 | /// - Returns: An optional array of `String` containing only Interface Builder file paths, or
21 | /// `nil` if no such files are found.
22 | public var nibFiles: [String]? { filter { $0.contains(".xib") || $0.contains(".storyboard") } }
| `- error: cannot convert value of type 'String' to expected argument type 'String.Element' (aka 'Character')
23 |
24 | /// Filters the array to include only Base Localization Interface Builder files.
/host/spi-builder-workspace/sources/wrkstrm-main/Extensions/String/String+Source.swift:22:80: error: cannot convert value of type 'String' to expected argument type 'String.Element' (aka 'Character')
20 | /// - Returns: An optional array of `String` containing only Interface Builder file paths, or
21 | /// `nil` if no such files are found.
22 | public var nibFiles: [String]? { filter { $0.contains(".xib") || $0.contains(".storyboard") } }
| `- error: cannot convert value of type 'String' to expected argument type 'String.Element' (aka 'Character')
23 |
24 | /// Filters the array to include only Base Localization Interface Builder files.
/host/spi-builder-workspace/sources/wrkstrm-main/Extensions/String/String+Source.swift:32:70: error: cannot convert value of type 'String' to expected argument type 'String.Element' (aka 'Character')
30 | /// - Returns: An optional array of `String` containing only Base Localization Interface Builder
31 | /// file paths, or `nil` if no such files are found.
32 | public var baseLocalizedNibFiles: [String]? { filter { $0.contains("Base.lproj") } }
| `- error: cannot convert value of type 'String' to expected argument type 'String.Element' (aka 'Character')
33 |
34 | /// Filters the array to include only non-localized and non-debug Interface Builder files.
/host/spi-builder-workspace/sources/wrkstrm-main/Extensions/String/String+Source.swift:44:27: error: cannot convert value of type 'String' to expected argument type 'String.Element' (aka 'Character')
42 | /// Builder file paths, or `nil` if no such files are found.
43 | public var unlocalizedNibFiles: [String]? {
44 | filter { !$0.contains("Base.lproj") && !$0.contains("Debug") }
| `- error: cannot convert value of type 'String' to expected argument type 'String.Element' (aka 'Character')
45 | }
46 | }
/host/spi-builder-workspace/sources/wrkstrm-main/Extensions/String/String+Source.swift:44:57: error: cannot convert value of type 'String' to expected argument type 'String.Element' (aka 'Character')
42 | /// Builder file paths, or `nil` if no such files are found.
43 | public var unlocalizedNibFiles: [String]? {
44 | filter { !$0.contains("Base.lproj") && !$0.contains("Debug") }
| `- error: cannot convert value of type 'String' to expected argument type 'String.Element' (aka 'Character')
45 | }
46 | }
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/AnyCodingKey.swift:20:29: error: 'CodingKey' is unavailable: unavailable in embedded Swift
18 | /// See also StackOverflow guidance on detecting empty JSON objects via keyed decoding:
19 | /// https://stackoverflow.com/questions/48943510/swift-codable-decode-empty-json-as-nil-or-empty-object
20 | public struct AnyCodingKey: CodingKey {
| `- error: 'CodingKey' is unavailable: unavailable in embedded Swift
21 | /// The dynamic string value of the key in JSON.
22 | public var stringValue: String
Swift.CodingKey:2:17: note: 'CodingKey' has been explicitly marked unavailable here
1 | @_unavailableInEmbedded
2 | public protocol CodingKey {
| `- note: 'CodingKey' has been explicitly marked unavailable here
3 | }
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/DynamicCodingKey.swift:4:33: error: 'CodingKey' is unavailable: unavailable in embedded Swift
2 | /// when encoding or decoding JSON.
3 | /// Useful for working with dictionaries whose keys are not known at compile time.
4 | public struct DynamicCodingKey: CodingKey {
| `- error: 'CodingKey' is unavailable: unavailable in embedded Swift
5 | /// The string value of the key. Required by `CodingKey`.
6 | public var stringValue: String
Swift.CodingKey:2:17: note: 'CodingKey' has been explicitly marked unavailable here
1 | @_unavailableInEmbedded
2 | public protocol CodingKey {
| `- note: 'CodingKey' has been explicitly marked unavailable here
3 | }
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/JSON+EmptyCodableStruct.swift:9:24: error: 'Decoder' is unavailable: unavailable in embedded Swift
7 | init() {}
8 |
9 | init(from decoder: Decoder) throws {
| `- error: 'Decoder' is unavailable: unavailable in embedded Swift
10 | let container = try decoder.container(keyedBy: AnyCodingKey.self)
11 | guard container.allKeys.isEmpty else {
Swift.Decoder:2:17: note: 'Decoder' has been explicitly marked unavailable here
1 | @_unavailableInEmbedded
2 | public protocol Decoder {
| `- note: 'Decoder' has been explicitly marked unavailable here
3 | var codingPath: [any CodingKey] { get }
4 | func container<Key>(keyedBy type: Key.Type) throws -> KeyedDecodingContainer<Key> where Key : CodingKey
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/JSON+EmptyCodableStruct.swift:18:29: error: 'Encoder' is unavailable: unavailable in embedded Swift
16 | }
17 |
18 | func encode(to encoder: Encoder) throws {
| `- error: 'Encoder' is unavailable: unavailable in embedded Swift
19 | _ = encoder.container(keyedBy: AnyCodingKey.self)
20 | }
Swift.Encoder:2:17: note: 'Encoder' has been explicitly marked unavailable here
1 | @_unavailableInEmbedded
2 | public protocol Encoder {
| `- note: 'Encoder' has been explicitly marked unavailable here
3 | var codingPath: [any CodingKey] { get }
4 | func container<Key>(keyedBy type: Key.Type) -> KeyedEncodingContainer<Key> where Key : CodingKey
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/JSON+EmptyCodableStruct.swift:6:30: error: 'Codable' is unavailable: unavailable in embedded Swift
4 | /// Empty `Codable` used to validate `{}` objects when decoding.
5 | /// Decoding succeeds only if the underlying object has no keys.
6 | struct EmptyCodableStruct: Codable {
| `- error: 'Codable' is unavailable: unavailable in embedded Swift
7 | init() {}
8 |
Swift.Codable:2:18: note: 'Codable' has been explicitly marked unavailable here
1 | @_unavailableInEmbedded
2 | public typealias Codable = Decodable & Encodable
| `- note: 'Codable' has been explicitly marked unavailable here
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/JSON+EmptyCodableStruct.swift:11:23: error: value of type 'KeyedDecodingContainer<AnyCodingKey>' has no member 'allKeys'
9 | init(from decoder: Decoder) throws {
10 | let container = try decoder.container(keyedBy: AnyCodingKey.self)
11 | guard container.allKeys.isEmpty else {
| `- error: value of type 'KeyedDecodingContainer<AnyCodingKey>' has no member 'allKeys'
12 | throw DecodingError.dataCorrupted(
13 | .init(codingPath: decoder.codingPath, debugDescription: "Expected empty object")
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/JSON+EmptyCodableStruct.swift:12:15: error: 'DecodingError' is unavailable: unavailable in embedded Swift
10 | let container = try decoder.container(keyedBy: AnyCodingKey.self)
11 | guard container.allKeys.isEmpty else {
12 | throw DecodingError.dataCorrupted(
| `- error: 'DecodingError' is unavailable: unavailable in embedded Swift
13 | .init(codingPath: decoder.codingPath, debugDescription: "Expected empty object")
14 | )
Swift.DecodingError:2:13: note: 'DecodingError' has been explicitly marked unavailable here
1 | @_unavailableInEmbedded
2 | public enum DecodingError : Error {
| `- note: 'DecodingError' has been explicitly marked unavailable here
3 | public struct Context : Sendable {
4 | public init(codingPath: [any CodingKey], debugDescription: String, underlyingError: (any Error)? = nil)
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/KeyedDecodingContainer+FuzzyDecoding.swift:12:17: error: cannot find type 'Key' in scope
10 | public func decodeArrayAllowingNullOrSingle<T>(
11 | _ type: T.Type = T.self,
12 | forKey key: Key
| `- error: cannot find type 'Key' in scope
13 | ) throws -> [T]? where T: Decodable {
14 | guard contains(key) else {
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/KeyedDecodingContainer+FuzzyDecoding.swift:13:29: error: 'Decodable' is unavailable: unavailable in embedded Swift
11 | _ type: T.Type = T.self,
12 | forKey key: Key
13 | ) throws -> [T]? where T: Decodable {
| `- error: 'Decodable' is unavailable: unavailable in embedded Swift
14 | guard contains(key) else {
15 | throw DecodingError.dataCorruptedError(
Swift.Decodable:2:17: note: 'Decodable' has been explicitly marked unavailable here
1 | @_unavailableInEmbedded
2 | public protocol Decodable {
| `- note: 'Decodable' has been explicitly marked unavailable here
3 | init(from decoder: any Decoder) throws
4 | }
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/KeyedDecodingContainer+FuzzyDecoding.swift:54:17: error: cannot find type 'Key' in scope
52 | public func decodeAllowingNullOrEmptyObject<T>(
53 | _ type: T.Type = T.self,
54 | forKey key: Key
| `- error: cannot find type 'Key' in scope
55 | ) throws -> T? where T: Decodable {
56 | guard contains(key) else {
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/KeyedDecodingContainer+FuzzyDecoding.swift:55:27: error: 'Decodable' is unavailable: unavailable in embedded Swift
53 | _ type: T.Type = T.self,
54 | forKey key: Key
55 | ) throws -> T? where T: Decodable {
| `- error: 'Decodable' is unavailable: unavailable in embedded Swift
56 | guard contains(key) else {
57 | return nil
Swift.Decodable:2:17: note: 'Decodable' has been explicitly marked unavailable here
1 | @_unavailableInEmbedded
2 | public protocol Decodable {
| `- note: 'Decodable' has been explicitly marked unavailable here
3 | init(from decoder: any Decoder) throws
4 | }
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/KeyedDecodingContainer+FuzzyDecoding.swift:1:11: error: 'KeyedDecodingContainer' is unavailable: unavailable in embedded Swift
1 | extension KeyedDecodingContainer {
| `- error: 'KeyedDecodingContainer' is unavailable: unavailable in embedded Swift
2 | /// Decodes a value for `key` that may be null, a single object,
3 | /// or an array of objects, returning a normalized optional array.
Swift.KeyedDecodingContainer:2:15: note: 'KeyedDecodingContainer' has been explicitly marked unavailable here
1 | @_unavailableInEmbedded
2 | public struct KeyedDecodingContainer<K> where K : CodingKey {
| `- note: 'KeyedDecodingContainer' has been explicitly marked unavailable here
3 | }
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/KeyedDecodingContainer+FuzzyDecoding.swift:14:11: error: cannot find 'contains' in scope
12 | forKey key: Key
13 | ) throws -> [T]? where T: Decodable {
14 | guard contains(key) else {
| `- error: cannot find 'contains' in scope
15 | throw DecodingError.dataCorruptedError(
16 | forKey: key,
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/KeyedDecodingContainer+FuzzyDecoding.swift:15:27: error: type 'DecodingError' has no member 'dataCorruptedError'
13 | ) throws -> [T]? where T: Decodable {
14 | guard contains(key) else {
15 | throw DecodingError.dataCorruptedError(
| `- error: type 'DecodingError' has no member 'dataCorruptedError'
16 | forKey: key,
17 | in: self,
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/KeyedDecodingContainer+FuzzyDecoding.swift:22:12: error: cannot find 'decodeNil' in scope
20 | )
21 | }
22 | if try decodeNil(forKey: key) {
| `- error: cannot find 'decodeNil' in scope
23 | return nil
24 | }
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/KeyedDecodingContainer+FuzzyDecoding.swift:27:18: error: cannot find 'decode' in scope
25 | do {
26 | // Try decoding as array
27 | return try decode([T].self, forKey: key)
| `- error: cannot find 'decode' in scope
28 | } catch {
29 | // Try decoding as single value
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/KeyedDecodingContainer+FuzzyDecoding.swift:33:27: error: type 'DecodingError' has no member 'dataCorruptedError'
31 | return [single]
32 | }
33 | throw DecodingError.dataCorruptedError(
| `- error: type 'DecodingError' has no member 'dataCorruptedError'
34 | forKey: key,
35 | in: self,
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/KeyedDecodingContainer+FuzzyDecoding.swift:56:11: error: cannot find 'contains' in scope
54 | forKey key: Key
55 | ) throws -> T? where T: Decodable {
56 | guard contains(key) else {
| `- error: cannot find 'contains' in scope
57 | return nil
58 | }
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/KeyedDecodingContainer+FuzzyDecoding.swift:60:12: error: cannot find 'decodeNil' in scope
58 | }
59 |
60 | if try decodeNil(forKey: key) {
| `- error: cannot find 'decodeNil' in scope
61 | return nil
62 | }
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/KeyedDecodingContainer+FuzzyDecoding.swift:64:14: error: cannot find 'decode' in scope
62 | }
63 |
64 | if (try? decode(String.self, forKey: key)) == "null" {
| `- error: cannot find 'decode' in scope
65 | return nil
66 | }
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/KeyedDecodingContainer+FuzzyDecoding.swift:68:14: error: cannot find 'decode' in scope
66 | }
67 |
68 | if (try? decode(JSON.EmptyCodableStruct.self, forKey: key)) != nil {
| `- error: cannot find 'decode' in scope
69 | return nil
70 | }
/host/spi-builder-workspace/sources/wrkstrm-main/JSON/KeyedDecodingContainer+FuzzyDecoding.swift:73:16: error: cannot find 'decode' in scope
71 |
72 | // Try decoding as an object
73 | return try decode(T.self, forKey: key)
| `- error: cannot find 'decode' in scope
74 | }
75 | }
BUILD FAILURE 6.2 wasm