The Swift Package Index logo.Swift Package Index

Build Information

Failed to build swift-net-kit, reference main (71484c), with Swift 6.3 for Wasm on 19 Apr 2026 18:17:11 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-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/philiprehberger/swift-net-kit.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/philiprehberger/swift-net-kit
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 71484ca Fix FoundationNetworking in tests and var capture in Sendable closure
Cloned https://github.com/philiprehberger/swift-net-kit.git
Revision (git rev-parse @):
71484cab7ab465f7bb363463b0307e8ddf04d84f
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/philiprehberger/swift-net-kit.git at main
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/philiprehberger/swift-net-kit.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-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
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/13] Compiling NetKit Plugin.swift
/host/spi-builder-workspace/Sources/NetKit/Plugin.swift:11:35: error: cannot find type 'URLRequest' in scope
 9 | public protocol NetworkPlugin: Sendable {
10 |     /// Modify the request before sending
11 |     func prepare(_ request: inout URLRequest) async throws
   |                                   `- error: cannot find type 'URLRequest' in scope
12 |
13 |     /// Process the response after receiving
/host/spi-builder-workspace/Sources/NetKit/Plugin.swift:14:30: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
12 |
13 |     /// Process the response after receiving
14 |     func process(_ response: HTTPURLResponse, data: Data) async throws
   |                              `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
15 | }
16 |
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/NetKit/Plugin.swift:19:37: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 | extension NetworkPlugin {
18 |     /// Default: no response processing
19 |     public func process(_ response: HTTPURLResponse, data: Data) async throws {}
   |                                     `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
20 | }
21 |
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
[4/14] Compiling NetKit LoggingPlugin.swift
/host/spi-builder-workspace/Sources/NetKit/LoggingPlugin.swift:15:42: error: cannot find type 'URLRequest' in scope
13 |     }
14 |
15 |     public func prepare(_ request: inout URLRequest) async throws {
   |                                          `- error: cannot find type 'URLRequest' in scope
16 |         let method = request.httpMethod ?? "GET"
17 |         let url = request.url?.absoluteString ?? "unknown"
/host/spi-builder-workspace/Sources/NetKit/LoggingPlugin.swift:21:37: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
19 |     }
20 |
21 |     public func process(_ response: HTTPURLResponse, data: Data) async throws {
   |                                     `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
22 |         logger("[NetKit] \(response.statusCode) (\(data.count) bytes)")
23 |     }
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/NetKit/Plugin.swift:11:35: error: cannot find type 'URLRequest' in scope
 9 | public protocol NetworkPlugin: Sendable {
10 |     /// Modify the request before sending
11 |     func prepare(_ request: inout URLRequest) async throws
   |                                   `- error: cannot find type 'URLRequest' in scope
12 |
13 |     /// Process the response after receiving
/host/spi-builder-workspace/Sources/NetKit/LoggingPlugin.swift:22:37: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
20 |
21 |     public func process(_ response: HTTPURLResponse, data: Data) async throws {
22 |         logger("[NetKit] \(response.statusCode) (\(data.count) bytes)")
   |                                     `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
23 |     }
24 | }
[5/14] Compiling NetKit NetKit.swift
/host/spi-builder-workspace/Sources/NetKit/LoggingPlugin.swift:15:42: error: cannot find type 'URLRequest' in scope
13 |     }
14 |
15 |     public func prepare(_ request: inout URLRequest) async throws {
   |                                          `- error: cannot find type 'URLRequest' in scope
16 |         let method = request.httpMethod ?? "GET"
17 |         let url = request.url?.absoluteString ?? "unknown"
/host/spi-builder-workspace/Sources/NetKit/LoggingPlugin.swift:21:37: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
19 |     }
20 |
21 |     public func process(_ response: HTTPURLResponse, data: Data) async throws {
   |                                     `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
22 |         logger("[NetKit] \(response.statusCode) (\(data.count) bytes)")
23 |     }
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/NetKit/Plugin.swift:11:35: error: cannot find type 'URLRequest' in scope
 9 | public protocol NetworkPlugin: Sendable {
10 |     /// Modify the request before sending
11 |     func prepare(_ request: inout URLRequest) async throws
   |                                   `- error: cannot find type 'URLRequest' in scope
12 |
13 |     /// Process the response after receiving
/host/spi-builder-workspace/Sources/NetKit/LoggingPlugin.swift:22:37: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
20 |
21 |     public func process(_ response: HTTPURLResponse, data: Data) async throws {
22 |         logger("[NetKit] \(response.statusCode) (\(data.count) bytes)")
   |                                     `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
23 |     }
24 | }
[6/14] Compiling NetKit NetworkClient.swift
/host/spi-builder-workspace/Sources/NetKit/NetworkClient.swift:15:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 13 |     private let baseURL: URL
 14 |     private let plugins: [any NetworkPlugin]
 15 |     private let session: URLSession
    |                          `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 16 |     private let cache = MemoryCache()
 17 |
Foundation.URLSession:2:18: note: 'URLSession' 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 URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/NetKit/NetworkClient.swift:22:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 20 |         baseURL: URL,
 21 |         plugins: [any NetworkPlugin] = [],
 22 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 23 |     ) {
 24 |         self.baseURL = baseURL
Foundation.URLSession:2:18: note: 'URLSession' 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 URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/NetKit/NetworkClient.swift:22:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 20 |         baseURL: URL,
 21 |         plugins: [any NetworkPlugin] = [],
 22 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 23 |     ) {
 24 |         self.baseURL = baseURL
/host/spi-builder-workspace/Sources/NetKit/NetworkClient.swift:22:32: error: value of type '_' expected to be instance of class or class-constrained type
 20 |         baseURL: URL,
 21 |         plugins: [any NetworkPlugin] = [],
 22 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
 23 |     ) {
 24 |         self.baseURL = baseURL
/host/spi-builder-workspace/Sources/NetKit/NetworkClient.swift:117:70: error: cannot find type 'URLRequest' in scope
115 |     }
116 |
117 |     private func buildRequest(for endpoint: some Endpoint) throws -> URLRequest {
    |                                                                      `- error: cannot find type 'URLRequest' in scope
118 |         var components = URLComponents(url: baseURL, resolvingAgainstBaseURL: true)
119 |         let existingPath = components?.path ?? ""
/host/spi-builder-workspace/Sources/NetKit/NetworkClient.swift:141:37: error: cannot find type 'URLRequest' in scope
139 |     }
140 |
141 |     private func execute(_ request: URLRequest) async throws -> Response<Data> {
    |                                     `- error: cannot find type 'URLRequest' in scope
142 |         var mutableRequest = request
143 |
/host/spi-builder-workspace/Sources/NetKit/NetworkClient.swift:15:17: error: stored property 'session' of 'Sendable'-conforming struct 'NetworkClient' has non-Sendable type 'AnyObject'
 13 |     private let baseURL: URL
 14 |     private let plugins: [any NetworkPlugin]
 15 |     private let session: URLSession
    |                 `- error: stored property 'session' of 'Sendable'-conforming struct 'NetworkClient' has non-Sendable type 'AnyObject'
 16 |     private let cache = MemoryCache()
 17 |
/host/spi-builder-workspace/Sources/NetKit/NetworkClient.swift:130:23: error: cannot find 'URLRequest' in scope
128 |         }
129 |
130 |         var request = URLRequest(url: url)
    |                       `- error: cannot find 'URLRequest' in scope
131 |         request.httpMethod = endpoint.method.rawValue
132 |         request.httpBody = endpoint.body
/host/spi-builder-workspace/Sources/NetKit/Plugin.swift:11:35: error: cannot find type 'URLRequest' in scope
 9 | public protocol NetworkPlugin: Sendable {
10 |     /// Modify the request before sending
11 |     func prepare(_ request: inout URLRequest) async throws
   |                                   `- error: cannot find type 'URLRequest' in scope
12 |
13 |     /// Process the response after receiving
/host/spi-builder-workspace/Sources/NetKit/NetworkClient.swift:153:53: error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
151 |         }
152 |
153 |         let (data, urlResponse) = try await session.data(for: mutableRequest)
    |                                                     `- error: value of type 'URLSession' (aka 'AnyObject') has no member 'data'
154 |
155 |         guard let httpResponse = urlResponse as? HTTPURLResponse else {
[7/14] Compiling NetKit Endpoint.swift
[8/14] Compiling NetKit HTTPMethod.swift
[9/14] Compiling NetKit AuthPlugin.swift
/host/spi-builder-workspace/Sources/NetKit/AuthPlugin.swift:19:42: error: cannot find type 'URLRequest' in scope
17 |     }
18 |
19 |     public func prepare(_ request: inout URLRequest) async throws {
   |                                          `- error: cannot find type 'URLRequest' in scope
20 |         let token = await tokenProvider()
21 |         request.setValue("Bearer \(token)", forHTTPHeaderField: "Authorization")
/host/spi-builder-workspace/Sources/NetKit/Plugin.swift:11:35: error: cannot find type 'URLRequest' in scope
 9 | public protocol NetworkPlugin: Sendable {
10 |     /// Modify the request before sending
11 |     func prepare(_ request: inout URLRequest) async throws
   |                                   `- error: cannot find type 'URLRequest' in scope
12 |
13 |     /// Process the response after receiving
[10/14] Compiling NetKit CachePolicy.swift
/host/spi-builder-workspace/Sources/NetKit/AuthPlugin.swift:19:42: error: cannot find type 'URLRequest' in scope
17 |     }
18 |
19 |     public func prepare(_ request: inout URLRequest) async throws {
   |                                          `- error: cannot find type 'URLRequest' in scope
20 |         let token = await tokenProvider()
21 |         request.setValue("Bearer \(token)", forHTTPHeaderField: "Authorization")
/host/spi-builder-workspace/Sources/NetKit/Plugin.swift:11:35: error: cannot find type 'URLRequest' in scope
 9 | public protocol NetworkPlugin: Sendable {
10 |     /// Modify the request before sending
11 |     func prepare(_ request: inout URLRequest) async throws
   |                                   `- error: cannot find type 'URLRequest' in scope
12 |
13 |     /// Process the response after receiving
[11/14] Compiling NetKit NetworkError.swift
[12/14] Compiling NetKit RetryPolicy.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[13/14] Compiling NetKit Response.swift
[14/14] Emitting module NetKit
/host/spi-builder-workspace/Sources/NetKit/AuthPlugin.swift:19:42: error: cannot find type 'URLRequest' in scope
17 |     }
18 |
19 |     public func prepare(_ request: inout URLRequest) async throws {
   |                                          `- error: cannot find type 'URLRequest' in scope
20 |         let token = await tokenProvider()
21 |         request.setValue("Bearer \(token)", forHTTPHeaderField: "Authorization")
/host/spi-builder-workspace/Sources/NetKit/Plugin.swift:11:35: error: cannot find type 'URLRequest' in scope
 9 | public protocol NetworkPlugin: Sendable {
10 |     /// Modify the request before sending
11 |     func prepare(_ request: inout URLRequest) async throws
   |                                   `- error: cannot find type 'URLRequest' in scope
12 |
13 |     /// Process the response after receiving
/host/spi-builder-workspace/Sources/NetKit/LoggingPlugin.swift:15:42: error: cannot find type 'URLRequest' in scope
13 |     }
14 |
15 |     public func prepare(_ request: inout URLRequest) async throws {
   |                                          `- error: cannot find type 'URLRequest' in scope
16 |         let method = request.httpMethod ?? "GET"
17 |         let url = request.url?.absoluteString ?? "unknown"
/host/spi-builder-workspace/Sources/NetKit/LoggingPlugin.swift:21:37: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
19 |     }
20 |
21 |     public func process(_ response: HTTPURLResponse, data: Data) async throws {
   |                                     `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
22 |         logger("[NetKit] \(response.statusCode) (\(data.count) bytes)")
23 |     }
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/NetKit/NetworkClient.swift:15:26: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 13 |     private let baseURL: URL
 14 |     private let plugins: [any NetworkPlugin]
 15 |     private let session: URLSession
    |                          `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 16 |     private let cache = MemoryCache()
 17 |
Foundation.URLSession:2:18: note: 'URLSession' 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 URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/NetKit/NetworkClient.swift:22:18: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 20 |         baseURL: URL,
 21 |         plugins: [any NetworkPlugin] = [],
 22 |         session: URLSession = .shared
    |                  `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 23 |     ) {
 24 |         self.baseURL = baseURL
Foundation.URLSession:2:18: note: 'URLSession' 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 URLSession = AnyObject
  |                  `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/NetKit/NetworkClient.swift:22:32: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 20 |         baseURL: URL,
 21 |         plugins: [any NetworkPlugin] = [],
 22 |         session: URLSession = .shared
    |                                `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 23 |     ) {
 24 |         self.baseURL = baseURL
/host/spi-builder-workspace/Sources/NetKit/NetworkClient.swift:22:32: error: value of type '_' expected to be instance of class or class-constrained type
 20 |         baseURL: URL,
 21 |         plugins: [any NetworkPlugin] = [],
 22 |         session: URLSession = .shared
    |                                `- error: value of type '_' expected to be instance of class or class-constrained type
 23 |     ) {
 24 |         self.baseURL = baseURL
/host/spi-builder-workspace/Sources/NetKit/NetworkClient.swift:117:70: error: cannot find type 'URLRequest' in scope
115 |     }
116 |
117 |     private func buildRequest(for endpoint: some Endpoint) throws -> URLRequest {
    |                                                                      `- error: cannot find type 'URLRequest' in scope
118 |         var components = URLComponents(url: baseURL, resolvingAgainstBaseURL: true)
119 |         let existingPath = components?.path ?? ""
/host/spi-builder-workspace/Sources/NetKit/NetworkClient.swift:141:37: error: cannot find type 'URLRequest' in scope
139 |     }
140 |
141 |     private func execute(_ request: URLRequest) async throws -> Response<Data> {
    |                                     `- error: cannot find type 'URLRequest' in scope
142 |         var mutableRequest = request
143 |
/host/spi-builder-workspace/Sources/NetKit/NetworkClient.swift:15:17: error: stored property 'session' of 'Sendable'-conforming struct 'NetworkClient' has non-Sendable type 'AnyObject'
 13 |     private let baseURL: URL
 14 |     private let plugins: [any NetworkPlugin]
 15 |     private let session: URLSession
    |                 `- error: stored property 'session' of 'Sendable'-conforming struct 'NetworkClient' has non-Sendable type 'AnyObject'
 16 |     private let cache = MemoryCache()
 17 |
/host/spi-builder-workspace/Sources/NetKit/Plugin.swift:14:30: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
12 |
13 |     /// Process the response after receiving
14 |     func process(_ response: HTTPURLResponse, data: Data) async throws
   |                              `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
15 | }
16 |
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/NetKit/Plugin.swift:19:37: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
17 | extension NetworkPlugin {
18 |     /// Default: no response processing
19 |     public func process(_ response: HTTPURLResponse, data: Data) async throws {}
   |                                     `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
20 | }
21 |
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
BUILD FAILURE 6.3 wasm