Build Information
Failed to build SwiftIP, reference v2.2.2 (6c788e), with Swift 6.3 for Wasm on 20 Apr 2026 21:56:12 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-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.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/Samasaur1/SwiftIP.git
Reference: v2.2.2
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/Samasaur1/SwiftIP
* tag v2.2.2 -> FETCH_HEAD
HEAD is now at 6c788e2 Bump version in .jazzy.yaml
Cloned https://github.com/Samasaur1/SwiftIP.git
Revision (git rev-parse @):
6c788e2d34ad93f786abaf4fbb69662a9e045276
SUCCESS checkout https://github.com/Samasaur1/SwiftIP.git at v2.2.2
========================================
Build
========================================
Selected platform: wasm
Swift version: 6.3
Building package at path: $PWD
https://github.com/Samasaur1/SwiftIP.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-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.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/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/4] Emitting module SwiftIP
[4/4] Compiling SwiftIP SwiftIP.swift
/host/spi-builder-workspace/Sources/SwiftIP/SwiftIP.swift:39:25: error: cannot find 'DispatchSemaphore' in scope
37 | /// - Returns: The device's public IP address.
38 | public class func `public`(_ version: Version = .IPv4) -> String? {
39 | let semaphore = DispatchSemaphore(value: 0)
| `- error: cannot find 'DispatchSemaphore' in scope
40 | let url = URL(string: "https://\(version.rawValue).icanhazip.com")!//i can haz ip
41 | let request = URLRequest(url: url)
/host/spi-builder-workspace/Sources/SwiftIP/SwiftIP.swift:41:23: error: cannot find 'URLRequest' in scope
39 | let semaphore = DispatchSemaphore(value: 0)
40 | let url = URL(string: "https://\(version.rawValue).icanhazip.com")!//i can haz ip
41 | let request = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
42 | let config = URLSessionConfiguration.default
43 | let session = URLSession(configuration: config)
/host/spi-builder-workspace/Sources/SwiftIP/SwiftIP.swift:42:46: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
40 | let url = URL(string: "https://\(version.rawValue).icanhazip.com")!//i can haz ip
41 | let request = URLRequest(url: url)
42 | let config = URLSessionConfiguration.default
| `- error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
43 | let session = URLSession(configuration: config)
44 |
/host/spi-builder-workspace/Sources/SwiftIP/SwiftIP.swift:43:23: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
41 | let request = URLRequest(url: url)
42 | let config = URLSessionConfiguration.default
43 | let session = URLSession(configuration: config)
| `- error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
44 |
45 | var ip: String? = nil
/host/spi-builder-workspace/Sources/SwiftIP/SwiftIP.swift:55:38: error: cannot call value of non-function type 'ContinuousClock.Instant'
53 |
54 | task.resume()
55 | _ = semaphore.wait(timeout: .now() + .seconds(5))
| `- error: cannot call value of non-function type 'ContinuousClock.Instant'
56 | return ip
57 | }
/host/spi-builder-workspace/Sources/SwiftIP/SwiftIP.swift:84:30: error: cannot find 'IFF_UP' in scope
82 |
83 | // Check for running IPv4, IPv6 interfaces. Skip the loopback interface.
84 | if (flags & (IFF_UP|IFF_RUNNING|IFF_LOOPBACK)) == (IFF_UP|IFF_RUNNING) {
| `- error: cannot find 'IFF_UP' in scope
85 | if addr.sa_family == UInt8(version == .IPv4 ? AF_INET : AF_INET6) {
86 |
/host/spi-builder-workspace/Sources/SwiftIP/SwiftIP.swift:84:37: error: cannot find 'IFF_RUNNING' in scope
82 |
83 | // Check for running IPv4, IPv6 interfaces. Skip the loopback interface.
84 | if (flags & (IFF_UP|IFF_RUNNING|IFF_LOOPBACK)) == (IFF_UP|IFF_RUNNING) {
| `- error: cannot find 'IFF_RUNNING' in scope
85 | if addr.sa_family == UInt8(version == .IPv4 ? AF_INET : AF_INET6) {
86 |
/host/spi-builder-workspace/Sources/SwiftIP/SwiftIP.swift:84:49: error: cannot find 'IFF_LOOPBACK' in scope
82 |
83 | // Check for running IPv4, IPv6 interfaces. Skip the loopback interface.
84 | if (flags & (IFF_UP|IFF_RUNNING|IFF_LOOPBACK)) == (IFF_UP|IFF_RUNNING) {
| `- error: cannot find 'IFF_LOOPBACK' in scope
85 | if addr.sa_family == UInt8(version == .IPv4 ? AF_INET : AF_INET6) {
86 |
/host/spi-builder-workspace/Sources/SwiftIP/SwiftIP.swift:84:68: error: cannot find 'IFF_UP' in scope
82 |
83 | // Check for running IPv4, IPv6 interfaces. Skip the loopback interface.
84 | if (flags & (IFF_UP|IFF_RUNNING|IFF_LOOPBACK)) == (IFF_UP|IFF_RUNNING) {
| `- error: cannot find 'IFF_UP' in scope
85 | if addr.sa_family == UInt8(version == .IPv4 ? AF_INET : AF_INET6) {
86 |
/host/spi-builder-workspace/Sources/SwiftIP/SwiftIP.swift:84:75: error: cannot find 'IFF_RUNNING' in scope
82 |
83 | // Check for running IPv4, IPv6 interfaces. Skip the loopback interface.
84 | if (flags & (IFF_UP|IFF_RUNNING|IFF_LOOPBACK)) == (IFF_UP|IFF_RUNNING) {
| `- error: cannot find 'IFF_RUNNING' in scope
85 | if addr.sa_family == UInt8(version == .IPv4 ? AF_INET : AF_INET6) {
86 |
/host/spi-builder-workspace/Sources/SwiftIP/SwiftIP.swift:88:73: error: cannot find 'NI_MAXHOST' in scope
86 |
87 | // Convert interface address to a human readable string:
88 | var hostname = [CChar](repeating: 0, count: Int(NI_MAXHOST))
| `- error: cannot find 'NI_MAXHOST' in scope
89 | if (getnameinfo(&addr, socklen_t(addr.sa_len), &hostname, socklen_t(hostname.count),
90 | nil, socklen_t(0), NI_NUMERICHOST) == 0) {
/host/spi-builder-workspace/Sources/SwiftIP/SwiftIP.swift:89:29: error: cannot find 'getnameinfo' in scope
87 | // Convert interface address to a human readable string:
88 | var hostname = [CChar](repeating: 0, count: Int(NI_MAXHOST))
89 | if (getnameinfo(&addr, socklen_t(addr.sa_len), &hostname, socklen_t(hostname.count),
| `- error: cannot find 'getnameinfo' in scope
90 | nil, socklen_t(0), NI_NUMERICHOST) == 0) {
91 | // if let address = String(cString: hostname) {
/host/spi-builder-workspace/Sources/SwiftIP/SwiftIP.swift:90:60: error: cannot find 'NI_NUMERICHOST' in scope
88 | var hostname = [CChar](repeating: 0, count: Int(NI_MAXHOST))
89 | if (getnameinfo(&addr, socklen_t(addr.sa_len), &hostname, socklen_t(hostname.count),
90 | nil, socklen_t(0), NI_NUMERICHOST) == 0) {
| `- error: cannot find 'NI_NUMERICHOST' in scope
91 | // if let address = String(cString: hostname) {
92 | // addresses.append(address)
/host/spi-builder-workspace/Sources/SwiftIP/SwiftIP.swift:89:28: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
87 | // Convert interface address to a human readable string:
88 | var hostname = [CChar](repeating: 0, count: Int(NI_MAXHOST))
89 | if (getnameinfo(&addr, socklen_t(addr.sa_len), &hostname, socklen_t(hostname.count),
| `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
90 | nil, socklen_t(0), NI_NUMERICHOST) == 0) {
91 | // if let address = String(cString: hostname) {
BUILD FAILURE 6.3 wasm