The Swift Package Index logo.Swift Package Index

Build Information

Failed to build SimpleHTTP, reference main (fbf0f0), with Swift 6.3 for Wasm on 18 Apr 2026 06:00:19 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/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

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Pattio/SimpleHTTP.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/Pattio/SimpleHTTP
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at fbf0f01 Merge pull request #3 from Pattio/status-validator-error-mapping
Cloned https://github.com/Pattio/SimpleHTTP.git
Revision (git rev-parse @):
fbf0f010dd387bf5748596be63b5bc0d106f4574
SUCCESS checkout https://github.com/Pattio/SimpleHTTP.git at main
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/Pattio/SimpleHTTP.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/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/5] Write sources
[4/5] Write swift-version-24593BA9C3E375BF.txt
[6/12] Compiling SimpleHTTPCore HTTPRequestOption.swift
[7/12] Compiling SimpleHTTPCore HTTPResponse.swift
/host/spi-builder-workspace/Sources/Modules/Core/HTTPResponse.swift:16:26: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
14 |
15 |     /// The raw URL response.
16 |     public let response: HTTPURLResponse
   |                          `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 |
18 |     /// The optional response body.
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Modules/Core/HTTPResponse.swift:34:19: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
32 |     public init(
33 |         request: HTTPRequest,
34 |         response: HTTPURLResponse,
   |                   `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
35 |         body: Data? = nil
36 |     ) {
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Modules/Core/HTTPResponse.swift:16:16: error: stored property 'response' of 'Sendable'-conforming struct 'HTTPResponse' has non-Sendable type 'AnyObject'
14 |
15 |     /// The raw URL response.
16 |     public let response: HTTPURLResponse
   |                `- error: stored property 'response' of 'Sendable'-conforming struct 'HTTPResponse' has non-Sendable type 'AnyObject'
17 |
18 |     /// The optional response body.
/host/spi-builder-workspace/Sources/Modules/Core/HTTPResponse.swift:23:39: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
21 |     /// The HTTP status code.
22 |     public var status: HTTPStatus {
23 |         HTTPStatus(rawValue: response.statusCode)
   |                                       `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
24 |     }
25 |
[8/12] Compiling SimpleHTTPCore HTTPRequest.swift
[9/12] Compiling SimpleHTTPCore HTTPHandler.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[10/12] Compiling SimpleHTTPCore HTTPBody.swift
[11/12] Compiling SimpleHTTPCore HTTPError.swift
[12/12] Emitting module SimpleHTTPCore
/host/spi-builder-workspace/Sources/Modules/Core/HTTPResponse.swift:16:26: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
14 |
15 |     /// The raw URL response.
16 |     public let response: HTTPURLResponse
   |                          `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 |
18 |     /// The optional response body.
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Modules/Core/HTTPResponse.swift:34:19: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
32 |     public init(
33 |         request: HTTPRequest,
34 |         response: HTTPURLResponse,
   |                   `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
35 |         body: Data? = nil
36 |     ) {
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Modules/Core/HTTPResponse.swift:16:16: error: stored property 'response' of 'Sendable'-conforming struct 'HTTPResponse' has non-Sendable type 'AnyObject'
14 |
15 |     /// The raw URL response.
16 |     public let response: HTTPURLResponse
   |                `- error: stored property 'response' of 'Sendable'-conforming struct 'HTTPResponse' has non-Sendable type 'AnyObject'
17 |
18 |     /// The optional response body.
BUILD FAILURE 6.3 wasm