The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build HTTPClient, reference main (960cbb), with Swift 5.10 for Linux on 15 Sep 2024 19:24:56 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-5.10-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.53.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/marinofelipe/http_client.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/marinofelipe/http_client
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 960cbb5 Missing conditional imports for Linux
Cloned https://github.com/marinofelipe/http_client.git
Revision (git rev-parse @):
960cbb55c2082c97523257aec91bb6b7e57f8e2e
SUCCESS checkout https://github.com/marinofelipe/http_client.git at main
========================================
Build
========================================
Selected platform:         linux
Swift version:             5.10
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" registry.gitlab.com/finestructure/spi-images:basic-5.10-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-5.10-latest: Pulling from finestructure/spi-images
Digest: sha256:6c25c99211d1e15148b101a61df2563575f50d0f624cb6ce5a573a0b53fb5dca
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-5.10-latest
Fetching https://github.com/apple/swift-log.git
[1/3586] Fetching swift-log
Fetched https://github.com/apple/swift-log.git from cache (0.44s)
Computing version for https://github.com/apple/swift-log.git
Computed https://github.com/apple/swift-log.git at 1.2.0 (1.05s)
Creating working copy for https://github.com/apple/swift-log.git
Working copy of https://github.com/apple/swift-log.git resolved at 1.2.0
Building for debugging...
[0/6] Write sources
[5/6] Write swift-version-24593BA9C3E375BF.txt
[7/18] Emitting module Logging
[8/18] Compiling HTTPClientCore HTTPRequestMethod.swift
[9/18] Compiling HTTPClientCore HTTPRequestScheme.swift
[10/18] Compiling HTTPClientCore Result+HTTPClient.swift
[11/18] 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 non-isolated global shared mutable state; this is an error in Swift 6
    static var defaultSuccessfulStatusCodes: Set<Int> = Set(200..<300)
               ^
/host/spi-builder-workspace/Sources/HTTPClientCore/Extensions/Set+HTTPClient.swift:2:16: note: isolate 'defaultSuccessfulStatusCodes' to a global actor, or convert it to a 'let' constant and conform it to 'Sendable'
    static var defaultSuccessfulStatusCodes: Set<Int> = Set(200..<300)
               ^
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestError.swift:8:10: warning: associated value 'invalidResponse' of 'Sendable'-conforming enum 'HTTPResponseError' has non-sendable type 'URLResponse'
    case invalidResponse(_ urlResponse: URLResponse)
         ^
FoundationNetworking.URLResponse:1:12: note: class 'URLResponse' does not conform to the 'Sendable' protocol
open class URLResponse : NSObject, NSSecureCoding, NSCopying {
           ^
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestError.swift:3:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
import FoundationNetworking
^
@preconcurrency
[12/18] Compiling HTTPClientCore HTTPRequestBuilder.swift
[13/18] 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 non-isolated global shared mutable state; this is an error in Swift 6
    static var defaultSuccessfulStatusCodes: Set<Int> = Set(200..<300)
               ^
/host/spi-builder-workspace/Sources/HTTPClientCore/Extensions/Set+HTTPClient.swift:2:16: note: isolate 'defaultSuccessfulStatusCodes' to a global actor, or convert it to a 'let' constant and conform it to 'Sendable'
    static var defaultSuccessfulStatusCodes: Set<Int> = Set(200..<300)
               ^
[14/18] Compiling HTTPClientCore Data+HTTPClient.swift
[15/18] Compiling HTTPClientCore HTTPRequestError.swift
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestError.swift:8:10: warning: associated value 'invalidResponse' of 'Sendable'-conforming enum 'HTTPResponseError' has non-sendable type 'URLResponse'
    case invalidResponse(_ urlResponse: URLResponse)
         ^
FoundationNetworking.URLResponse:1:12: note: class 'URLResponse' does not conform to the 'Sendable' protocol
open class URLResponse : NSObject, NSSecureCoding, NSCopying {
           ^
/host/spi-builder-workspace/Sources/HTTPClientCore/HTTPRequestError.swift:3:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'FoundationNetworking'
import FoundationNetworking
^
@preconcurrency
[16/19] Compiling Logging Locks.swift
[18/19] Compiling Logging LogHandler.swift
[19/19] Compiling Logging Logging.swift
[21/32] Compiling HTTPClient HTTPResponseHandler.swift
/host/spi-builder-workspace/Sources/HTTPClientCore/Extensions/Set+HTTPClient.swift:2:16: warning: static property 'defaultSuccessfulStatusCodes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in Swift 6
    static var defaultSuccessfulStatusCodes: Set<Int> = Set(200..<300)
               ^
/host/spi-builder-workspace/Sources/HTTPClientCore/Extensions/Set+HTTPClient.swift:2:16: note: isolate 'defaultSuccessfulStatusCodes' to a global actor, or convert it to a 'let' constant and conform it to 'Sendable'
    static var defaultSuccessfulStatusCodes: Set<Int> = Set(200..<300)
               ^
/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 Swift 6
    public init(successfulStatusCodes: Set<Int> = .defaultSuccessfulStatusCodes) {
                                                   ^
/host/spi-builder-workspace/Sources/HTTPClientCore/Extensions/Set+HTTPClient.swift:2:16: note: static property declared here
    static var defaultSuccessfulStatusCodes: Set<Int> = Set(200..<300)
               ^
error: emit-module command failed with exit code 1 (use -v to see invocation)
[22/33] Emitting module CombineHTTPClient
/host/spi-builder-workspace/Sources/CombineHTTPClient/CombineHTTPClient.swift:1:8: error: no such module 'Combine'
import Combine
       ^
[23/33] Compiling HTTPClient HTTPTask.swift
[24/33] Compiling HTTPClient URLSessionProtocol.swift
[25/33] Compiling CombineHTTPClient CombineHTTPClient.swift
/host/spi-builder-workspace/Sources/CombineHTTPClient/CombineHTTPClient.swift:1:8: error: no such module 'Combine'
import Combine
       ^
[26/33] Compiling HTTPClient HTTPClientMiddleware.swift
[27/33] Compiling HTTPClient HTTPDecoder.swift
[28/33] Compiling CombineHTTPClient HTTPResponse.swift
/host/spi-builder-workspace/Sources/CombineHTTPClient/CombineHTTPClient.swift:1:8: error: no such module 'Combine'
import Combine
       ^
[29/33] Compiling HTTPClient Optional+Data.swift
[30/33] Emitting module HTTPClient
/host/spi-builder-workspace/Sources/HTTPClientCore/Extensions/Set+HTTPClient.swift:2:16: warning: static property 'defaultSuccessfulStatusCodes' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in Swift 6
    static var defaultSuccessfulStatusCodes: Set<Int> = Set(200..<300)
               ^
/host/spi-builder-workspace/Sources/HTTPClientCore/Extensions/Set+HTTPClient.swift:2:16: note: isolate 'defaultSuccessfulStatusCodes' to a global actor, or convert it to a 'let' constant and conform it to 'Sendable'
    static var defaultSuccessfulStatusCodes: Set<Int> = Set(200..<300)
               ^
/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 Swift 6
    public init(successfulStatusCodes: Set<Int> = .defaultSuccessfulStatusCodes) {
                                                   ^
/host/spi-builder-workspace/Sources/HTTPClientCore/Extensions/Set+HTTPClient.swift:2:16: note: static property declared here
    static var defaultSuccessfulStatusCodes: Set<Int> = Set(200..<300)
               ^
error: fatalError
BUILD FAILURE 5.10 linux