The Swift Package Index logo.Swift Package Index

Build Information

Failed to build swift-net-kit, reference main (71484c), with Swift 6.1 for Wasm on 3 Apr 2026 07:39:09 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.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/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.1
Building package at path:  $PWD
https://github.com/philiprehberger/swift-net-kit.git
https://github.com/philiprehberger/swift-net-kit.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
  ],
  "manifest_display_name" : "swift-net-kit",
  "name" : "swift-net-kit",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "13.0"
    },
    {
      "name" : "ios",
      "version" : "16.0"
    },
    {
      "name" : "tvos",
      "version" : "16.0"
    },
    {
      "name" : "watchos",
      "version" : "9.0"
    }
  ],
  "products" : [
    {
      "name" : "NetKit",
      "targets" : [
        "NetKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "NetKitTests",
      "module_type" : "SwiftTarget",
      "name" : "NetKitTests",
      "path" : "Tests/NetKitTests",
      "sources" : [
        "CachePolicyTests.swift",
        "EndpointTests.swift",
        "HTTPMethodTests.swift",
        "PluginTests.swift",
        "ResponseTests.swift",
        "RetryPolicyTests.swift"
      ],
      "target_dependencies" : [
        "NetKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "NetKit",
      "module_type" : "SwiftTarget",
      "name" : "NetKit",
      "path" : "Sources/NetKit",
      "product_memberships" : [
        "NetKit"
      ],
      "sources" : [
        "AuthPlugin.swift",
        "CachePolicy.swift",
        "Endpoint.swift",
        "HTTPMethod.swift",
        "LoggingPlugin.swift",
        "NetKit.swift",
        "NetworkClient.swift",
        "NetworkError.swift",
        "Plugin.swift",
        "Response.swift",
        "RetryPolicy.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
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.1-latest swift build --swift-sdk wasm32-unknown-wasi -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats 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
[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 NetworkError.swift
[5/14] Compiling NetKit Response.swift
[6/14] Compiling NetKit NetworkClient.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/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: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 'URLSession' (aka '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 'URLSession' (aka '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/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 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
[8/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
[9/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 | }
[10/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 | }
[11/14] Compiling NetKit Endpoint.swift
[12/14] Compiling NetKit HTTPMethod.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[13/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: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 'URLSession' (aka '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 'URLSession' (aka '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
[14/14] Compiling NetKit RetryPolicy.swift
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.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
[2/12] Compiling NetKit NetworkClient.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/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: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 'URLSession' (aka '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 'URLSession' (aka '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/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 {
[3/12] 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 | }
[4/12] 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 | }
error: emit-module command failed with exit code 1 (use -v to see invocation)
[5/13] Compiling NetKit Endpoint.swift
[6/13] Compiling NetKit HTTPMethod.swift
[7/13] 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: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 'URLSession' (aka '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 'URLSession' (aka '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
[8/13] 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
[9/13] 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
[10/13] Compiling NetKit Response.swift
[11/13] Compiling NetKit NetworkError.swift
[12/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
[13/13] Compiling NetKit RetryPolicy.swift
BUILD FAILURE 6.1 wasm