Build Information
Successful build of Apexy, reference master (e64ef1), with Swift 6.0 for macOS (SPM) on 23 Oct 2025 01:04:16 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/RedMadRobot/apexy-ios.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/RedMadRobot/apexy-ios
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at e64ef18 Fix the test
Cloned https://github.com/RedMadRobot/apexy-ios.git
Revision (git rev-parse @):
e64ef1846f058861d16a37e756ec6b0c433e4f21
SUCCESS checkout https://github.com/RedMadRobot/apexy-ios.git at master
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.0
Building package at path: $PWD
https://github.com/RedMadRobot/apexy-ios.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64
Building for debugging...
[0/7] Write sources
[2/7] Copying PrivacyInfo.xcprivacy
[2/7] Write sources
[6/7] Write swift-version-5BDAB9E9C0126B9D.txt
[8/56] Compiling Alamofire DispatchQueue+Alamofire.swift
[9/56] Compiling Alamofire OperationQueue+Alamofire.swift
[10/56] Compiling Alamofire Result+Alamofire.swift
[11/56] Compiling Alamofire StringEncoding+Alamofire.swift
[12/60] Compiling Alamofire CachedResponseHandler.swift
[13/60] Compiling Alamofire Combine.swift
[14/60] Compiling Alamofire Concurrency.swift
[15/60] Compiling Alamofire EventMonitor.swift
[16/60] Compiling Alamofire RequestCompression.swift
[17/60] Compiling Alamofire RequestInterceptor.swift
[18/60] Compiling Alamofire ResponseSerialization.swift
[19/60] Compiling Alamofire RetryPolicy.swift
[20/60] Compiling Alamofire URLRequest+Alamofire.swift
[21/60] Compiling Alamofire URLSessionConfiguration+Alamofire.swift
[22/60] Compiling Alamofire AlamofireExtended.swift
[23/60] Compiling Alamofire AuthenticationInterceptor.swift
[24/60] Compiling Apexy UploadEndpoint.swift
[25/60] Compiling Apexy CombineClient.swift
[26/60] Compiling Apexy Endpoint.swift
[27/60] Compiling Apexy URLRequestBuildable.swift
[28/60] Compiling Apexy APIResult.swift
[29/60] Emitting module Apexy
[30/60] Compiling Apexy HTTPBody.swift
[31/60] Compiling Apexy ResponseObserver.swift
[32/60] Compiling Apexy Client.swift
[33/60] Compiling Alamofire SessionDelegate.swift
[34/60] Compiling Alamofire URLConvertible+URLRequestConvertible.swift
[35/60] Compiling Alamofire UploadRequest.swift
[36/60] Compiling Alamofire WebSocketRequest.swift
[37/60] Compiling Alamofire MultipartFormData.swift
[38/60] Compiling Alamofire MultipartUpload.swift
[39/60] Compiling Alamofire NetworkReachabilityManager.swift
[40/60] Compiling Alamofire RedirectHandler.swift
[41/69] Emitting module Alamofire
[42/69] Compiling Alamofire HTTPHeaders.swift
[43/69] Compiling Alamofire HTTPMethod.swift
[44/69] Compiling Alamofire Notifications.swift
[45/69] Compiling Alamofire ParameterEncoder.swift
[46/69] Compiling Alamofire ParameterEncoding.swift
[47/69] Compiling Alamofire Alamofire.swift
[48/69] Compiling Alamofire AFError.swift
[49/69] Compiling Alamofire DataRequest.swift
[50/69] Compiling Alamofire DataStreamRequest.swift
[51/69] Compiling Alamofire DownloadRequest.swift
[52/69] Compiling Alamofire Protected.swift
[53/69] Compiling Alamofire Request.swift
[54/69] Compiling Alamofire RequestTaskMap.swift
[55/69] Compiling Alamofire Response.swift
[56/69] Compiling Alamofire Session.swift
[57/69] Compiling Alamofire ServerTrustEvaluation.swift
[58/69] Compiling Alamofire URLEncodedFormEncoder.swift
[59/69] Compiling Alamofire Validation.swift
[60/69] Compiling Alamofire resource_bundle_accessor.swift
[61/69] Compiling ApexyLoader ObservableLoader.swift
[62/69] Compiling ApexyLoader WebLoader.swift
[63/69] Compiling ApexyLoader ContentLoader.swift
[64/69] Compiling ApexyLoader LoaderObservation.swift
[65/69] Emitting module ApexyLoader
[66/69] Compiling ApexyLoader LoadingState.swift
[67/72] Emitting module ApexyURLSession
[68/72] Compiling ApexyURLSession BaseRequestAdapter.swift
[69/72] Compiling ApexyURLSession URLSessionClient.swift
[70/72] Compiling ApexyAlamofire BaseRequestInterceptor.swift
/Users/admin/builder/spi-builder-workspace/Sources/ApexyAlamofire/BaseRequestInterceptor.swift:12:12: warning: non-final class 'BaseRequestInterceptor' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
10 |
11 | /// Implementation of Alamofire.RequestInterceptor.
12 | open class BaseRequestInterceptor: Alamofire.RequestInterceptor {
| `- warning: non-final class 'BaseRequestInterceptor' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
13 |
14 | /// Contains Base `URL`.
/Users/admin/builder/spi-builder-workspace/Sources/ApexyAlamofire/BaseRequestInterceptor.swift:19:14: warning: stored property 'baseURL' of 'Sendable'-conforming class 'BaseRequestInterceptor' is mutable; this is an error in the Swift 6 language mode
17 | ///
18 | /// - Warning: declared as open variable for debug purposes only.
19 | open var baseURL: URL
| `- warning: stored property 'baseURL' of 'Sendable'-conforming class 'BaseRequestInterceptor' is mutable; this is an error in the Swift 6 language mode
20 |
21 | /// Creates a `BaseRequestInterceptor` instance with specified Base `URL`.
[71/72] Compiling ApexyAlamofire AlamofireClient.swift
/Users/admin/builder/spi-builder-workspace/Sources/ApexyAlamofire/AlamofireClient.swift:171:9: warning: stored property 'create' of 'Sendable'-conforming struct 'AnyRequest' has non-sendable type '() throws -> URLRequest'; this is an error in the Swift 6 language mode
169 | /// Wrapper for `URLRequestConvertible` from `Alamofire`.
170 | struct AnyRequest: Alamofire.URLRequestConvertible {
171 | let create: () throws -> URLRequest
| |- warning: stored property 'create' of 'Sendable'-conforming struct 'AnyRequest' has non-sendable type '() throws -> URLRequest'; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
172 |
173 | func asURLRequest() throws -> URLRequest {
[72/72] Emitting module ApexyAlamofire
/Users/admin/builder/spi-builder-workspace/Sources/ApexyAlamofire/AlamofireClient.swift:171:9: warning: stored property 'create' of 'Sendable'-conforming struct 'AnyRequest' has non-sendable type '() throws -> URLRequest'; this is an error in the Swift 6 language mode
169 | /// Wrapper for `URLRequestConvertible` from `Alamofire`.
170 | struct AnyRequest: Alamofire.URLRequestConvertible {
171 | let create: () throws -> URLRequest
| |- warning: stored property 'create' of 'Sendable'-conforming struct 'AnyRequest' has non-sendable type '() throws -> URLRequest'; this is an error in the Swift 6 language mode
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
172 |
173 | func asURLRequest() throws -> URLRequest {
/Users/admin/builder/spi-builder-workspace/Sources/ApexyAlamofire/BaseRequestInterceptor.swift:12:12: warning: non-final class 'BaseRequestInterceptor' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
10 |
11 | /// Implementation of Alamofire.RequestInterceptor.
12 | open class BaseRequestInterceptor: Alamofire.RequestInterceptor {
| `- warning: non-final class 'BaseRequestInterceptor' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
13 |
14 | /// Contains Base `URL`.
/Users/admin/builder/spi-builder-workspace/Sources/ApexyAlamofire/BaseRequestInterceptor.swift:19:14: warning: stored property 'baseURL' of 'Sendable'-conforming class 'BaseRequestInterceptor' is mutable; this is an error in the Swift 6 language mode
17 | ///
18 | /// - Warning: declared as open variable for debug purposes only.
19 | open var baseURL: URL
| `- warning: stored property 'baseURL' of 'Sendable'-conforming class 'BaseRequestInterceptor' is mutable; this is an error in the Swift 6 language mode
20 |
21 | /// Creates a `BaseRequestInterceptor` instance with specified Base `URL`.
Build complete! (10.53s)
Fetching https://github.com/Alamofire/Alamofire.git
[1/30474] Fetching alamofire
Fetched https://github.com/Alamofire/Alamofire.git from cache (2.69s)
Computing version for https://github.com/Alamofire/Alamofire.git
Computed https://github.com/Alamofire/Alamofire.git at 5.10.2 (0.50s)
Creating working copy for https://github.com/Alamofire/Alamofire.git
Working copy of https://github.com/Alamofire/Alamofire.git resolved at 5.10.2
Build complete.
{
"dependencies" : [
{
"identity" : "alamofire",
"requirement" : {
"range" : [
{
"lower_bound" : "5.2.0",
"upper_bound" : "6.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/Alamofire/Alamofire.git"
}
],
"manifest_display_name" : "Apexy",
"name" : "Apexy",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "tvos",
"version" : "13.0"
},
{
"name" : "watchos",
"version" : "6.0"
}
],
"products" : [
{
"name" : "Apexy",
"targets" : [
"ApexyURLSession"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "ApexyAlamofire",
"targets" : [
"ApexyAlamofire"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "ApexyLoader",
"targets" : [
"ApexyLoader"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "ApexyURLSessionTests",
"module_type" : "SwiftTarget",
"name" : "ApexyURLSessionTests",
"path" : "Tests/ApexyURLSessionTests",
"sources" : [
"BaseRequestAdapterTests.swift",
"URLSessionClientTests.swift"
],
"target_dependencies" : [
"ApexyURLSession"
],
"type" : "test"
},
{
"c99name" : "ApexyURLSession",
"module_type" : "SwiftTarget",
"name" : "ApexyURLSession",
"path" : "Sources/ApexyURLSession",
"product_memberships" : [
"Apexy"
],
"sources" : [
"BaseRequestAdapter.swift",
"URLSessionClient.swift"
],
"target_dependencies" : [
"Apexy"
],
"type" : "library"
},
{
"c99name" : "ApexyTests",
"module_type" : "SwiftTarget",
"name" : "ApexyTests",
"path" : "Tests/ApexyTests",
"sources" : [
"HTTPBodyTests.swift",
"URLRequestBuildableTests.swift"
],
"target_dependencies" : [
"Apexy"
],
"type" : "test"
},
{
"c99name" : "ApexyLoaderTests",
"module_type" : "SwiftTarget",
"name" : "ApexyLoaderTests",
"path" : "Tests/ApexyLoaderTests",
"sources" : [
"ContentLoaderTests.swift",
"LoaderObservationTests.swift",
"LoadingStateTests.swift",
"TestHelpers.swift",
"WebLoaderTests.swift"
],
"target_dependencies" : [
"ApexyLoader"
],
"type" : "test"
},
{
"c99name" : "ApexyLoader",
"module_type" : "SwiftTarget",
"name" : "ApexyLoader",
"path" : "Sources/ApexyLoader",
"product_memberships" : [
"ApexyLoader"
],
"sources" : [
"ContentLoader.swift",
"LoaderObservation.swift",
"LoadingState.swift",
"ObservableLoader.swift",
"WebLoader.swift"
],
"target_dependencies" : [
"Apexy"
],
"type" : "library"
},
{
"c99name" : "ApexyAlamofireTests",
"module_type" : "SwiftTarget",
"name" : "ApexyAlamofireTests",
"path" : "Tests/ApexyAlamofireTests",
"sources" : [
"AlamofireClientCombineTests.swift",
"AlamofireClientTests.swift",
"BaseRequestInterceptorTests.swift",
"Helpers/EmptyEndpoint.swift",
"Helpers/MockURLProtocol.swift",
"Helpers/SimpleUploadEndpoint.swift"
],
"target_dependencies" : [
"ApexyAlamofire"
],
"type" : "test"
},
{
"c99name" : "ApexyAlamofire",
"module_type" : "SwiftTarget",
"name" : "ApexyAlamofire",
"path" : "Sources/ApexyAlamofire",
"product_dependencies" : [
"Alamofire"
],
"product_memberships" : [
"ApexyAlamofire"
],
"sources" : [
"AlamofireClient.swift",
"BaseRequestInterceptor.swift"
],
"target_dependencies" : [
"Apexy"
],
"type" : "library"
},
{
"c99name" : "Apexy",
"module_type" : "SwiftTarget",
"name" : "Apexy",
"path" : "Sources/Apexy",
"product_memberships" : [
"Apexy",
"ApexyAlamofire",
"ApexyLoader"
],
"sources" : [
"APIResult.swift",
"Client.swift",
"Clients/CombineClient.swift",
"Endpoint.swift",
"HTTPBody.swift",
"ResponseObserver.swift",
"URLRequestBuildable.swift",
"UploadEndpoint.swift"
],
"type" : "library"
}
],
"tools_version" : "5.2"
}
Done.