The Swift Package Index logo.Swift Package Index

Build Information

Failed to build HTTPClient, reference 0.0.5 (3daf31), with Swift 6.3 for Wasm on 15 Apr 2026 00:49:36 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/marinofelipe/http_client.git
Reference: 0.0.5
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/marinofelipe/http_client
 * tag               0.0.5      -> FETCH_HEAD
HEAD is now at 3daf31f More conditional imports for Linux
Cloned https://github.com/marinofelipe/http_client.git
Revision (git rev-parse @):
3daf31f1c0cc62156feee3b79699133394fe6bd1
SUCCESS checkout https://github.com/marinofelipe/http_client.git at 0.0.5
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/marinofelipe/http_client.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1
wasm-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:d69f4e7582c319245442d62a08b2d7c7fd5a0c0c69f5d2ef11d1530cd8d3329b
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest
Fetching https://github.com/apple/swift-log.git
[1/6569] Fetching swift-log
Fetched https://github.com/apple/swift-log.git from cache (0.48s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.12.0 (0.90s)
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.12.0
Building for debugging...
[0/6] Write sources
[5/6] Write swift-version-24593BA9C3E375BF.txt
[7/20] Compiling HTTPClientCore Result+HTTPClient.swift
[8/20] Compiling HTTPClientCore HTTPRequestMethod.swift
[9/20] Compiling HTTPClientCore HTTPRequestScheme.swift
[10/20] Compiling Logging MetadataProvider.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[11/20] Compiling HTTPClientCore Data+HTTPClient.swift
[12/20] Emitting module HTTPClientCore
/host/spi-builder-workspace/Sources/HTTPClientCore/Extensions/Set+HTTPClient.swift:2:16: warning: static property 'defaultSuccessfulStatusCodes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
1 | public extension Set where Element == Int {
2 |     static var defaultSuccessfulStatusCodes: Set<Int> = Set(200..<300)
  |                |- warning: static property 'defaultSuccessfulStatusCodes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
  |                |- note: convert 'defaultSuccessfulStatusCodes' to a 'let' constant to make 'Sendable' shared state immutable
  |                |- note: add '@MainActor' to make static property 'defaultSuccessfulStatusCodes' part of global actor 'MainActor'
  |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
3 | }
4 |
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestBuilder/HTTPRequestBuilder.swift:38:30: error: cannot find type 'URLRequest' in scope
 36 |     private var timeoutInterval: TimeInterval = 10
 37 |     private var body: Data?
 38 |     private var cachePolicy: URLRequest.CachePolicy = .useProtocolCachePolicy
    |                              `- error: cannot find type 'URLRequest' in scope
 39 |     private var allHeaders = [String: String]()
 40 |     private var urlComponents = URLComponents()
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestBuilder/HTTPRequestBuilder.swift:100:44: error: cannot find type 'URLRequest' in scope
 98 |     /// - Parameter cachePolicy: The cache policy for the request. Defaults to `.useProtocolCachePolicy`
 99 |     @discardableResult
100 |     public func cachePolicy(_ cachePolicy: URLRequest.CachePolicy) -> HTTPRequestBuilder {
    |                                            `- error: cannot find type 'URLRequest' in scope
101 |         self.cachePolicy = cachePolicy
102 |         return self
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestBuilder/HTTPRequestBuilder.swift:111:35: error: cannot find type 'URLRequest' in scope
109 |     }
110 |
111 |     public func build() throws -> URLRequest {
    |                                   `- error: cannot find type 'URLRequest' in scope
112 |         try makeUrlRequest()
113 |     }
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestBuilder/HTTPRequestBuilder.swift:118:46: error: cannot find type 'URLRequest' in scope
116 |
117 |     /// The `URLRequest` to be built.
118 |     private func makeUrlRequest() throws  -> URLRequest {
    |                                              `- error: cannot find type 'URLRequest' in scope
119 |         guard let url = urlComponents.url else {
120 |             throw HTTPRequestBuilderError.invalidURLComponents
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestError.swift:8:41: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 6 | /// Possible errors for an HTTP response.
 7 | public enum HTTPResponseError: Error, CustomDebugStringConvertible {
 8 |     case invalidResponse(_ urlResponse: URLResponse)
   |                                         `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 9 |     case underlying(_ error: URLError)
10 |     case decoding(_ error: DecodingError)
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/HTTPClientCore/HTTPRequestError.swift:8:10: warning: associated value 'invalidResponse' of 'Sendable'-conforming enum 'HTTPResponseError' has non-Sendable type 'AnyObject'
 6 | /// Possible errors for an HTTP response.
 7 | public enum HTTPResponseError: Error, CustomDebugStringConvertible {
 8 |     case invalidResponse(_ urlResponse: URLResponse)
   |          `- warning: associated value 'invalidResponse' of 'Sendable'-conforming enum 'HTTPResponseError' has non-Sendable type 'AnyObject'
 9 |     case underlying(_ error: URLError)
10 |     case decoding(_ error: DecodingError)
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[13/20] Compiling HTTPClientCore Set+HTTPClient.swift
/host/spi-builder-workspace/Sources/HTTPClientCore/Extensions/Set+HTTPClient.swift:2:16: warning: static property 'defaultSuccessfulStatusCodes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
1 | public extension Set where Element == Int {
2 |     static var defaultSuccessfulStatusCodes: Set<Int> = Set(200..<300)
  |                |- warning: static property 'defaultSuccessfulStatusCodes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode [#MutableGlobalVariable]
  |                |- note: convert 'defaultSuccessfulStatusCodes' to a 'let' constant to make 'Sendable' shared state immutable
  |                |- note: add '@MainActor' to make static property 'defaultSuccessfulStatusCodes' part of global actor 'MainActor'
  |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
3 | }
4 |
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[14/20] Compiling HTTPClientCore HTTPRequestBuilder.swift
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestBuilder/HTTPRequestBuilder.swift:38:30: error: cannot find type 'URLRequest' in scope
 36 |     private var timeoutInterval: TimeInterval = 10
 37 |     private var body: Data?
 38 |     private var cachePolicy: URLRequest.CachePolicy = .useProtocolCachePolicy
    |                              `- error: cannot find type 'URLRequest' in scope
 39 |     private var allHeaders = [String: String]()
 40 |     private var urlComponents = URLComponents()
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestBuilder/HTTPRequestBuilder.swift:100:44: error: cannot find type 'URLRequest' in scope
 98 |     /// - Parameter cachePolicy: The cache policy for the request. Defaults to `.useProtocolCachePolicy`
 99 |     @discardableResult
100 |     public func cachePolicy(_ cachePolicy: URLRequest.CachePolicy) -> HTTPRequestBuilder {
    |                                            `- error: cannot find type 'URLRequest' in scope
101 |         self.cachePolicy = cachePolicy
102 |         return self
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestBuilder/HTTPRequestBuilder.swift:111:35: error: cannot find type 'URLRequest' in scope
109 |     }
110 |
111 |     public func build() throws -> URLRequest {
    |                                   `- error: cannot find type 'URLRequest' in scope
112 |         try makeUrlRequest()
113 |     }
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestBuilder/HTTPRequestBuilder.swift:118:46: error: cannot find type 'URLRequest' in scope
116 |
117 |     /// The `URLRequest` to be built.
118 |     private func makeUrlRequest() throws  -> URLRequest {
    |                                              `- error: cannot find type 'URLRequest' in scope
119 |         guard let url = urlComponents.url else {
120 |             throw HTTPRequestBuilderError.invalidURLComponents
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestBuilder/HTTPRequestBuilder.swift:123:26: error: cannot find 'URLRequest' in scope
121 |         }
122 |
123 |         var urlRequest = URLRequest(url: url, cachePolicy: cachePolicy, timeoutInterval: timeoutInterval)
    |                          `- error: cannot find 'URLRequest' in scope
124 |         urlRequest.httpMethod = method.rawValue
125 |         for (key, value) in allHeaders {
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestBuilder/HTTPRequestBuilder.swift:141:24: error: cannot infer contextual base in reference to member 'useProtocolCachePolicy'
139 |         timeoutInterval = 10
140 |         body = nil
141 |         cachePolicy = .useProtocolCachePolicy
    |                        `- error: cannot infer contextual base in reference to member 'useProtocolCachePolicy'
142 |
143 |         // Reset all headers to default headers
[15/20] Compiling HTTPClientCore HTTPRequestError.swift
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestError.swift:8:41: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 6 | /// Possible errors for an HTTP response.
 7 | public enum HTTPResponseError: Error, CustomDebugStringConvertible {
 8 |     case invalidResponse(_ urlResponse: URLResponse)
   |                                         `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 9 |     case underlying(_ error: URLError)
10 |     case decoding(_ error: DecodingError)
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/HTTPClientCore/HTTPRequestError.swift:8:10: warning: associated value 'invalidResponse' of 'Sendable'-conforming enum 'HTTPResponseError' has non-Sendable type 'AnyObject'
 6 | /// Possible errors for an HTTP response.
 7 | public enum HTTPResponseError: Error, CustomDebugStringConvertible {
 8 |     case invalidResponse(_ urlResponse: URLResponse)
   |          `- warning: associated value 'invalidResponse' of 'Sendable'-conforming enum 'HTTPResponseError' has non-Sendable type 'AnyObject'
 9 |     case underlying(_ error: URLError)
10 |     case decoding(_ error: DecodingError)
[16/20] Compiling Logging LogHandler.swift
[17/20] Compiling Logging LogEvent.swift
[18/20] Emitting module Logging
[19/20] Compiling Logging Locks.swift
BUILD FAILURE 6.3 wasm