Build Information
Successful build of Siesta, reference main (4fcc94), with Swift 6.3 for macOS (SPM) on 11 Apr 2026 22:42:01 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/bustoutsolutions/siesta.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/bustoutsolutions/siesta
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 4fcc942 Merge pull request #315 from snoozemoose/master
Cloned https://github.com/bustoutsolutions/siesta.git
Revision (git rev-parse @):
4fcc9422d4994467bb185bfe45fec7f673269915
SUCCESS checkout https://github.com/bustoutsolutions/siesta.git at main
Fetching https://github.com/pcantrell/Quick
[1/9698] Fetching quick
Fetched https://github.com/pcantrell/Quick from cache (1.23s)
error: could not find the commit efedef8e8917ef7ac1495cb406cebbeddb66b6e9 in https://github.com/pcantrell/Quick
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.3
Building package at path: $PWD
https://github.com/bustoutsolutions/siesta.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/7] Copying PrivacyInfo.xcprivacy
[0/7] Copying ResourceStatusOverlay.xib
[1/7] Write sources
[6/7] Write swift-version--6988338F2F200930.txt
[8/83] Compiling Alamofire RequestCompression.swift
[9/83] Compiling Alamofire RequestInterceptor.swift
[10/83] Compiling Alamofire ResponseSerialization.swift
[11/83] Compiling Alamofire RetryPolicy.swift
[12/87] Compiling Alamofire HTTPHeaders.swift
[13/87] Compiling Alamofire HTTPMethod.swift
[14/87] Compiling Alamofire Notifications.swift
[15/87] Compiling Alamofire ParameterEncoder.swift
[16/87] Compiling Alamofire ParameterEncoding.swift
[17/87] Compiling Alamofire SessionDelegate.swift
[18/87] Compiling Alamofire URLConvertible+URLRequestConvertible.swift
[19/87] Compiling Alamofire UploadRequest.swift
[20/87] Compiling Alamofire WebSocketRequest.swift
[21/87] Compiling Alamofire DispatchQueue+Alamofire.swift
[22/87] Compiling Alamofire Protected.swift
[23/87] Compiling Alamofire Request.swift
[24/87] Compiling Alamofire RequestTaskMap.swift
[25/87] Compiling Alamofire Response.swift
[26/87] Compiling Alamofire Session.swift
[27/87] Emitting module Alamofire
[28/87] Compiling Alamofire Alamofire.swift
[29/87] Compiling Alamofire AFError.swift
[30/87] Compiling Alamofire DataRequest.swift
[31/87] Compiling Alamofire DataStreamRequest.swift
[32/87] Compiling Alamofire DownloadRequest.swift
[33/87] Compiling Alamofire Combine.swift
[34/87] Compiling Alamofire Concurrency.swift
[35/87] Compiling Alamofire EventMonitor.swift
[36/87] Compiling Alamofire MultipartFormData.swift
[37/87] Compiling Alamofire OperationQueue+Alamofire.swift
[38/87] Compiling Alamofire Result+Alamofire.swift
[39/87] Compiling Alamofire StringEncoding+Alamofire.swift
[40/87] Compiling Alamofire URLRequest+Alamofire.swift
[41/87] Compiling Alamofire URLSessionConfiguration+Alamofire.swift
[42/87] Compiling Alamofire AlamofireExtended.swift
[43/87] Compiling Alamofire AuthenticationInterceptor.swift
[44/87] Compiling Alamofire CachedResponseHandler.swift
[45/87] Compiling Alamofire MultipartUpload.swift
[46/87] Compiling Alamofire NetworkReachabilityManager.swift
[47/87] Compiling Alamofire OfflineRetrier.swift
[48/87] Compiling Alamofire RedirectHandler.swift
[49/87] Compiling Alamofire ServerTrustEvaluation.swift
[50/87] Compiling Alamofire URLEncodedFormEncoder.swift
[51/87] Compiling Alamofire Validation.swift
[52/87] Compiling Alamofire resource_bundle_accessor.swift
[53/87] Emitting module Siesta
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Request/Request.swift:232:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
230 | }
231 |
232 | extension Response: CustomStringConvertible
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
233 | {
234 | /// :nodoc:
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Support/ARC+Siesta.swift:78:30: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 | after the referenced object has been deallocated, making it suitable for use as a Set member and a Dictionary key.
60 | */
61 | internal struct WeakRef<T: AnyObject>: Hashable
| `- note: 'T' previously declared here
62 | {
63 | private(set) weak var value: T?
:
76 | { hasher.combine(originalHash) }
77 |
78 | internal static func == <T>(lhs: WeakRef<T>, rhs: WeakRef<T>) -> Bool
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
79 | { lhs.originalIdentity == rhs.originalIdentity }
80 | }
[61/90] Compiling Siesta URL+Siesta.swift
[62/90] Compiling Siesta WeakCache.swift
[63/90] Compiling Siesta Ω_Deprecations.swift
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Support/ARC+Siesta.swift:78:30: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 | after the referenced object has been deallocated, making it suitable for use as a Set member and a Dictionary key.
60 | */
61 | internal struct WeakRef<T: AnyObject>: Hashable
| `- note: 'T' previously declared here
62 | {
63 | private(set) weak var value: T?
:
76 | { hasher.combine(originalHash) }
77 |
78 | internal static func == <T>(lhs: WeakRef<T>, rhs: WeakRef<T>) -> Bool
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
79 | { lhs.originalIdentity == rhs.originalIdentity }
80 | }
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Support/ARC+Siesta.swift:78:30: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 | after the referenced object has been deallocated, making it suitable for use as a Set member and a Dictionary key.
60 | */
61 | internal struct WeakRef<T: AnyObject>: Hashable
| `- note: 'T' previously declared here
62 | {
63 | private(set) weak var value: T?
:
76 | { hasher.combine(originalHash) }
77 |
78 | internal static func == <T>(lhs: WeakRef<T>, rhs: WeakRef<T>) -> Bool
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
79 | { lhs.originalIdentity == rhs.originalIdentity }
80 | }
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Support/ARC+Siesta.swift:78:30: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 | after the referenced object has been deallocated, making it suitable for use as a Set member and a Dictionary key.
60 | */
61 | internal struct WeakRef<T: AnyObject>: Hashable
| `- note: 'T' previously declared here
62 | {
63 | private(set) weak var value: T?
:
76 | { hasher.combine(originalHash) }
77 |
78 | internal static func == <T>(lhs: WeakRef<T>, rhs: WeakRef<T>) -> Bool
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
79 | { lhs.originalIdentity == rhs.originalIdentity }
80 | }
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Support/ARC+Siesta.swift:78:30: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
59 | after the referenced object has been deallocated, making it suitable for use as a Set member and a Dictionary key.
60 | */
61 | internal struct WeakRef<T: AnyObject>: Hashable
| `- note: 'T' previously declared here
62 | {
63 | private(set) weak var value: T?
:
76 | { hasher.combine(originalHash) }
77 |
78 | internal static func == <T>(lhs: WeakRef<T>, rhs: WeakRef<T>) -> Bool
| `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
79 | { lhs.originalIdentity == rhs.originalIdentity }
80 | }
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Request/Request.swift:232:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
230 | }
231 |
232 | extension Response: CustomStringConvertible
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
233 | {
234 | /// :nodoc:
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Request/Request.swift:232:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
230 | }
231 |
232 | extension Response: CustomStringConvertible
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
233 | {
234 | /// :nodoc:
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Request/Request.swift:232:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
230 | }
231 |
232 | extension Response: CustomStringConvertible
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
233 | {
234 | /// :nodoc:
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Request/Request.swift:232:1: warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
230 | }
231 |
232 | extension Response: CustomStringConvertible
| |- warning: extension declares a conformance of imported type 'Result' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
233 | {
234 | /// :nodoc:
[91/100] Compiling SiestaUI resource_bundle_accessor.swift
[92/100] Compiling SiestaUI Ω_UI_Deprecations.swift
[93/100] Compiling SiestaUI SiestaUI-ObjC.swift
[94/100] Compiling SiestaUI ResourceStatusOverlay.swift
[95/100] Compiling SiestaUI RemoteImageView.swift
[96/100] Compiling SiestaUI Collection+Siesta.swift
[97/100] Emitting module SiestaUI
[98/100] Compiling SiestaUI NetworkActivityIndicator.swift
[99/100] Compiling Siesta_Alamofire Networking-Alamofire.swift
/Users/admin/builder/spi-builder-workspace/Extensions/Alamofire/Networking-Alamofire.swift:76:1: warning: extension declares a conformance of imported type 'Session' to imported protocol 'NetworkingProviderConvertible'; this will not behave correctly if the owners of 'Alamofire' introduce this conformance in the future
74 | }
75 |
76 | extension Alamofire.Session: NetworkingProviderConvertible
| |- warning: extension declares a conformance of imported type 'Session' to imported protocol 'NetworkingProviderConvertible'; this will not behave correctly if the owners of 'Alamofire' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
77 | {
78 | /// You can pass an `AlamoFire.Manager` when creating a `Service`.
/Users/admin/builder/spi-builder-workspace/Extensions/Alamofire/Networking-Alamofire.swift:83:15: warning: class 'ZeroProgressURLSessionTask' must restate inherited '@unchecked Sendable' conformance
81 | }
82 |
83 | private class ZeroProgressURLSessionTask: URLSessionTask
| `- warning: class 'ZeroProgressURLSessionTask' must restate inherited '@unchecked Sendable' conformance
84 | {
85 | override var countOfBytesSent: Int64
[100/100] Emitting module Siesta_Alamofire
/Users/admin/builder/spi-builder-workspace/Extensions/Alamofire/Networking-Alamofire.swift:76:1: warning: extension declares a conformance of imported type 'Session' to imported protocol 'NetworkingProviderConvertible'; this will not behave correctly if the owners of 'Alamofire' introduce this conformance in the future
74 | }
75 |
76 | extension Alamofire.Session: NetworkingProviderConvertible
| |- warning: extension declares a conformance of imported type 'Session' to imported protocol 'NetworkingProviderConvertible'; this will not behave correctly if the owners of 'Alamofire' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
77 | {
78 | /// You can pass an `AlamoFire.Manager` when creating a `Service`.
/Users/admin/builder/spi-builder-workspace/Extensions/Alamofire/Networking-Alamofire.swift:83:15: warning: class 'ZeroProgressURLSessionTask' must restate inherited '@unchecked Sendable' conformance
81 | }
82 |
83 | private class ZeroProgressURLSessionTask: URLSessionTask
| `- warning: class 'ZeroProgressURLSessionTask' must restate inherited '@unchecked Sendable' conformance
84 | {
85 | override var countOfBytesSent: Int64
Build complete! (23.81s)
Updating https://github.com/pcantrell/Quick
Updated https://github.com/pcantrell/Quick (0.40s)
Fetching https://github.com/Quick/Nimble
Fetching https://github.com/Alamofire/Alamofire
[1/19817] Fetching nimble
[2/51314] Fetching nimble, alamofire
Fetched https://github.com/Alamofire/Alamofire from cache (4.04s)
Fetched https://github.com/Quick/Nimble from cache (4.04s)
Computing version for https://github.com/Quick/Nimble
Computed https://github.com/Quick/Nimble at 9.2.1 (4.74s)
Fetching https://github.com/mattgallagher/CwlPreconditionTesting.git
[1/1257] Fetching cwlpreconditiontesting
Fetched https://github.com/mattgallagher/CwlPreconditionTesting.git from cache (0.83s)
Computing version for https://github.com/mattgallagher/CwlPreconditionTesting.git
Computed https://github.com/mattgallagher/CwlPreconditionTesting.git at 2.2.2 (1.52s)
Fetching https://github.com/mattgallagher/CwlCatchException.git
[1/460] Fetching cwlcatchexception
Fetched https://github.com/mattgallagher/CwlCatchException.git from cache (0.71s)
Computing version for https://github.com/mattgallagher/CwlCatchException.git
Computed https://github.com/mattgallagher/CwlCatchException.git at 2.2.1 (1.38s)
Computing version for https://github.com/Alamofire/Alamofire
Computed https://github.com/Alamofire/Alamofire at 5.11.2 (0.64s)
Creating working copy for https://github.com/mattgallagher/CwlPreconditionTesting.git
Working copy of https://github.com/mattgallagher/CwlPreconditionTesting.git resolved at 2.2.2
Creating working copy for https://github.com/Quick/Nimble
Working copy of https://github.com/Quick/Nimble resolved at 9.2.1
Creating working copy for https://github.com/pcantrell/Quick
Working copy of https://github.com/pcantrell/Quick resolved at siesta (b2d259b)
Creating working copy for https://github.com/Alamofire/Alamofire
Working copy of https://github.com/Alamofire/Alamofire resolved at 5.11.2
Creating working copy for https://github.com/mattgallagher/CwlCatchException.git
Working copy of https://github.com/mattgallagher/CwlCatchException.git resolved at 2.2.1
Build complete.
{
"dependencies" : [
{
"identity" : "alamofire",
"requirement" : {
"range" : [
{
"lower_bound" : "5.0.5",
"upper_bound" : "6.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/Alamofire/Alamofire"
},
{
"identity" : "quick",
"requirement" : {
"branch" : [
"siesta"
]
},
"type" : "sourceControl",
"url" : "https://github.com/pcantrell/Quick"
},
{
"identity" : "nimble",
"requirement" : {
"range" : [
{
"lower_bound" : "9.0.0",
"upper_bound" : "10.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/Quick/Nimble"
}
],
"manifest_display_name" : "Siesta",
"name" : "Siesta",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "10.0"
},
{
"name" : "macos",
"version" : "10.12"
},
{
"name" : "tvos",
"version" : "9.0"
}
],
"products" : [
{
"name" : "Siesta",
"targets" : [
"Siesta"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "SiestaUI",
"targets" : [
"SiestaUI"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "Siesta_Alamofire",
"targets" : [
"Siesta_Alamofire"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "Siesta_Alamofire",
"module_type" : "SwiftTarget",
"name" : "Siesta_Alamofire",
"path" : "Extensions/Alamofire",
"product_dependencies" : [
"Alamofire"
],
"product_memberships" : [
"Siesta_Alamofire"
],
"sources" : [
"Networking-Alamofire.swift"
],
"target_dependencies" : [
"Siesta"
],
"type" : "library"
},
{
"c99name" : "SiestaUI",
"module_type" : "SwiftTarget",
"name" : "SiestaUI",
"path" : "Source/SiestaUI",
"product_memberships" : [
"SiestaUI"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Source/SiestaUI/ResourceStatusOverlay.xib",
"rule" : {
"process" : {
}
}
}
],
"sources" : [
"NetworkActivityIndicator.swift",
"RemoteImageView.swift",
"ResourceStatusOverlay.swift",
"SiestaUI-ObjC.swift",
"Support/Collection+Siesta.swift",
"Ω_UI_Deprecations.swift"
],
"target_dependencies" : [
"Siesta"
],
"type" : "library"
},
{
"c99name" : "SiestaTests",
"module_type" : "SwiftTarget",
"name" : "SiestaTests",
"path" : "Tests/Functional",
"product_dependencies" : [
"Quick",
"Nimble"
],
"sources" : [
"EntityCacheSpec.swift",
"NetworkStub-ObjC.swift",
"NetworkStub.swift",
"PipelineSpec.swift",
"ProgressSpec.swift",
"RemoteImageViewSpec.swift",
"RequestSpec.swift",
"ResourceObserversSpec.swift",
"ResourcePathsSpec.swift",
"ResourceSpecBase.swift",
"ResourceStateSpec.swift",
"ResponseDataHandlingSpec.swift",
"ServiceSpec.swift",
"SiestaSpec.swift",
"SpecHelpers.swift",
"TestService.swift",
"WeakCacheSpec.swift"
],
"target_dependencies" : [
"SiestaUI",
"Siesta_Alamofire"
],
"type" : "test"
},
{
"c99name" : "Siesta",
"module_type" : "SwiftTarget",
"name" : "Siesta",
"path" : "Source/Siesta",
"product_memberships" : [
"Siesta",
"SiestaUI",
"Siesta_Alamofire"
],
"sources" : [
"Configuration.swift",
"ConfigurationPatternConvertible.swift",
"Entity.swift",
"EntityCache.swift",
"Networking-URLSession.swift",
"Networking.swift",
"Pipeline/PipelineConfiguration.swift",
"Pipeline/PipelineProcessing.swift",
"Pipeline/ResponseTransformer.swift",
"Pipeline/StandardTransformers.swift",
"Request/HardWiredRequest.swift",
"Request/LiveRequest.swift",
"Request/NetworkRequest.swift",
"Request/ProgressTracker.swift",
"Request/Request.swift",
"Request/RequestCallbacks.swift",
"Request/RequestChaining.swift",
"Request/RequestCreation.swift",
"RequestError.swift",
"Resource/Resource.swift",
"Resource/ResourceNavigation.swift",
"Resource/ResourceObserver.swift",
"Service.swift",
"Support/ARC+Siesta.swift",
"Support/Collection+Siesta.swift",
"Support/DebugFormatting.swift",
"Support/GCD+Siesta.swift",
"Support/Logging.swift",
"Support/OpenEnum.swift",
"Support/Optional+Siesta.swift",
"Support/Progress.swift",
"Support/Regex+Siesta.swift",
"Support/Siesta-ObjC.swift",
"Support/String+Siesta.swift",
"Support/URL+Siesta.swift",
"Support/WeakCache.swift",
"Support/Ω_Deprecations.swift"
],
"type" : "library"
}
],
"tools_version" : "5.3"
}
Done.