Build Information
Failed to build Typeform, reference main (76f7e3), with Swift 6.3 for Wasm on 18 Apr 2026 12:03:30 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/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/Nice-Healthcare/typeform-swift.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/Nice-Healthcare/typeform-swift
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 76f7e38 Liquid Glass (#41)
Cloned https://github.com/Nice-Healthcare/typeform-swift.git
Revision (git rev-parse @):
76f7e38036da04b338b66a471bf181d9718518e8
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/Nice-Healthcare/typeform-swift.git at main
========================================
Build
========================================
Selected platform: wasm
Swift version: 6.3
Building package at path: $PWD
https://github.com/Nice-Healthcare/typeform-swift.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/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/21] Copying TranslationForm(es).json
[0/21] Copying translated_typeform.json
[0/21] Copying PhysicalTherapyV3.json
[0/21] Copying PrimaryCareV3.json
[0/21] Copying PTIntake42.json
[0/21] Copying standard_typeform.json
[0/21] Copying MedicalIntake35.json
[0/21] Copying MedicalIntake26.json
[0/21] Copying MedicalIntake24.json
[0/21] Copying MatrixExample.json
[0/21] Copying ImageAttachment.json
[0/21] Copying HealthHistoryV3.json
[0/21] Copying MedicalIntake23.json
[0/21] Copying DemoForm.json
[0/21] Copying GenericSlugs.json
[0/21] Copying MedicalIntake.json
[0/21] Copying TranslationFormBase.json
[17/21] Write sources
[20/21] Write swift-version-24593BA9C3E375BF.txt
[22/66] Emitting module Typeform
/host/spi-builder-workspace/Sources/Typeform/Models/Reference.swift:20:23: warning: static property 'valueEncodingCase' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
18 | }
19 |
20 | public static var valueEncodingCase: ValueEncodingCase = .lowercase
| |- warning: static property 'valueEncodingCase' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
| |- note: convert 'valueEncodingCase' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'valueEncodingCase' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | public static func make(with value: String) -> Reference {
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[23/72] Compiling Typeform ShortText.swift
[24/72] Compiling Typeform YesNo.swift
[25/72] Compiling Typeform Attachment.swift
[26/72] Compiling Typeform Choice.swift
[27/72] Compiling Typeform EndingScreen.swift
[28/72] Compiling Typeform Field.swift
[29/72] Compiling Typeform Condition+Validation.swift
[30/72] Compiling Typeform Field+Lookup.swift
[31/72] Compiling Typeform Form+Lookup.swift
[32/72] Compiling Typeform Form+Position.swift
[33/72] Compiling Typeform Form+Screen.swift
[34/72] Compiling Typeform Responses+Validation.swift
[35/72] Compiling Typeform Var+Validation.swift
[36/72] Compiling Typeform FieldContainer.swift
/host/spi-builder-workspace/Sources/Typeform/Schema/Structure/Form.swift:102:23: error: cannot find 'URLRequest' in scope
100 | }
101 |
102 | let request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
103 | let response = try await URLSession.shared.data(for: request)
104 | return try decoder.decode(Form.self, from: response.0)
/host/spi-builder-workspace/Sources/Typeform/Schema/Structure/Form.swift:103:45: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
101 |
102 | let request = URLRequest(url: url)
103 | let response = try await URLSession.shared.data(for: request)
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
104 | return try decoder.decode(Form.self, from: response.0)
105 | }
/host/spi-builder-workspace/Sources/Typeform/Schema/Structure/Form.swift:126:23: error: cannot find 'URLRequest' in scope
124 | }
125 |
126 | let request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
127 | let response = try await URLSession.shared.data(for: request)
128 | let translation = try Self.decoder.decode(TranslatedForm.self, from: response.0)
/host/spi-builder-workspace/Sources/Typeform/Schema/Structure/Form.swift:127:45: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
125 |
126 | let request = URLRequest(url: url)
127 | let response = try await URLSession.shared.data(for: request)
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
128 | let translation = try Self.decoder.decode(TranslatedForm.self, from: response.0)
129 | return merging(translatedForm: translation)
[37/72] Compiling Typeform Form.swift
/host/spi-builder-workspace/Sources/Typeform/Schema/Structure/Form.swift:102:23: error: cannot find 'URLRequest' in scope
100 | }
101 |
102 | let request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
103 | let response = try await URLSession.shared.data(for: request)
104 | return try decoder.decode(Form.self, from: response.0)
/host/spi-builder-workspace/Sources/Typeform/Schema/Structure/Form.swift:103:45: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
101 |
102 | let request = URLRequest(url: url)
103 | let response = try await URLSession.shared.data(for: request)
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
104 | return try decoder.decode(Form.self, from: response.0)
105 | }
/host/spi-builder-workspace/Sources/Typeform/Schema/Structure/Form.swift:126:23: error: cannot find 'URLRequest' in scope
124 | }
125 |
126 | let request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
127 | let response = try await URLSession.shared.data(for: request)
128 | let translation = try Self.decoder.decode(TranslatedForm.self, from: response.0)
/host/spi-builder-workspace/Sources/Typeform/Schema/Structure/Form.swift:127:45: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
125 |
126 | let request = URLRequest(url: url)
127 | let response = try await URLSession.shared.data(for: request)
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
128 | let translation = try Self.decoder.decode(TranslatedForm.self, from: response.0)
129 | return merging(translatedForm: translation)
[38/72] Compiling Typeform Group.swift
/host/spi-builder-workspace/Sources/Typeform/Schema/Structure/Form.swift:102:23: error: cannot find 'URLRequest' in scope
100 | }
101 |
102 | let request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
103 | let response = try await URLSession.shared.data(for: request)
104 | return try decoder.decode(Form.self, from: response.0)
/host/spi-builder-workspace/Sources/Typeform/Schema/Structure/Form.swift:103:45: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
101 |
102 | let request = URLRequest(url: url)
103 | let response = try await URLSession.shared.data(for: request)
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
104 | return try decoder.decode(Form.self, from: response.0)
105 | }
/host/spi-builder-workspace/Sources/Typeform/Schema/Structure/Form.swift:126:23: error: cannot find 'URLRequest' in scope
124 | }
125 |
126 | let request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
127 | let response = try await URLSession.shared.data(for: request)
128 | let translation = try Self.decoder.decode(TranslatedForm.self, from: response.0)
/host/spi-builder-workspace/Sources/Typeform/Schema/Structure/Form.swift:127:45: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
125 |
126 | let request = URLRequest(url: url)
127 | let response = try await URLSession.shared.data(for: request)
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
128 | let translation = try Self.decoder.decode(TranslatedForm.self, from: response.0)
129 | return merging(translatedForm: translation)
[39/72] Compiling Typeform Links.swift
/host/spi-builder-workspace/Sources/Typeform/Schema/Structure/Form.swift:102:23: error: cannot find 'URLRequest' in scope
100 | }
101 |
102 | let request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
103 | let response = try await URLSession.shared.data(for: request)
104 | return try decoder.decode(Form.self, from: response.0)
/host/spi-builder-workspace/Sources/Typeform/Schema/Structure/Form.swift:103:45: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
101 |
102 | let request = URLRequest(url: url)
103 | let response = try await URLSession.shared.data(for: request)
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
104 | return try decoder.decode(Form.self, from: response.0)
105 | }
/host/spi-builder-workspace/Sources/Typeform/Schema/Structure/Form.swift:126:23: error: cannot find 'URLRequest' in scope
124 | }
125 |
126 | let request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
127 | let response = try await URLSession.shared.data(for: request)
128 | let translation = try Self.decoder.decode(TranslatedForm.self, from: response.0)
/host/spi-builder-workspace/Sources/Typeform/Schema/Structure/Form.swift:127:45: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
125 |
126 | let request = URLRequest(url: url)
127 | let response = try await URLSession.shared.data(for: request)
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
128 | let translation = try Self.decoder.decode(TranslatedForm.self, from: response.0)
129 | return merging(translatedForm: translation)
[40/72] Compiling Typeform Matrix.swift
/host/spi-builder-workspace/Sources/Typeform/Schema/Structure/Form.swift:102:23: error: cannot find 'URLRequest' in scope
100 | }
101 |
102 | let request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
103 | let response = try await URLSession.shared.data(for: request)
104 | return try decoder.decode(Form.self, from: response.0)
/host/spi-builder-workspace/Sources/Typeform/Schema/Structure/Form.swift:103:45: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
101 |
102 | let request = URLRequest(url: url)
103 | let response = try await URLSession.shared.data(for: request)
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
104 | return try decoder.decode(Form.self, from: response.0)
105 | }
/host/spi-builder-workspace/Sources/Typeform/Schema/Structure/Form.swift:126:23: error: cannot find 'URLRequest' in scope
124 | }
125 |
126 | let request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
127 | let response = try await URLSession.shared.data(for: request)
128 | let translation = try Self.decoder.decode(TranslatedForm.self, from: response.0)
/host/spi-builder-workspace/Sources/Typeform/Schema/Structure/Form.swift:127:45: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
125 |
126 | let request = URLRequest(url: url)
127 | let response = try await URLSession.shared.data(for: request)
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
128 | let translation = try Self.decoder.decode(TranslatedForm.self, from: response.0)
129 | return merging(translatedForm: translation)
[41/72] Compiling Typeform Screen.swift
/host/spi-builder-workspace/Sources/Typeform/Schema/Structure/Form.swift:102:23: error: cannot find 'URLRequest' in scope
100 | }
101 |
102 | let request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
103 | let response = try await URLSession.shared.data(for: request)
104 | return try decoder.decode(Form.self, from: response.0)
/host/spi-builder-workspace/Sources/Typeform/Schema/Structure/Form.swift:103:45: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
101 |
102 | let request = URLRequest(url: url)
103 | let response = try await URLSession.shared.data(for: request)
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
104 | return try decoder.decode(Form.self, from: response.0)
105 | }
/host/spi-builder-workspace/Sources/Typeform/Schema/Structure/Form.swift:126:23: error: cannot find 'URLRequest' in scope
124 | }
125 |
126 | let request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
127 | let response = try await URLSession.shared.data(for: request)
128 | let translation = try Self.decoder.decode(TranslatedForm.self, from: response.0)
/host/spi-builder-workspace/Sources/Typeform/Schema/Structure/Form.swift:127:45: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
125 |
126 | let request = URLRequest(url: url)
127 | let response = try await URLSession.shared.data(for: request)
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
128 | let translation = try Self.decoder.decode(TranslatedForm.self, from: response.0)
129 | return merging(translatedForm: translation)
[42/72] Compiling Typeform Position.swift
/host/spi-builder-workspace/Sources/Typeform/Models/Reference.swift:20:23: warning: static property 'valueEncodingCase' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
18 | }
19 |
20 | public static var valueEncodingCase: ValueEncodingCase = .lowercase
| |- warning: static property 'valueEncodingCase' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
| |- note: convert 'valueEncodingCase' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'valueEncodingCase' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | public static func make(with value: String) -> Reference {
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[43/72] Compiling Typeform Reference.swift
/host/spi-builder-workspace/Sources/Typeform/Models/Reference.swift:20:23: warning: static property 'valueEncodingCase' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
18 | }
19 |
20 | public static var valueEncodingCase: ValueEncodingCase = .lowercase
| |- warning: static property 'valueEncodingCase' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
| |- note: convert 'valueEncodingCase' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'valueEncodingCase' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | public static func make(with value: String) -> Reference {
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[44/72] Compiling Typeform ResponseValue.swift
/host/spi-builder-workspace/Sources/Typeform/Models/Reference.swift:20:23: warning: static property 'valueEncodingCase' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
18 | }
19 |
20 | public static var valueEncodingCase: ValueEncodingCase = .lowercase
| |- warning: static property 'valueEncodingCase' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
| |- note: convert 'valueEncodingCase' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'valueEncodingCase' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | public static func make(with value: String) -> Reference {
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[45/72] Compiling Typeform Responses.swift
/host/spi-builder-workspace/Sources/Typeform/Models/Reference.swift:20:23: warning: static property 'valueEncodingCase' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
18 | }
19 |
20 | public static var valueEncodingCase: ValueEncodingCase = .lowercase
| |- warning: static property 'valueEncodingCase' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
| |- note: convert 'valueEncodingCase' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'valueEncodingCase' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | public static func make(with value: String) -> Reference {
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[46/72] Compiling Typeform TypeformError.swift
/host/spi-builder-workspace/Sources/Typeform/Models/Reference.swift:20:23: warning: static property 'valueEncodingCase' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
18 | }
19 |
20 | public static var valueEncodingCase: ValueEncodingCase = .lowercase
| |- warning: static property 'valueEncodingCase' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
| |- note: convert 'valueEncodingCase' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'valueEncodingCase' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | public static func make(with value: String) -> Reference {
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[47/72] Compiling Typeform Upload.swift
/host/spi-builder-workspace/Sources/Typeform/Models/Reference.swift:20:23: warning: static property 'valueEncodingCase' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
18 | }
19 |
20 | public static var valueEncodingCase: ValueEncodingCase = .lowercase
| |- warning: static property 'valueEncodingCase' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
| |- note: convert 'valueEncodingCase' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'valueEncodingCase' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | public static func make(with value: String) -> Reference {
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[48/72] Compiling Typeform Action.swift
/host/spi-builder-workspace/Sources/Typeform/Models/Reference.swift:20:23: warning: static property 'valueEncodingCase' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
18 | }
19 |
20 | public static var valueEncodingCase: ValueEncodingCase = .lowercase
| |- warning: static property 'valueEncodingCase' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
| |- note: convert 'valueEncodingCase' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'valueEncodingCase' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |
22 | public static func make(with value: String) -> Reference {
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[49/72] Compiling Typeform Condition.swift
[50/72] Compiling Typeform Logic.swift
[51/72] Compiling Typeform Op.swift
[52/72] Compiling Typeform Var.swift
[53/72] Compiling Typeform DateStamp.swift
[54/72] Compiling Typeform Dropdown.swift
[55/72] Compiling Typeform Workspace.swift
[56/72] Compiling Typeform TranslatedChoice.swift
[57/72] Compiling Typeform TranslatedField.swift
[58/72] Compiling Typeform TranslatedForm.swift
[59/72] Compiling Typeform TranslatedProperties.swift
[60/72] Compiling Typeform TranslatedScreen.swift
[61/72] Compiling Typeform ScreenProperties.swift
[62/72] Compiling Typeform Settings.swift
[63/72] Compiling Typeform Statement.swift
[64/72] Compiling Typeform Theme.swift
[65/72] Compiling Typeform Validations.swift
[66/72] Compiling Typeform WelcomeScreen.swift
[67/72] Compiling Typeform FileUpload.swift
[68/72] Compiling Typeform LongText.swift
[69/72] Compiling Typeform MultipleChoice.swift
[70/72] Compiling Typeform Number.swift
[71/72] Compiling Typeform OpinionScale.swift
[72/72] Compiling Typeform Rating.swift
BUILD FAILURE 6.3 wasm