Build Information
Failed to build HTTPClient, reference 0.0.5 (3daf31
), with Swift 6.2 (beta) for Linux on 22 Jun 2025 02:38:39 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.64.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: linux
Swift version: 6.2
Building package at path: $PWD
https://github.com/marinofelipe/http_client.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Fetching https://github.com/apple/swift-log.git
[1/3836] Fetching swift-log
Fetched https://github.com/apple/swift-log.git from cache (0.42s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.6.3 (0.81s)
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.6.3
Building for debugging...
[0/6] Write sources
[5/6] Write swift-version-24593BA9C3E375BF.txt
[7/19] Emitting module Logging
[8/19] Compiling HTTPClientCore HTTPRequestScheme.swift
[9/19] 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>
[10/19] Compiling HTTPClientCore HTTPRequestMethod.swift
[11/19] Compiling Logging LogHandler.swift
[12/19] Compiling HTTPClientCore Result+HTTPClient.swift
[13/19] Compiling Logging MetadataProvider.swift
[14/19] Compiling Logging Locks.swift
[15/19] 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 |
[#MutableGlobalVariable]: <https://docs.swift.org/compiler/documentation/diagnostics/mutable-global-variable>
[16/19] Compiling HTTPClientCore Data+HTTPClient.swift
[17/19] Compiling HTTPClientCore HTTPRequestBuilder.swift
[18/19] Compiling HTTPClientCore HTTPRequestError.swift
[20/20] Compiling Logging Logging.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[22/33] Emitting module HTTPClient
/host/spi-builder-workspace/Sources/HTTPClient/Abstractions/HTTPTask.swift:1:14: error: type alias 'URLSessionTask' (aka 'AnyObject') cannot be imported as 'class'
1 | import class Foundation.URLSessionTask
| `- error: type alias 'URLSessionTask' (aka 'AnyObject') cannot be imported as 'class'
2 |
3 | /// An abstract interface to network tasks.
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' declared here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionTask = AnyObject
| `- note: 'URLSessionTask' declared here
/host/spi-builder-workspace/Sources/HTTPClient/Abstractions/HTTPTask.swift:13:1: error: non-nominal type 'URLSessionTask' (aka 'AnyObject') cannot be extended [#NominalTypes]
11 | }
12 |
13 | extension URLSessionTask: HTTPTask {}
| `- error: non-nominal type 'URLSessionTask' (aka 'AnyObject') cannot be extended [#NominalTypes]
14 |
/host/spi-builder-workspace/Sources/HTTPClient/Abstractions/URLSessionProtocol.swift:13:1: warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'URLSessionProtocol'; this is an error in the Swift 6 language mode
7 | var delegateQueue: OperationQueue { get }
8 |
9 | func dataTask(with request: URLRequest,
| `- note: expected sendability to match requirement here
10 | completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) -> URLSessionDataTask
11 | }
12 |
13 | extension URLSession: URLSessionProtocol {}
| `- warning: sendability of function types in instance method 'dataTask(with:completionHandler:)' does not match requirement in protocol 'URLSessionProtocol'; this is an error in the Swift 6 language mode
14 |
/host/spi-builder-workspace/Sources/HTTPClient/HTTPResponse.swift:1:14: error: type alias 'URLResponse' (aka 'AnyObject') cannot be imported as 'class'
1 | import class Foundation.URLResponse
| `- error: type alias 'URLResponse' (aka 'AnyObject') cannot be imported as 'class'
2 | import struct Foundation.Data
3 | import HTTPClientCore
Foundation.URLResponse:2:18: note: 'URLResponse' declared 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' declared here
/host/spi-builder-workspace/Sources/HTTPClient/HTTPResponse.swift:9:29: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
7 | public let isSucceeded: Bool
8 | public let statusCode: Int
9 | public let urlResponse: URLResponse?
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
10 |
11 | public func successBody() -> Data? {
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/HTTPClient/HTTPResponse.swift:5:15: error: type 'HTTPResponse' does not conform to protocol 'Equatable'
3 | import HTTPClientCore
4 |
5 | public struct HTTPResponse: Equatable {
| |- error: type 'HTTPResponse' does not conform to protocol 'Equatable'
| `- note: add stubs for conformance
6 | let body: Data?
7 | public let isSucceeded: Bool
8 | public let statusCode: Int
9 | public let urlResponse: URLResponse?
| `- note: stored property type 'URLResponse?' (aka 'Optional<AnyObject>') does not conform to protocol 'Equatable', preventing synthesized conformance of 'HTTPResponse' to 'Equatable'
10 |
11 | public func successBody() -> Data? {
Swift.==:1:24: note: candidate would match if 'HTTPResponse' conformed to 'RawRepresentable'
1 | @inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
| `- note: candidate would match if 'HTTPResponse' conformed to 'RawRepresentable'
Swift.FloatingPoint.==:2:20: note: candidate would match if 'HTTPResponse' conformed to 'FloatingPoint'
1 | protocol FloatingPoint {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: candidate would match if 'HTTPResponse' conformed to 'FloatingPoint'
3 |
Swift.BinaryInteger.==:2:20: note: candidate would match if 'HTTPResponse' conformed to 'BinaryInteger'
1 | protocol BinaryInteger {
2 | public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger}
| `- note: candidate would match if 'HTTPResponse' conformed to 'BinaryInteger'
3 |
Swift._Pointer.==:2:20: note: candidate would match if 'HTTPResponse' conformed to '_Pointer'
1 | protocol _Pointer {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: candidate would match if 'HTTPResponse' conformed to '_Pointer'
3 |
Swift._Pointer.==:2:31: note: candidate would match if 'HTTPResponse' conformed to '_Pointer'
1 | protocol _Pointer {
2 | @inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer}
| `- note: candidate would match if 'HTTPResponse' conformed to '_Pointer'
3 |
Swift.Strideable.==:2:31: note: candidate would match if 'HTTPResponse' conformed to 'Strideable'
1 | protocol Strideable {
2 | @inlinable public static func == (x: Self, y: Self) -> Bool}
| `- note: candidate would match if 'HTTPResponse' conformed to 'Strideable'
3 |
Swift.StringProtocol.==:2:31: note: candidate would match if 'HTTPResponse' conformed to 'StringProtocol'
1 | protocol StringProtocol {
2 | @inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol}
| `- note: candidate would match if 'HTTPResponse' conformed to 'StringProtocol'
3 |
Swift.SIMD.==:2:20: note: candidate would match if 'HTTPResponse' conformed to 'SIMD'
1 | protocol SIMD {
2 | public static func == (a: Self, b: Self) -> Bool}
| `- note: candidate would match if 'HTTPResponse' conformed to 'SIMD'
3 |
Swift.Equatable.==:2:13: note: protocol requires function '==' with type '(HTTPResponse, HTTPResponse) -> Bool'
1 | protocol Equatable {
2 | static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: protocol requires function '==' with type '(HTTPResponse, HTTPResponse) -> Bool'
3 |
/host/spi-builder-workspace/Sources/HTTPClient/Handlers/HTTPResponseHandler.swift:21:52: warning: reference to static property 'defaultSuccessfulStatusCodes' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
19 | let successfulStatusCodes: Set<Int>
20 |
21 | public init(successfulStatusCodes: Set<Int> = .defaultSuccessfulStatusCodes) {
| `- warning: reference to static property 'defaultSuccessfulStatusCodes' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
22 | self.successfulStatusCodes = successfulStatusCodes
23 | }
/host/spi-builder-workspace/Sources/HTTPClientCore/Extensions/Set+HTTPClient.swift:2:16: note: static property declared here
1 | public extension Set where Element == Int {
2 | static var defaultSuccessfulStatusCodes: Set<Int> = Set(200..<300)
| `- note: static property declared here
3 | }
4 |
[#NominalTypes]: <https://docs.swift.org/compiler/documentation/diagnostics/nominal-types>
[23/34] Compiling HTTPClient HTTPClientMiddleware.swift
[24/34] Compiling HTTPClient HTTPResponse.swift
/host/spi-builder-workspace/Sources/HTTPClient/HTTPResponse.swift:1:14: error: type alias 'URLResponse' (aka 'AnyObject') cannot be imported as 'class'
1 | import class Foundation.URLResponse
| `- error: type alias 'URLResponse' (aka 'AnyObject') cannot be imported as 'class'
2 | import struct Foundation.Data
3 | import HTTPClientCore
Foundation.URLResponse:2:18: note: 'URLResponse' declared 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' declared here
/host/spi-builder-workspace/Sources/HTTPClient/HTTPResponse.swift:9:29: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
7 | public let isSucceeded: Bool
8 | public let statusCode: Int
9 | public let urlResponse: URLResponse?
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
10 |
11 | public func successBody() -> Data? {
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/HTTPClient/HTTPResponse.swift:5:15: error: type 'HTTPResponse' does not conform to protocol 'Equatable'
3 | import HTTPClientCore
4 |
5 | public struct HTTPResponse: Equatable {
| |- error: type 'HTTPResponse' does not conform to protocol 'Equatable'
| `- note: add stubs for conformance
6 | let body: Data?
7 | public let isSucceeded: Bool
8 | public let statusCode: Int
9 | public let urlResponse: URLResponse?
| `- note: stored property type 'URLResponse?' (aka 'Optional<AnyObject>') does not conform to protocol 'Equatable', preventing synthesized conformance of 'HTTPResponse' to 'Equatable'
10 |
11 | public func successBody() -> Data? {
Swift.==:1:24: note: candidate would match if 'HTTPResponse' conformed to 'RawRepresentable'
1 | @inlinable public func == <T>(lhs: T, rhs: T) -> Bool where T : RawRepresentable, T.RawValue : Equatable
| `- note: candidate would match if 'HTTPResponse' conformed to 'RawRepresentable'
Swift.FloatingPoint.==:2:20: note: candidate would match if 'HTTPResponse' conformed to 'FloatingPoint'
1 | protocol FloatingPoint {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: candidate would match if 'HTTPResponse' conformed to 'FloatingPoint'
3 |
Swift.BinaryInteger.==:2:20: note: candidate would match if 'HTTPResponse' conformed to 'BinaryInteger'
1 | protocol BinaryInteger {
2 | public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : BinaryInteger}
| `- note: candidate would match if 'HTTPResponse' conformed to 'BinaryInteger'
3 |
Swift._Pointer.==:2:20: note: candidate would match if 'HTTPResponse' conformed to '_Pointer'
1 | protocol _Pointer {
2 | public static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: candidate would match if 'HTTPResponse' conformed to '_Pointer'
3 |
Swift._Pointer.==:2:31: note: candidate would match if 'HTTPResponse' conformed to '_Pointer'
1 | protocol _Pointer {
2 | @inlinable public static func == <Other>(lhs: Self, rhs: Other) -> Bool where Other : _Pointer}
| `- note: candidate would match if 'HTTPResponse' conformed to '_Pointer'
3 |
Swift.Strideable.==:2:31: note: candidate would match if 'HTTPResponse' conformed to 'Strideable'
1 | protocol Strideable {
2 | @inlinable public static func == (x: Self, y: Self) -> Bool}
| `- note: candidate would match if 'HTTPResponse' conformed to 'Strideable'
3 |
Swift.StringProtocol.==:2:31: note: candidate would match if 'HTTPResponse' conformed to 'StringProtocol'
1 | protocol StringProtocol {
2 | @inlinable public static func == <RHS>(lhs: Self, rhs: RHS) -> Bool where RHS : StringProtocol}
| `- note: candidate would match if 'HTTPResponse' conformed to 'StringProtocol'
3 |
Swift.SIMD.==:2:20: note: candidate would match if 'HTTPResponse' conformed to 'SIMD'
1 | protocol SIMD {
2 | public static func == (a: Self, b: Self) -> Bool}
| `- note: candidate would match if 'HTTPResponse' conformed to 'SIMD'
3 |
Swift.Equatable.==:2:13: note: protocol requires function '==' with type '(HTTPResponse, HTTPResponse) -> Bool'
1 | protocol Equatable {
2 | static func == (lhs: Self, rhs: Self) -> Bool}
| `- note: protocol requires function '==' with type '(HTTPResponse, HTTPResponse) -> Bool'
3 |
error: emit-module command failed with exit code 1 (use -v to see invocation)
[25/34] Emitting module CombineHTTPClient
/host/spi-builder-workspace/Sources/CombineHTTPClient/CombineHTTPClient.swift:1:8: error: no such module 'Combine'
1 | import Combine
| `- error: no such module 'Combine'
2 | import HTTPClientCore
3 | import Foundation
[26/34] Compiling CombineHTTPClient CombineHTTPClient.swift
/host/spi-builder-workspace/Sources/CombineHTTPClient/CombineHTTPClient.swift:1:8: error: no such module 'Combine'
1 | import Combine
| `- error: no such module 'Combine'
2 | import HTTPClientCore
3 | import Foundation
[27/34] Compiling CombineHTTPClient HTTPResponse.swift
/host/spi-builder-workspace/Sources/CombineHTTPClient/CombineHTTPClient.swift:1:8: error: no such module 'Combine'
1 | import Combine
| `- error: no such module 'Combine'
2 | import HTTPClientCore
3 | import Foundation
BUILD FAILURE 6.2 linux