The Swift Package Index logo.Swift Package Index

Build Information

Failed to build Superhighway, reference 2.0.1 (7e942d), with Swift 6.3 for Wasm on 13 Apr 2026 17:44:56 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/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/rhysforyou/Superhighway.git
Reference: 2.0.1
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/rhysforyou/Superhighway
 * tag               2.0.1      -> FETCH_HEAD
HEAD is now at 7e942df update CHANGELOG links
Cloned https://github.com/rhysforyou/Superhighway.git
Revision (git rev-parse @):
7e942dfbc799f9c0ea231490a2ce99b8ff78b2d5
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/rhysforyou/Superhighway.git at 2.0.1
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/rhysforyou/Superhighway.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/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
Fetching https://github.com/apple/swift-docc-plugin
[1/2271] Fetching swift-docc-plugin
Fetched https://github.com/apple/swift-docc-plugin from cache (0.82s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.4.6 (1.70s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3672] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.65s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.62s)
Creating working copy for https://github.com/apple/swift-docc-plugin
Working copy of https://github.com/apple/swift-docc-plugin resolved at 1.4.6
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
[1/1] Compiling plugin Swift-DocC Preview
[2/2] Compiling plugin Swift-DocC
Building for debugging...
[2/4] Write sources
[3/4] Write swift-version-24593BA9C3E375BF.txt
[5/7] Compiling Superhighway URLSession+Endpoint.swift
/host/spi-builder-workspace/Sources/Superhighway/URLSession+Endpoint.swift:3:8: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
  1 | import Foundation
  2 |
  3 | public extension URLSession {
    |        `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
  4 |   /// Loads an endpoint by creating (and directly resuming) a data task.
  5 |   ///
[#NominalTypes]: <https://docs.swift.org/compiler/documentation/diagnostics/nominal-types>
error: emit-module command failed with exit code 1 (use -v to see invocation)
[6/7] Emitting module Superhighway
/host/spi-builder-workspace/Sources/Superhighway/Endpoint.swift:76:23: error: cannot find type 'URLRequest' in scope
 74 | public struct Endpoint<Response> {
 75 |   /// The underlying `URLRequest` for this endpoint
 76 |   public let request: URLRequest
    |                       `- error: cannot find type 'URLRequest' in scope
 77 |
 78 |   /// Closure responsible for translating a URL response into the endpoint's `Response` type
/host/spi-builder-workspace/Sources/Superhighway/Endpoint.swift:79:22: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 77 |
 78 |   /// Closure responsible for translating a URL response into the endpoint's `Response` type
 79 |   let parse: (Data?, URLResponse?) throws -> Response
    |                      `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 80 |
 81 |   /// This is used to check the status code of a response.
Foundation.URLResponse:2:18: note: 'URLResponse' 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 URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Superhighway/Endpoint.swift:108:30: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
106 |     timeOutInterval: TimeInterval = 10,
107 |     query: [String: String] = [:],
108 |     parse: @escaping (Data?, URLResponse?) throws -> Response
    |                              `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
109 |   ) {
110 |     var requestURL: URL
Foundation.URLResponse:2:18: note: 'URLResponse' 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 URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Superhighway/Endpoint.swift:150:14: error: cannot find type 'URLRequest' in scope
148 |   ///   - parse: this converts a response into an `A`.
149 |   public init(
150 |     request: URLRequest,
    |              `- error: cannot find type 'URLRequest' in scope
151 |     expectedStatusCode: @escaping (Int) -> Bool = expected200to300,
152 |     parse: @escaping (Data?, URLResponse?) throws -> Response
/host/spi-builder-workspace/Sources/Superhighway/Endpoint.swift:152:30: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
150 |     request: URLRequest,
151 |     expectedStatusCode: @escaping (Int) -> Bool = expected200to300,
152 |     parse: @escaping (Data?, URLResponse?) throws -> Response
    |                              `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
153 |   ) {
154 |     self.request = request
Foundation.URLResponse:2:18: note: 'URLResponse' 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 URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Superhighway/Endpoint.swift:338:24: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
336 | public struct WrongStatusCodeError: Error {
337 |   public let statusCode: Int
338 |   public let response: HTTPURLResponse?
    |                        `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
339 |
340 |   public init(statusCode: Int, response: HTTPURLResponse?) {
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/Superhighway/Endpoint.swift:340:42: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
338 |   public let response: HTTPURLResponse?
339 |
340 |   public init(statusCode: Int, response: HTTPURLResponse?) {
    |                                          `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
341 |     self.statusCode = statusCode
342 |     self.response = response
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/Superhighway/URLSession+Endpoint.swift:3:8: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
  1 | import Foundation
  2 |
  3 | public extension URLSession {
    |        `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
  4 |   /// Loads an endpoint by creating (and directly resuming) a data task.
  5 |   ///
[#NominalTypes]: <https://docs.swift.org/compiler/documentation/diagnostics/nominal-types>
[7/7] Compiling Superhighway Endpoint.swift
/host/spi-builder-workspace/Sources/Superhighway/Endpoint.swift:76:23: error: cannot find type 'URLRequest' in scope
 74 | public struct Endpoint<Response> {
 75 |   /// The underlying `URLRequest` for this endpoint
 76 |   public let request: URLRequest
    |                       `- error: cannot find type 'URLRequest' in scope
 77 |
 78 |   /// Closure responsible for translating a URL response into the endpoint's `Response` type
/host/spi-builder-workspace/Sources/Superhighway/Endpoint.swift:79:22: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 77 |
 78 |   /// Closure responsible for translating a URL response into the endpoint's `Response` type
 79 |   let parse: (Data?, URLResponse?) throws -> Response
    |                      `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 80 |
 81 |   /// This is used to check the status code of a response.
Foundation.URLResponse:2:18: note: 'URLResponse' 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 URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Superhighway/Endpoint.swift:108:30: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
106 |     timeOutInterval: TimeInterval = 10,
107 |     query: [String: String] = [:],
108 |     parse: @escaping (Data?, URLResponse?) throws -> Response
    |                              `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
109 |   ) {
110 |     var requestURL: URL
Foundation.URLResponse:2:18: note: 'URLResponse' 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 URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Superhighway/Endpoint.swift:150:14: error: cannot find type 'URLRequest' in scope
148 |   ///   - parse: this converts a response into an `A`.
149 |   public init(
150 |     request: URLRequest,
    |              `- error: cannot find type 'URLRequest' in scope
151 |     expectedStatusCode: @escaping (Int) -> Bool = expected200to300,
152 |     parse: @escaping (Data?, URLResponse?) throws -> Response
/host/spi-builder-workspace/Sources/Superhighway/Endpoint.swift:152:30: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
150 |     request: URLRequest,
151 |     expectedStatusCode: @escaping (Int) -> Bool = expected200to300,
152 |     parse: @escaping (Data?, URLResponse?) throws -> Response
    |                              `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
153 |   ) {
154 |     self.request = request
Foundation.URLResponse:2:18: note: 'URLResponse' 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 URLResponse = AnyObject
  |                  `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Superhighway/Endpoint.swift:338:24: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
336 | public struct WrongStatusCodeError: Error {
337 |   public let statusCode: Int
338 |   public let response: HTTPURLResponse?
    |                        `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
339 |
340 |   public init(statusCode: Int, response: HTTPURLResponse?) {
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/Superhighway/Endpoint.swift:340:42: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
338 |   public let response: HTTPURLResponse?
339 |
340 |   public init(statusCode: Int, response: HTTPURLResponse?) {
    |                                          `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
341 |     self.statusCode = statusCode
342 |     self.response = response
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/Superhighway/Endpoint.swift:121:19: error: cannot find 'URLRequest' in scope
119 |       requestURL = components.url!
120 |     }
121 |     var request = URLRequest(url: requestURL)
    |                   `- error: cannot find 'URLRequest' in scope
122 |     if let accept {
123 |       request.setValue(accept.mimeType, forHTTPHeaderField: "Accept")
BUILD FAILURE 6.3 wasm