The Swift Package Index logo.Swift Package Index

Build Information

Failed to build OpenPanel, reference main (365143), with Swift 6.1 for Wasm on 1 Apr 2026 06:00:11 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/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.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.69.2
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Openpanel-dev/swift-sdk.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/Openpanel-dev/swift-sdk
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 3651435 Merge pull request #5 from srna-lib/main
Cloned https://github.com/Openpanel-dev/swift-sdk.git
Revision (git rev-parse @):
36514353ce875db5c917a49489bda5419840ba25
SUCCESS checkout https://github.com/Openpanel-dev/swift-sdk.git at main
========================================
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-4609320-1":/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.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 swiftpackageindex/spi-images
Digest: sha256:c3bd0c8eb125dea46564a1eb8b09ee779ba7ae350b1ee58b5e9d6ff6c39cef37
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/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:301: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
298 | // MARK: - OpenPanel Class
299 |
300 | public class OpenPanel {
    |              `- note: class 'OpenPanel' does not conform to the 'Sendable' protocol
301 |     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
302 |
303 |     private let api: Api
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:305:31: error: cannot find 'DispatchQueue' in scope
303 |     private let api: Api
304 |     private var profileId: String?
305 |     private let globalQueue = DispatchQueue(label: "com.openpanel.globalQueue", attributes: .concurrent)
    |                               `- error: cannot find 'DispatchQueue' in scope
306 |     private var _global: [String: Any]?
307 |     private var global: [String: Any]? {
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:305:94: error: cannot infer contextual base in reference to member 'concurrent'
303 |     private let api: Api
304 |     private var profileId: String?
305 |     private let globalQueue = DispatchQueue(label: "com.openpanel.globalQueue", attributes: .concurrent)
    |                                                                                              `- error: cannot infer contextual base in reference to member 'concurrent'
306 |     private var _global: [String: Any]?
307 |     private var global: [String: Any]? {
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:312:33: error: cannot find type 'OperationQueue' in scope
310 |     }
311 |     private var queue: [TrackHandlerPayload] = []
312 |     private let operationQueue: OperationQueue
    |                                 `- error: cannot find type 'OperationQueue' in scope
313 |
314 |     public struct Options {
[4/4] Compiling OpenPanel OpenPanel.swift
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:301: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
298 | // MARK: - OpenPanel Class
299 |
300 | public class OpenPanel {
    |              `- note: class 'OpenPanel' does not conform to the 'Sendable' protocol
301 |     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
302 |
303 |     private let api: Api
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:305:31: error: cannot find 'DispatchQueue' in scope
303 |     private let api: Api
304 |     private var profileId: String?
305 |     private let globalQueue = DispatchQueue(label: "com.openpanel.globalQueue", attributes: .concurrent)
    |                               `- error: cannot find 'DispatchQueue' in scope
306 |     private var _global: [String: Any]?
307 |     private var global: [String: Any]? {
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:305:94: error: cannot infer contextual base in reference to member 'concurrent'
303 |     private let api: Api
304 |     private var profileId: String?
305 |     private let globalQueue = DispatchQueue(label: "com.openpanel.globalQueue", attributes: .concurrent)
    |                                                                                              `- error: cannot infer contextual base in reference to member 'concurrent'
306 |     private var _global: [String: Any]?
307 |     private var global: [String: Any]? {
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:312:33: error: cannot find type 'OperationQueue' in scope
310 |     }
311 |     private var queue: [TrackHandlerPayload] = []
312 |     private let operationQueue: OperationQueue
    |                                 `- error: cannot find type 'OperationQueue' in scope
313 |
314 |     public struct Options {
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:309:41: error: cannot infer contextual base in reference to member 'barrier'
307 |     private var global: [String: Any]? {
308 |         get { globalQueue.sync { _global } }
309 |         set { globalQueue.async(flags: .barrier) { self._global = newValue } }
    |                                         `- error: cannot infer contextual base in reference to member 'barrier'
310 |     }
311 |     private var queue: [TrackHandlerPayload] = []
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:342:31: error: cannot find 'OperationQueue' in scope
340 |     private init() {
341 |         self.api = Api(config: Api.Config(baseUrl: "https://api.openpanel.dev"))
342 |         self.operationQueue = OperationQueue()
    |                               `- error: cannot find 'OperationQueue' in scope
343 |         self.operationQueue.maxConcurrentOperationCount = 1
344 |     }
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:394:25: error: cannot find 'BlockOperation' in scope
392 |         }
393 |
394 |         let operation = BlockOperation {
    |                         `- error: cannot find 'BlockOperation' in scope
395 |             Task {
396 |                 let updatedPayload = self.ensureProfileId(payload)
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:422:42: error: cannot infer contextual base in reference to member 'barrier'
420 |
421 |     public static func setGlobalProperties(_ properties: [String: Any]) {
422 |         shared.globalQueue.async(flags: .barrier) {
    |                                          `- error: cannot infer contextual base in reference to member 'barrier'
423 |             if var global = shared._global {
424 |                 for (key, value) in properties {
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:460:100: error: value of type 'AnyObject' has no member 'value'
458 |                     var mergedProperties = global
459 |                     if let payloadProperties = payload.properties {
460 |                         mergedProperties.merge(payloadProperties) { (_, new) in (new as AnyObject).value }
    |                                                                                                    `- error: value of type 'AnyObject' has no member 'value'
461 |                     }
462 |                     updatedPayload.properties = mergedProperties.mapValues { AnyCodable($0) }
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:483:42: error: cannot infer contextual base in reference to member 'barrier'
481 |     public static func clear() {
482 |         shared.profileId = nil
483 |         shared.globalQueue.async(flags: .barrier) {
    |                                          `- error: cannot infer contextual base in reference to member 'barrier'
484 |             shared._global = nil
485 |         }
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:598:23: error: cannot find 'URLRequest' in scope
596 |
597 |     private func post<T: Codable>(url: URL, data: T, options: [String: Any] = [:], attempt: Int = 0) async -> Result<Data, Error> {
598 |         var request = URLRequest(url: url)
    |                       `- error: cannot find 'URLRequest' in scope
599 |         request.httpMethod = "POST"
600 |         request.allHTTPHeaderFields = headers
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:615:57: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
613 |
614 |         do {
615 |             let (data, response) = try await URLSession.shared.data(for: request)
    |                                                         `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
616 |
617 |             guard let httpResponse = response as? HTTPURLResponse else {
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/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.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:c3bd0c8eb125dea46564a1eb8b09ee779ba7ae350b1ee58b5e9d6ff6c39cef37
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/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:305:31: error: cannot find 'DispatchQueue' in scope
303 |     private let api: Api
304 |     private var profileId: String?
305 |     private let globalQueue = DispatchQueue(label: "com.openpanel.globalQueue", attributes: .concurrent)
    |                               `- error: cannot find 'DispatchQueue' in scope
306 |     private var _global: [String: Any]?
307 |     private var global: [String: Any]? {
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:305:94: error: cannot infer contextual base in reference to member 'concurrent'
303 |     private let api: Api
304 |     private var profileId: String?
305 |     private let globalQueue = DispatchQueue(label: "com.openpanel.globalQueue", attributes: .concurrent)
    |                                                                                              `- error: cannot infer contextual base in reference to member 'concurrent'
306 |     private var _global: [String: Any]?
307 |     private var global: [String: Any]? {
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:312:33: error: cannot find type 'OperationQueue' in scope
310 |     }
311 |     private var queue: [TrackHandlerPayload] = []
312 |     private let operationQueue: OperationQueue
    |                                 `- error: cannot find type 'OperationQueue' in scope
313 |
314 |     public struct Options {
[3/3] Compiling OpenPanel OpenPanel.swift
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:305:31: error: cannot find 'DispatchQueue' in scope
303 |     private let api: Api
304 |     private var profileId: String?
305 |     private let globalQueue = DispatchQueue(label: "com.openpanel.globalQueue", attributes: .concurrent)
    |                               `- error: cannot find 'DispatchQueue' in scope
306 |     private var _global: [String: Any]?
307 |     private var global: [String: Any]? {
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:305:94: error: cannot infer contextual base in reference to member 'concurrent'
303 |     private let api: Api
304 |     private var profileId: String?
305 |     private let globalQueue = DispatchQueue(label: "com.openpanel.globalQueue", attributes: .concurrent)
    |                                                                                              `- error: cannot infer contextual base in reference to member 'concurrent'
306 |     private var _global: [String: Any]?
307 |     private var global: [String: Any]? {
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:312:33: error: cannot find type 'OperationQueue' in scope
310 |     }
311 |     private var queue: [TrackHandlerPayload] = []
312 |     private let operationQueue: OperationQueue
    |                                 `- error: cannot find type 'OperationQueue' in scope
313 |
314 |     public struct Options {
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:309:41: error: cannot infer contextual base in reference to member 'barrier'
307 |     private var global: [String: Any]? {
308 |         get { globalQueue.sync { _global } }
309 |         set { globalQueue.async(flags: .barrier) { self._global = newValue } }
    |                                         `- error: cannot infer contextual base in reference to member 'barrier'
310 |     }
311 |     private var queue: [TrackHandlerPayload] = []
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:342:31: error: cannot find 'OperationQueue' in scope
340 |     private init() {
341 |         self.api = Api(config: Api.Config(baseUrl: "https://api.openpanel.dev"))
342 |         self.operationQueue = OperationQueue()
    |                               `- error: cannot find 'OperationQueue' in scope
343 |         self.operationQueue.maxConcurrentOperationCount = 1
344 |     }
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:394:25: error: cannot find 'BlockOperation' in scope
392 |         }
393 |
394 |         let operation = BlockOperation {
    |                         `- error: cannot find 'BlockOperation' in scope
395 |             Task {
396 |                 let updatedPayload = self.ensureProfileId(payload)
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:422:42: error: cannot infer contextual base in reference to member 'barrier'
420 |
421 |     public static func setGlobalProperties(_ properties: [String: Any]) {
422 |         shared.globalQueue.async(flags: .barrier) {
    |                                          `- error: cannot infer contextual base in reference to member 'barrier'
423 |             if var global = shared._global {
424 |                 for (key, value) in properties {
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:460:100: error: value of type 'AnyObject' has no member 'value'
458 |                     var mergedProperties = global
459 |                     if let payloadProperties = payload.properties {
460 |                         mergedProperties.merge(payloadProperties) { (_, new) in (new as AnyObject).value }
    |                                                                                                    `- error: value of type 'AnyObject' has no member 'value'
461 |                     }
462 |                     updatedPayload.properties = mergedProperties.mapValues { AnyCodable($0) }
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:483:42: error: cannot infer contextual base in reference to member 'barrier'
481 |     public static func clear() {
482 |         shared.profileId = nil
483 |         shared.globalQueue.async(flags: .barrier) {
    |                                          `- error: cannot infer contextual base in reference to member 'barrier'
484 |             shared._global = nil
485 |         }
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:598:23: error: cannot find 'URLRequest' in scope
596 |
597 |     private func post<T: Codable>(url: URL, data: T, options: [String: Any] = [:], attempt: Int = 0) async -> Result<Data, Error> {
598 |         var request = URLRequest(url: url)
    |                       `- error: cannot find 'URLRequest' in scope
599 |         request.httpMethod = "POST"
600 |         request.allHTTPHeaderFields = headers
/host/spi-builder-workspace/Sources/OpenPanel/OpenPanel.swift:615:57: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
613 |
614 |         do {
615 |             let (data, response) = try await URLSession.shared.data(for: request)
    |                                                         `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
616 |
617 |             guard let httpResponse = response as? HTTPURLResponse else {
BUILD FAILURE 6.1 wasm