The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Failed to build Apexy, reference 1.7.5 (ad19a3), with Swift 5.10 for Linux on 20 May 2025 15:23:54 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/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.61.6
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/RedMadRobot/apexy-ios.git
Reference: 1.7.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/RedMadRobot/apexy-ios
 * tag               1.7.5      -> FETCH_HEAD
HEAD is now at ad19a37 Merge pull request #46 from onl1ner/feature/explicit-host-trust-evaluation
Cloned https://github.com/RedMadRobot/apexy-ios.git
Revision (git rev-parse @):
ad19a372695ef3191c5fb8e70624cb7439224f4d
SUCCESS checkout https://github.com/RedMadRobot/apexy-ios.git at 1.7.5
========================================
Build
========================================
Selected platform:         linux
Swift version:             5.10
Building package at path:  $PWD
https://github.com/RedMadRobot/apexy-ios.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/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:6d920f38293997922d4d49cb53f62a54ddf3deda6c4b27b73b7446097bd70082
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-5.10-latest
Fetching https://github.com/Alamofire/Alamofire.git
[1/30140] Fetching alamofire
Fetched https://github.com/Alamofire/Alamofire.git from cache (3.06s)
Computing version for https://github.com/Alamofire/Alamofire.git
Computed https://github.com/Alamofire/Alamofire.git at 5.10.2 (1.52s)
Creating working copy for https://github.com/Alamofire/Alamofire.git
Working copy of https://github.com/Alamofire/Alamofire.git resolved at 5.10.2
Building for debugging...
[0/7] Write sources
[5/7] Copying PrivacyInfo.xcprivacy
[6/7] Write swift-version-24593BA9C3E375BF.txt
[8/55] Compiling Alamofire Alamofire.swift
[9/55] Compiling Alamofire AFError.swift
[10/55] Compiling Apexy URLRequestBuildable.swift
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:11:58: error: cannot find type 'URLRequest' in scope
    func get(_ url: URL, queryItems: [URLQueryItem]?) -> URLRequest
                                                         ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:12:47: error: cannot find type 'URLRequest' in scope
    func post(_ url: URL, body: HTTPBody?) -> URLRequest
                                              ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:13:47: error: cannot find type 'URLRequest' in scope
    func patch(_ url: URL, body: HTTPBody) -> URLRequest
                                              ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:14:45: error: cannot find type 'URLRequest' in scope
    func put(_ url: URL, body: HTTPBody) -> URLRequest
                                            ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:15:32: error: cannot find type 'URLRequest' in scope
    func delete(_ url: URL) -> URLRequest
                               ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:26:64: error: cannot find type 'URLRequest' in scope
    func get(_ url: URL, queryItems: [URLQueryItem]? = nil) -> URLRequest {
                                                               ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:47:47: error: cannot find type 'URLRequest' in scope
    func post(_ url: URL, body: HTTPBody?) -> URLRequest {
                                              ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:64:47: error: cannot find type 'URLRequest' in scope
    func patch(_ url: URL, body: HTTPBody) -> URLRequest {
                                              ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:76:45: error: cannot find type 'URLRequest' in scope
    func put(_ url: URL, body: HTTPBody) -> URLRequest {
                                            ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:87:32: error: cannot find type 'URLRequest' in scope
    func delete(_ url: URL) -> URLRequest {
                               ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:48:23: error: cannot find 'URLRequest' in scope
        var request = URLRequest(url: url)
                      ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:88:23: error: cannot find 'URLRequest' in scope
        var request = URLRequest(url: url)
                      ^~~~~~~~~~
[11/55] Compiling Apexy ResponseObserver.swift
/host/spi-builder-workspace/Sources/Apexy/ResponseObserver.swift:10:38: error: cannot find type 'URLRequest' in scope
public typealias ResponseObserver = (URLRequest?, HTTPURLResponse?, Data?, Error?) -> Void
                                     ^~~~~~~~~~
[12/56] Compiling Apexy Endpoint.swift
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:22:34: error: cannot find type 'URLRequest' in scope
    func makeRequest() throws -> URLRequest
                                 ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:31:33: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    func content(from response: URLResponse?, with body: Data) throws -> Content
                                ^~~~~~~~~~~
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
public typealias URLResponse = AnyObject
                 ^
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:40:30: error: cannot find type 'URLRequest' in scope
    func validate(_ request: URLRequest?, response: HTTPURLResponse, data: Data?) throws
                             ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:40:53: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    func validate(_ request: URLRequest?, response: HTTPURLResponse, data: Data?) throws
                                                    ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:44:30: error: cannot find type 'URLRequest' in scope
    func validate(_ request: URLRequest?, response: HTTPURLResponse, data: Data?) throws { }
                             ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:44:53: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    func validate(_ request: URLRequest?, response: HTTPURLResponse, data: Data?) throws { }
                                                    ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
[13/56] Compiling Apexy ConcurrencyClient.swift
[14/56] Compiling Apexy CombineClient.swift
[15/56] Compiling Apexy HTTPBody.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[16/56] Emitting module Apexy
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:22:34: error: cannot find type 'URLRequest' in scope
    func makeRequest() throws -> URLRequest
                                 ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:31:33: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    func content(from response: URLResponse?, with body: Data) throws -> Content
                                ^~~~~~~~~~~
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
public typealias URLResponse = AnyObject
                 ^
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:40:30: error: cannot find type 'URLRequest' in scope
    func validate(_ request: URLRequest?, response: HTTPURLResponse, data: Data?) throws
                             ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:40:53: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    func validate(_ request: URLRequest?, response: HTTPURLResponse, data: Data?) throws
                                                    ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:44:30: error: cannot find type 'URLRequest' in scope
    func validate(_ request: URLRequest?, response: HTTPURLResponse, data: Data?) throws { }
                             ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:44:53: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    func validate(_ request: URLRequest?, response: HTTPURLResponse, data: Data?) throws { }
                                                    ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/Sources/Apexy/ResponseObserver.swift:10:38: error: cannot find type 'URLRequest' in scope
public typealias ResponseObserver = (URLRequest?, HTTPURLResponse?, Data?, Error?) -> Void
                                     ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:11:58: error: cannot find type 'URLRequest' in scope
    func get(_ url: URL, queryItems: [URLQueryItem]?) -> URLRequest
                                                         ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:12:47: error: cannot find type 'URLRequest' in scope
    func post(_ url: URL, body: HTTPBody?) -> URLRequest
                                              ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:13:47: error: cannot find type 'URLRequest' in scope
    func patch(_ url: URL, body: HTTPBody) -> URLRequest
                                              ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:14:45: error: cannot find type 'URLRequest' in scope
    func put(_ url: URL, body: HTTPBody) -> URLRequest
                                            ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:15:32: error: cannot find type 'URLRequest' in scope
    func delete(_ url: URL) -> URLRequest
                               ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:26:64: error: cannot find type 'URLRequest' in scope
    func get(_ url: URL, queryItems: [URLQueryItem]? = nil) -> URLRequest {
                                                               ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:47:47: error: cannot find type 'URLRequest' in scope
    func post(_ url: URL, body: HTTPBody?) -> URLRequest {
                                              ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:64:47: error: cannot find type 'URLRequest' in scope
    func patch(_ url: URL, body: HTTPBody) -> URLRequest {
                                              ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:76:45: error: cannot find type 'URLRequest' in scope
    func put(_ url: URL, body: HTTPBody) -> URLRequest {
                                            ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:87:32: error: cannot find type 'URLRequest' in scope
    func delete(_ url: URL) -> URLRequest {
                               ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/UploadEndpoint.swift:26:35: error: cannot find type 'URLRequest' in scope
    func makeRequest() throws -> (URLRequest, UploadEndpointBody)
                                  ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/UploadEndpoint.swift:35:33: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    func content(from response: URLResponse?, with body: Data) throws -> Content
                                ^~~~~~~~~~~
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
public typealias URLResponse = AnyObject
                 ^
[17/56] Compiling Alamofire URLRequest+Alamofire.swift
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Features/AuthenticationInterceptor.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dispatch'
import Foundation
^
@preconcurrency
[18/56] Compiling Alamofire URLSessionConfiguration+Alamofire.swift
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Features/AuthenticationInterceptor.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dispatch'
import Foundation
^
@preconcurrency
[19/56] Compiling Alamofire AlamofireExtended.swift
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Features/AuthenticationInterceptor.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dispatch'
import Foundation
^
@preconcurrency
[20/56] Compiling Alamofire AuthenticationInterceptor.swift
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Features/AuthenticationInterceptor.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dispatch'
import Foundation
^
@preconcurrency
[21/56] Compiling Alamofire CachedResponseHandler.swift
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Features/AuthenticationInterceptor.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dispatch'
import Foundation
^
@preconcurrency
[22/56] Compiling Alamofire WebSocketRequest.swift
[23/56] Compiling Alamofire DispatchQueue+Alamofire.swift
[24/56] Compiling Alamofire OperationQueue+Alamofire.swift
[25/56] Compiling Alamofire Result+Alamofire.swift
[26/56] Compiling Alamofire StringEncoding+Alamofire.swift
[27/61] Compiling Alamofire NetworkReachabilityManager.swift
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Features/ResponseSerialization.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[28/61] Compiling Alamofire RedirectHandler.swift
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Features/ResponseSerialization.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[29/61] Compiling Alamofire RequestCompression.swift
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Features/ResponseSerialization.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[30/61] Compiling Alamofire RequestInterceptor.swift
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Features/ResponseSerialization.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[31/61] Compiling Alamofire ResponseSerialization.swift
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Features/ResponseSerialization.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[32/61] Compiling Alamofire HTTPMethod.swift
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Core/ParameterEncoding.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[33/61] Compiling Alamofire Notifications.swift
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Core/ParameterEncoding.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[34/61] Compiling Alamofire ParameterEncoder.swift
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Core/ParameterEncoding.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[35/61] Compiling Alamofire ParameterEncoding.swift
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Core/ParameterEncoding.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[36/61] Compiling Alamofire Protected.swift
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Core/ParameterEncoding.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[37/61] Compiling Alamofire Request.swift
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Core/ParameterEncoding.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[38/61] Compiling Alamofire Combine.swift
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Features/EventMonitor.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dispatch'
import Foundation
^
@preconcurrency
[39/61] Compiling Alamofire Concurrency.swift
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Features/EventMonitor.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dispatch'
import Foundation
^
@preconcurrency
[40/61] Compiling Alamofire EventMonitor.swift
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Features/EventMonitor.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dispatch'
import Foundation
^
@preconcurrency
[41/61] Compiling Alamofire MultipartFormData.swift
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Features/EventMonitor.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dispatch'
import Foundation
^
@preconcurrency
[42/61] Compiling Alamofire MultipartUpload.swift
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Features/EventMonitor.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dispatch'
import Foundation
^
@preconcurrency
[43/61] Compiling Apexy UploadEndpoint.swift
/host/spi-builder-workspace/Sources/Apexy/UploadEndpoint.swift:26:35: error: cannot find type 'URLRequest' in scope
    func makeRequest() throws -> (URLRequest, UploadEndpointBody)
                                  ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/UploadEndpoint.swift:35:33: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    func content(from response: URLResponse?, with body: Data) throws -> Content
                                ^~~~~~~~~~~
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
public typealias URLResponse = AnyObject
                 ^
[44/61] Compiling Alamofire RequestTaskMap.swift
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Core/URLConvertible+URLRequestConvertible.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[45/61] Compiling Alamofire Response.swift
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Core/URLConvertible+URLRequestConvertible.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[46/61] Compiling Alamofire Session.swift
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Core/URLConvertible+URLRequestConvertible.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[47/61] Compiling Alamofire SessionDelegate.swift
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Core/URLConvertible+URLRequestConvertible.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[48/61] Compiling Alamofire URLConvertible+URLRequestConvertible.swift
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Core/URLConvertible+URLRequestConvertible.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[49/61] Compiling Alamofire UploadRequest.swift
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Core/URLConvertible+URLRequestConvertible.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[50/61] Emitting module Alamofire
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Core/AFError.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Core/ParameterEncoding.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Core/URLConvertible+URLRequestConvertible.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Features/AuthenticationInterceptor.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dispatch'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Features/EventMonitor.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dispatch'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Features/ResponseSerialization.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Core/AFError.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Core/AFError.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[53/61] Compiling Alamofire DataRequest.swift
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Core/AFError.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[54/61] Compiling Alamofire DataStreamRequest.swift
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Core/AFError.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[55/61] Compiling Alamofire DownloadRequest.swift
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Core/AFError.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
[56/61] Compiling Alamofire HTTPHeaders.swift
/host/spi-builder-workspace/.build/checkouts/Alamofire/Source/Core/AFError.swift:25:1: remark: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Foundation'
import Foundation
^
@preconcurrency
error: fatalError
BUILD FAILURE 5.10 linux