Build Information
Failed to build OpenPanel, reference 1.0.0 (d8181e), with Swift 6.1 for Wasm on 8 Jan 2026 08:46:50 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.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Openpanel-dev/swift-sdk.git
Reference: 1.0.0
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/Openpanel-dev/swift-sdk
* tag 1.0.0 -> FETCH_HEAD
HEAD is now at d8181eb add better check for extensions
Cloned https://github.com/Openpanel-dev/swift-sdk.git
Revision (git rev-parse @):
d8181ebb986acce3e3bb177a93cc484241ba0414
SUCCESS checkout https://github.com/Openpanel-dev/swift-sdk.git at 1.0.0
========================================
Build
========================================
Selected platform: wasm
Swift version: 6.1
Building package at path: $PWD
https://github.com/Openpanel-dev/swift-sdk.git
https://github.com/Openpanel-dev/swift-sdk.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
],
"manifest_display_name" : "OpenPanel",
"name" : "OpenPanel",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "macos",
"version" : "10.15"
}
],
"products" : [
{
"name" : "OpenPanel",
"targets" : [
"OpenPanel"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "OpenPanel",
"module_type" : "SwiftTarget",
"name" : "OpenPanel",
"path" : "Sources/OpenPanel",
"product_memberships" : [
"OpenPanel"
],
"sources" : [
"OpenPanel.swift"
],
"type" : "library"
}
],
"tools_version" : "5.5"
}
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.1-latest swift build --swift-sdk wasm32-unknown-wasi -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:bb5ef85e2f3936cf1d2ae6dee7e011cebd8377061043dcf9368e6726baaf85d8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
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 OpenPanel
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:259:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OpenPanel' may have shared mutable state; this is an error in the Swift 6 language mode
256 | // MARK: - OpenPanel Class
257 |
258 | public class OpenPanel {
| `- note: class 'OpenPanel' does not conform to the 'Sendable' protocol
259 | public static let shared = OpenPanel()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OpenPanel' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
260 |
261 | private let api: Api
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:263:31: error: cannot find 'DispatchQueue' in scope
261 | private let api: Api
262 | private var profileId: String?
263 | private let globalQueue = DispatchQueue(label: "com.openpanel.globalQueue", attributes: .concurrent)
| `- error: cannot find 'DispatchQueue' in scope
264 | private var _global: [String: Any]?
265 | private var global: [String: Any]? {
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:263:94: error: cannot infer contextual base in reference to member 'concurrent'
261 | private let api: Api
262 | private var profileId: String?
263 | private let globalQueue = DispatchQueue(label: "com.openpanel.globalQueue", attributes: .concurrent)
| `- error: cannot infer contextual base in reference to member 'concurrent'
264 | private var _global: [String: Any]?
265 | private var global: [String: Any]? {
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:270:33: error: cannot find type 'OperationQueue' in scope
268 | }
269 | private var queue: [TrackHandlerPayload] = []
270 | private let operationQueue: OperationQueue
| `- error: cannot find type 'OperationQueue' in scope
271 |
272 | public struct Options {
[4/4] Compiling OpenPanel OpenPanel.swift
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:259:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OpenPanel' may have shared mutable state; this is an error in the Swift 6 language mode
256 | // MARK: - OpenPanel Class
257 |
258 | public class OpenPanel {
| `- note: class 'OpenPanel' does not conform to the 'Sendable' protocol
259 | public static let shared = OpenPanel()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'OpenPanel' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
260 |
261 | private let api: Api
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:263:31: error: cannot find 'DispatchQueue' in scope
261 | private let api: Api
262 | private var profileId: String?
263 | private let globalQueue = DispatchQueue(label: "com.openpanel.globalQueue", attributes: .concurrent)
| `- error: cannot find 'DispatchQueue' in scope
264 | private var _global: [String: Any]?
265 | private var global: [String: Any]? {
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:263:94: error: cannot infer contextual base in reference to member 'concurrent'
261 | private let api: Api
262 | private var profileId: String?
263 | private let globalQueue = DispatchQueue(label: "com.openpanel.globalQueue", attributes: .concurrent)
| `- error: cannot infer contextual base in reference to member 'concurrent'
264 | private var _global: [String: Any]?
265 | private var global: [String: Any]? {
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:270:33: error: cannot find type 'OperationQueue' in scope
268 | }
269 | private var queue: [TrackHandlerPayload] = []
270 | private let operationQueue: OperationQueue
| `- error: cannot find type 'OperationQueue' in scope
271 |
272 | public struct Options {
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:29:27: error: cannot find 'WKWebView' in scope
27 | private static func getiOSUserAgent() -> String {
28 | if !isRunningInExtension() {
29 | let webView = WKWebView(frame: .zero)
| `- error: cannot find 'WKWebView' in scope
30 | var userAgent = ""
31 |
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:29:45: error: cannot infer contextual base in reference to member 'zero'
27 | private static func getiOSUserAgent() -> String {
28 | if !isRunningInExtension() {
29 | let webView = WKWebView(frame: .zero)
| `- error: cannot infer contextual base in reference to member 'zero'
30 | var userAgent = ""
31 |
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:32:29: error: cannot find 'DispatchSemaphore' in scope
30 | var userAgent = ""
31 |
32 | let semaphore = DispatchSemaphore(value: 0)
| `- error: cannot find 'DispatchSemaphore' in scope
33 |
34 | DispatchQueue.main.async {
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:34:13: error: cannot find 'DispatchQueue' in scope
32 | let semaphore = DispatchSemaphore(value: 0)
33 |
34 | DispatchQueue.main.async {
| `- error: cannot find 'DispatchQueue' in scope
35 | webView.evaluateJavaScript("navigator.userAgent") { (result, error) in
36 | if let agent = result as? String {
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:43:42: error: cannot call value of non-function type 'Date'
41 | }
42 |
43 | _ = semaphore.wait(timeout: .now() + 1.0)
| `- error: cannot call value of non-function type 'Date'
44 |
45 | if userAgent.isEmpty {
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:56:22: error: cannot find 'UIDevice' in scope
54 |
55 | private static func getBasicUserAgent() -> String {
56 | let device = UIDevice.current
| `- error: cannot find 'UIDevice' in scope
57 | let systemVersion = device.systemVersion
58 | let model = device.model
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:267:41: error: cannot infer contextual base in reference to member 'barrier'
265 | private var global: [String: Any]? {
266 | get { globalQueue.sync { _global } }
267 | set { globalQueue.async(flags: .barrier) { self._global = newValue } }
| `- error: cannot infer contextual base in reference to member 'barrier'
268 | }
269 | private var queue: [TrackHandlerPayload] = []
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:300:31: error: cannot find 'OperationQueue' in scope
298 | private init() {
299 | self.api = Api(config: Api.Config(baseUrl: "https://api.openpanel.dev"))
300 | self.operationQueue = OperationQueue()
| `- error: cannot find 'OperationQueue' in scope
301 | self.operationQueue.maxConcurrentOperationCount = 1
302 | }
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:352:25: error: cannot find 'BlockOperation' in scope
350 | }
351 |
352 | let operation = BlockOperation {
| `- error: cannot find 'BlockOperation' in scope
353 | Task {
354 | let updatedPayload = self.ensureProfileId(payload)
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:380:42: error: cannot infer contextual base in reference to member 'barrier'
378 |
379 | public static func setGlobalProperties(_ properties: [String: Any]) {
380 | shared.globalQueue.async(flags: .barrier) {
| `- error: cannot infer contextual base in reference to member 'barrier'
381 | if var global = shared._global {
382 | for (key, value) in properties {
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:418:100: error: value of type 'AnyObject' has no member 'value'
416 | var mergedProperties = global
417 | if let payloadProperties = payload.properties {
418 | mergedProperties.merge(payloadProperties) { (_, new) in (new as AnyObject).value }
| `- error: value of type 'AnyObject' has no member 'value'
419 | }
420 | updatedPayload.properties = mergedProperties.mapValues { AnyCodable($0) }
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:441:42: error: cannot infer contextual base in reference to member 'barrier'
439 | public static func clear() {
440 | shared.profileId = nil
441 | shared.globalQueue.async(flags: .barrier) {
| `- error: cannot infer contextual base in reference to member 'barrier'
442 | shared._global = nil
443 | }
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:556:23: error: cannot find 'URLRequest' in scope
554 |
555 | private func post<T: Codable>(url: URL, data: T, options: [String: Any] = [:], attempt: Int = 0) async -> Result<Data, Error> {
556 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
557 | request.httpMethod = "POST"
558 | request.allHTTPHeaderFields = headers
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:573:57: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
571 |
572 | do {
573 | let (data, response) = try await URLSession.shared.data(for: request)
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
574 |
575 | guard let httpResponse = response as? HTTPURLResponse else {
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.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:bb5ef85e2f3936cf1d2ae6dee7e011cebd8377061043dcf9368e6726baaf85d8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[2/3] Emitting module OpenPanel
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:263:31: error: cannot find 'DispatchQueue' in scope
261 | private let api: Api
262 | private var profileId: String?
263 | private let globalQueue = DispatchQueue(label: "com.openpanel.globalQueue", attributes: .concurrent)
| `- error: cannot find 'DispatchQueue' in scope
264 | private var _global: [String: Any]?
265 | private var global: [String: Any]? {
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:263:94: error: cannot infer contextual base in reference to member 'concurrent'
261 | private let api: Api
262 | private var profileId: String?
263 | private let globalQueue = DispatchQueue(label: "com.openpanel.globalQueue", attributes: .concurrent)
| `- error: cannot infer contextual base in reference to member 'concurrent'
264 | private var _global: [String: Any]?
265 | private var global: [String: Any]? {
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:270:33: error: cannot find type 'OperationQueue' in scope
268 | }
269 | private var queue: [TrackHandlerPayload] = []
270 | private let operationQueue: OperationQueue
| `- error: cannot find type 'OperationQueue' in scope
271 |
272 | public struct Options {
[3/3] Compiling OpenPanel OpenPanel.swift
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:263:31: error: cannot find 'DispatchQueue' in scope
261 | private let api: Api
262 | private var profileId: String?
263 | private let globalQueue = DispatchQueue(label: "com.openpanel.globalQueue", attributes: .concurrent)
| `- error: cannot find 'DispatchQueue' in scope
264 | private var _global: [String: Any]?
265 | private var global: [String: Any]? {
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:263:94: error: cannot infer contextual base in reference to member 'concurrent'
261 | private let api: Api
262 | private var profileId: String?
263 | private let globalQueue = DispatchQueue(label: "com.openpanel.globalQueue", attributes: .concurrent)
| `- error: cannot infer contextual base in reference to member 'concurrent'
264 | private var _global: [String: Any]?
265 | private var global: [String: Any]? {
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:270:33: error: cannot find type 'OperationQueue' in scope
268 | }
269 | private var queue: [TrackHandlerPayload] = []
270 | private let operationQueue: OperationQueue
| `- error: cannot find type 'OperationQueue' in scope
271 |
272 | public struct Options {
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:29:27: error: cannot find 'WKWebView' in scope
27 | private static func getiOSUserAgent() -> String {
28 | if !isRunningInExtension() {
29 | let webView = WKWebView(frame: .zero)
| `- error: cannot find 'WKWebView' in scope
30 | var userAgent = ""
31 |
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:29:45: error: cannot infer contextual base in reference to member 'zero'
27 | private static func getiOSUserAgent() -> String {
28 | if !isRunningInExtension() {
29 | let webView = WKWebView(frame: .zero)
| `- error: cannot infer contextual base in reference to member 'zero'
30 | var userAgent = ""
31 |
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:32:29: error: cannot find 'DispatchSemaphore' in scope
30 | var userAgent = ""
31 |
32 | let semaphore = DispatchSemaphore(value: 0)
| `- error: cannot find 'DispatchSemaphore' in scope
33 |
34 | DispatchQueue.main.async {
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:34:13: error: cannot find 'DispatchQueue' in scope
32 | let semaphore = DispatchSemaphore(value: 0)
33 |
34 | DispatchQueue.main.async {
| `- error: cannot find 'DispatchQueue' in scope
35 | webView.evaluateJavaScript("navigator.userAgent") { (result, error) in
36 | if let agent = result as? String {
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:43:42: error: cannot call value of non-function type 'Date'
41 | }
42 |
43 | _ = semaphore.wait(timeout: .now() + 1.0)
| `- error: cannot call value of non-function type 'Date'
44 |
45 | if userAgent.isEmpty {
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:56:22: error: cannot find 'UIDevice' in scope
54 |
55 | private static func getBasicUserAgent() -> String {
56 | let device = UIDevice.current
| `- error: cannot find 'UIDevice' in scope
57 | let systemVersion = device.systemVersion
58 | let model = device.model
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:267:41: error: cannot infer contextual base in reference to member 'barrier'
265 | private var global: [String: Any]? {
266 | get { globalQueue.sync { _global } }
267 | set { globalQueue.async(flags: .barrier) { self._global = newValue } }
| `- error: cannot infer contextual base in reference to member 'barrier'
268 | }
269 | private var queue: [TrackHandlerPayload] = []
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:300:31: error: cannot find 'OperationQueue' in scope
298 | private init() {
299 | self.api = Api(config: Api.Config(baseUrl: "https://api.openpanel.dev"))
300 | self.operationQueue = OperationQueue()
| `- error: cannot find 'OperationQueue' in scope
301 | self.operationQueue.maxConcurrentOperationCount = 1
302 | }
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:352:25: error: cannot find 'BlockOperation' in scope
350 | }
351 |
352 | let operation = BlockOperation {
| `- error: cannot find 'BlockOperation' in scope
353 | Task {
354 | let updatedPayload = self.ensureProfileId(payload)
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:380:42: error: cannot infer contextual base in reference to member 'barrier'
378 |
379 | public static func setGlobalProperties(_ properties: [String: Any]) {
380 | shared.globalQueue.async(flags: .barrier) {
| `- error: cannot infer contextual base in reference to member 'barrier'
381 | if var global = shared._global {
382 | for (key, value) in properties {
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:418:100: error: value of type 'AnyObject' has no member 'value'
416 | var mergedProperties = global
417 | if let payloadProperties = payload.properties {
418 | mergedProperties.merge(payloadProperties) { (_, new) in (new as AnyObject).value }
| `- error: value of type 'AnyObject' has no member 'value'
419 | }
420 | updatedPayload.properties = mergedProperties.mapValues { AnyCodable($0) }
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:441:42: error: cannot infer contextual base in reference to member 'barrier'
439 | public static func clear() {
440 | shared.profileId = nil
441 | shared.globalQueue.async(flags: .barrier) {
| `- error: cannot infer contextual base in reference to member 'barrier'
442 | shared._global = nil
443 | }
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:556:23: error: cannot find 'URLRequest' in scope
554 |
555 | private func post<T: Codable>(url: URL, data: T, options: [String: Any] = [:], attempt: Int = 0) async -> Result<Data, Error> {
556 | var request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
557 | request.httpMethod = "POST"
558 | request.allHTTPHeaderFields = headers
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:573:57: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
571 |
572 | do {
573 | let (data, response) = try await URLSession.shared.data(for: request)
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
574 |
575 | guard let httpResponse = response as? HTTPURLResponse else {
BUILD FAILURE 6.1 wasm