Build Information
Successful build of AutoGraph, reference master (7621db), with Swift 6.0 for macOS (SPM) on 5 Dec 2025 03:56:05 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/autograph-hq/AutoGraph.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/autograph-hq/AutoGraph
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at 7621dbd Merge pull request #137 from autograph-hq/spm-only
Cloned https://github.com/autograph-hq/AutoGraph.git
Revision (git rev-parse @):
7621dbd575f20b94bcc045c95771a3ac105b1337
SUCCESS checkout https://github.com/autograph-hq/AutoGraph.git at master
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.0
Building package at path: $PWD
https://github.com/autograph-hq/AutoGraph.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64
Building for debugging...
[0/7] Copying PrivacyInfo.xcprivacy
[0/7] Write sources
[3/7] Copying PrivacyInfo.xcprivacy
[5/7] Write sources
[6/7] Write swift-version-5BDAB9E9C0126B9D.txt
[8/71] Emitting module Starscream
[9/73] Compiling Starscream Transport.swift
[10/73] Compiling Starscream resource_bundle_accessor.swift
[11/73] Compiling Alamofire RequestCompression.swift
[12/73] Compiling Alamofire RequestInterceptor.swift
[13/73] Compiling Alamofire ResponseSerialization.swift
[14/73] Compiling Alamofire RetryPolicy.swift
[15/77] Compiling Alamofire Protected.swift
[16/77] Compiling Alamofire Request.swift
[17/77] Compiling Alamofire RequestTaskMap.swift
[18/77] Compiling Alamofire Response.swift
[19/77] Compiling Alamofire Session.swift
[20/77] Compiling Alamofire HTTPHeaders.swift
[21/77] Compiling Alamofire HTTPMethod.swift
[22/77] Compiling Alamofire Notifications.swift
[23/77] Compiling Alamofire ParameterEncoder.swift
[24/77] Compiling Alamofire ParameterEncoding.swift
[25/77] Emitting module Alamofire
[26/77] Compiling Alamofire Alamofire.swift
[27/77] Compiling Alamofire AFError.swift
[28/77] Compiling Alamofire UploadRequest.swift
[29/77] Compiling Alamofire DataRequest.swift
[30/77] Compiling Alamofire WebSocketRequest.swift
[31/77] Compiling Alamofire DataStreamRequest.swift
[32/77] Compiling Alamofire DownloadRequest.swift
[33/77] Compiling Alamofire MultipartFormData.swift
[34/77] Compiling Alamofire MultipartUpload.swift
[35/77] Compiling Alamofire NetworkReachabilityManager.swift
[36/77] Compiling Alamofire RedirectHandler.swift
[37/77] Compiling Alamofire URLRequest+Alamofire.swift
[38/77] Compiling Alamofire URLSessionConfiguration+Alamofire.swift
[39/77] Compiling Alamofire AlamofireExtended.swift
[40/77] Compiling Alamofire AuthenticationInterceptor.swift
[41/77] Compiling Alamofire CachedResponseHandler.swift
[42/77] Compiling Alamofire Combine.swift
[43/77] Compiling Alamofire Concurrency.swift
[44/77] Compiling Alamofire EventMonitor.swift
[45/77] Compiling Alamofire SessionDelegate.swift
[46/77] Compiling Alamofire URLConvertible+URLRequestConvertible.swift
[53/77] Compiling Alamofire Result+Alamofire.swift
[54/77] Compiling Alamofire StringEncoding+Alamofire.swift
[70/77] Compiling JSONValueRX JSONable.swift
[71/77] Compiling JSONValueRX Utilities.swift
[72/77] Compiling JSONValueRX JSON.swift
[73/77] Emitting module JSONValueRX
[74/77] Compiling Alamofire ServerTrustEvaluation.swift
[75/77] Compiling Alamofire URLEncodedFormEncoder.swift
[76/77] Compiling Alamofire Validation.swift
[77/77] Compiling Alamofire resource_bundle_accessor.swift
[78/92] Compiling AutoGraphQL WebSocketError.swift
[79/92] Compiling AutoGraphQL WebSocketClient.swift
[80/92] Compiling AutoGraphQL ResponseHandler.swift
[81/92] Compiling AutoGraphQL SubscriptionRequest.swift
[82/92] Compiling AutoGraphQL SubscriptionResponseHandler.swift
[83/92] Compiling AutoGraphQL SubscriptionResponseSerializer.swift
[84/92] Compiling AutoGraphQL Utilities.swift
[85/92] Compiling AutoGraphQL AutoGraph.swift
[86/92] Compiling AutoGraphQL Dispatcher.swift
[87/92] Compiling AutoGraphQL Errors.swift
[88/92] Compiling AutoGraphQL Request.swift
[89/92] Compiling AutoGraphQL AlamofireClient.swift
/Users/admin/builder/spi-builder-workspace/AutoGraph/AlamofireClient.swift:56:14: warning: 'responseJSON(queue:dataPreprocessor:emptyResponseCodes:emptyRequestMethods:options:completionHandler:)' is deprecated: responseJSON deprecated and will be removed in Alamofire 6. Use responseDecodable instead.
54 | encoding: JSONEncoding.default,
55 | headers: HTTPHeaders(self.httpHeaders))
56 | .responseJSON(completionHandler: completion)
| `- warning: 'responseJSON(queue:dataPreprocessor:emptyResponseCodes:emptyRequestMethods:options:completionHandler:)' is deprecated: responseJSON deprecated and will be removed in Alamofire 6. Use responseDecodable instead.
57 | }
58 |
/Users/admin/builder/spi-builder-workspace/AutoGraph/AuthHandler.swift:20:14: warning: non-final class 'AuthHandler' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
18 | // move some of this into AlamofireClient eventually.
19 |
20 | public class AuthHandler: RequestInterceptor {
| `- warning: non-final class 'AuthHandler' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
21 | private typealias RequestRetryCompletion = (RetryResult) -> Void
22 |
/Users/admin/builder/spi-builder-workspace/AutoGraph/AuthHandler.swift:23:23: warning: stored property 'delegate' of 'Sendable'-conforming class 'AuthHandler' is mutable; this is an error in the Swift 6 language mode
21 | private typealias RequestRetryCompletion = (RetryResult) -> Void
22 |
23 | internal weak var delegate: AuthHandlerDelegate?
| `- warning: stored property 'delegate' of 'Sendable'-conforming class 'AuthHandler' is mutable; this is an error in the Swift 6 language mode
24 | public weak var reauthenticationDelegate: ReauthenticationDelegate?
25 |
[90/92] Compiling AutoGraphQL AuthHandler.swift
/Users/admin/builder/spi-builder-workspace/AutoGraph/AlamofireClient.swift:56:14: warning: 'responseJSON(queue:dataPreprocessor:emptyResponseCodes:emptyRequestMethods:options:completionHandler:)' is deprecated: responseJSON deprecated and will be removed in Alamofire 6. Use responseDecodable instead.
54 | encoding: JSONEncoding.default,
55 | headers: HTTPHeaders(self.httpHeaders))
56 | .responseJSON(completionHandler: completion)
| `- warning: 'responseJSON(queue:dataPreprocessor:emptyResponseCodes:emptyRequestMethods:options:completionHandler:)' is deprecated: responseJSON deprecated and will be removed in Alamofire 6. Use responseDecodable instead.
57 | }
58 |
/Users/admin/builder/spi-builder-workspace/AutoGraph/AuthHandler.swift:20:14: warning: non-final class 'AuthHandler' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
18 | // move some of this into AlamofireClient eventually.
19 |
20 | public class AuthHandler: RequestInterceptor {
| `- warning: non-final class 'AuthHandler' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
21 | private typealias RequestRetryCompletion = (RetryResult) -> Void
22 |
/Users/admin/builder/spi-builder-workspace/AutoGraph/AuthHandler.swift:23:23: warning: stored property 'delegate' of 'Sendable'-conforming class 'AuthHandler' is mutable; this is an error in the Swift 6 language mode
21 | private typealias RequestRetryCompletion = (RetryResult) -> Void
22 |
23 | internal weak var delegate: AuthHandlerDelegate?
| `- warning: stored property 'delegate' of 'Sendable'-conforming class 'AuthHandler' is mutable; this is an error in the Swift 6 language mode
24 | public weak var reauthenticationDelegate: ReauthenticationDelegate?
25 |
[91/92] Emitting module AutoGraphQL
/Users/admin/builder/spi-builder-workspace/AutoGraph/AuthHandler.swift:20:14: warning: non-final class 'AuthHandler' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
18 | // move some of this into AlamofireClient eventually.
19 |
20 | public class AuthHandler: RequestInterceptor {
| `- warning: non-final class 'AuthHandler' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
21 | private typealias RequestRetryCompletion = (RetryResult) -> Void
22 |
/Users/admin/builder/spi-builder-workspace/AutoGraph/AuthHandler.swift:23:23: warning: stored property 'delegate' of 'Sendable'-conforming class 'AuthHandler' is mutable; this is an error in the Swift 6 language mode
21 | private typealias RequestRetryCompletion = (RetryResult) -> Void
22 |
23 | internal weak var delegate: AuthHandlerDelegate?
| `- warning: stored property 'delegate' of 'Sendable'-conforming class 'AuthHandler' is mutable; this is an error in the Swift 6 language mode
24 | public weak var reauthenticationDelegate: ReauthenticationDelegate?
25 |
[92/92] Compiling AutoGraphQL FoundationExtensions.swift
[93/93] Compiling AutoGraphQL QueryDSL.swift
Build complete! (18.49s)
Fetching https://github.com/daltoniam/Starscream.git
Fetching https://github.com/Alamofire/Alamofire.git
Fetching https://github.com/rexmas/JSONValue.git
[1/652] Fetching jsonvalue
[243/5722] Fetching jsonvalue, starscream
[1667/36241] Fetching jsonvalue, starscream, alamofire
Fetched https://github.com/rexmas/JSONValue.git from cache (2.89s)
Fetched https://github.com/daltoniam/Starscream.git from cache (2.89s)
Fetched https://github.com/Alamofire/Alamofire.git from cache (2.89s)
Computing version for https://github.com/daltoniam/Starscream.git
Computed https://github.com/daltoniam/Starscream.git at 4.0.8 (3.09s)
Computing version for https://github.com/rexmas/JSONValue.git
Computed https://github.com/rexmas/JSONValue.git at 8.0.0 (0.47s)
Computing version for https://github.com/Alamofire/Alamofire.git
Computed https://github.com/Alamofire/Alamofire.git at 5.10.2 (0.48s)
Creating working copy for https://github.com/Alamofire/Alamofire.git
Working copy of https://github.com/Alamofire/Alamofire.git resolved at 5.10.2
Creating working copy for https://github.com/daltoniam/Starscream.git
Working copy of https://github.com/daltoniam/Starscream.git resolved at 4.0.8
Creating working copy for https://github.com/rexmas/JSONValue.git
Working copy of https://github.com/rexmas/JSONValue.git resolved at 8.0.0
warning: 'spi-builder-workspace': found 5 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/LICENSE
/Users/admin/builder/spi-builder-workspace/README.md
/Users/admin/builder/spi-builder-workspace/codecov.yml
/Users/admin/builder/spi-builder-workspace/autograph.png
/Users/admin/builder/spi-builder-workspace/LinuxMain.swift
warning: 'starscream': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
/Users/admin/builder/spi-builder-workspace/.build/checkouts/Starscream/Sources/Info.plist
Build complete.
{
"dependencies" : [
{
"identity" : "alamofire",
"requirement" : {
"range" : [
{
"lower_bound" : "5.8.0",
"upper_bound" : "6.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/Alamofire/Alamofire.git"
},
{
"identity" : "jsonvalue",
"requirement" : {
"range" : [
{
"lower_bound" : "8.0.0",
"upper_bound" : "9.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/rexmas/JSONValue.git"
},
{
"identity" : "starscream",
"requirement" : {
"exact" : [
"4.0.8"
]
},
"type" : "sourceControl",
"url" : "https://github.com/daltoniam/Starscream.git"
}
],
"manifest_display_name" : "AutoGraph",
"name" : "AutoGraph",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "ios",
"version" : "13.0"
}
],
"products" : [
{
"name" : "AutoGraphQL",
"targets" : [
"AutoGraphQL"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "QueryBuilderTests",
"module_type" : "SwiftTarget",
"name" : "QueryBuilderTests",
"path" : "QueryBuilderTests",
"sources" : [
"FoundationExtensionsTests.swift",
"QueryBuilderTests.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"AutoGraphQL"
],
"type" : "test"
},
{
"c99name" : "AutoGraphTests",
"module_type" : "SwiftTarget",
"name" : "AutoGraphTests",
"path" : "AutoGraphTests",
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/AutoGraphTests/Data",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"AlamofireClientTests.swift",
"AuthHandlerTests.swift",
"AutoGraphTests.swift",
"DispatcherTests.swift",
"ErrorTests.swift",
"Models/Film.swift",
"Requests/AllFilmsRequest.swift",
"Requests/FilmRequest.swift",
"Requests/FilmSubscriptionRequest.swift",
"ResponseHandlerTests.swift",
"Stub.swift",
"WebSocketClientTests.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"AutoGraphQL"
],
"type" : "test"
},
{
"c99name" : "AutoGraphQL",
"module_type" : "SwiftTarget",
"name" : "AutoGraphQL",
"path" : ".",
"product_dependencies" : [
"Alamofire",
"JSONValueRX",
"Starscream"
],
"product_memberships" : [
"AutoGraphQL"
],
"sources" : [
"AutoGraph/AlamofireClient.swift",
"AutoGraph/AuthHandler.swift",
"AutoGraph/AutoGraph.swift",
"AutoGraph/Dispatcher.swift",
"AutoGraph/Errors.swift",
"AutoGraph/Request.swift",
"AutoGraph/ResponseHandler.swift",
"AutoGraph/SubscriptionRequest.swift",
"AutoGraph/SubscriptionResponseHandler.swift",
"AutoGraph/SubscriptionResponseSerializer.swift",
"AutoGraph/Utilities.swift",
"AutoGraph/WebSocketClient.swift",
"AutoGraph/WebSocketError.swift",
"QueryBuilder/FoundationExtensions.swift",
"QueryBuilder/QueryDSL.swift"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
Done.