The Swift Package Index logo.Swift Package Index

Build Information

Successful build of Siesta, reference main (4fcc94), with Swift 6.2 for macOS (SPM) on 18 Jun 2025 19:03:39 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.64.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
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/bustoutsolutions/siesta.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/7] Write sources
[0/7] Copying ResourceStatusOverlay.xib
[0/7] Write sources
[1/7] Copying PrivacyInfo.xcprivacy
[1/7] Write sources
[6/7] Write swift-version-1EA4D86E10B52AF.txt
[8/82] Emitting module Alamofire
[9/86] Compiling Alamofire SessionDelegate.swift
[10/86] Compiling Alamofire URLConvertible+URLRequestConvertible.swift
[11/86] Compiling Alamofire UploadRequest.swift
[12/86] Compiling Alamofire WebSocketRequest.swift
[13/86] Compiling Alamofire RequestCompression.swift
[14/86] Compiling Alamofire RequestInterceptor.swift
[15/86] Compiling Alamofire ResponseSerialization.swift
[16/86] Compiling Alamofire RetryPolicy.swift
[17/86] Compiling Alamofire DispatchQueue+Alamofire.swift
[18/86] Compiling Alamofire OperationQueue+Alamofire.swift
[19/86] Compiling Alamofire Result+Alamofire.swift
[20/86] Compiling Alamofire StringEncoding+Alamofire.swift
[21/86] Compiling Alamofire Protected.swift
[22/86] Compiling Alamofire Request.swift
[23/86] Compiling Alamofire RequestTaskMap.swift
[24/86] Compiling Alamofire Response.swift
[25/86] Compiling Alamofire Session.swift
[26/86] Compiling Alamofire CachedResponseHandler.swift
[27/86] Compiling Alamofire Combine.swift
[28/86] Compiling Alamofire Concurrency.swift
[29/86] Compiling Alamofire EventMonitor.swift
[30/86] Compiling Alamofire MultipartFormData.swift
[31/86] Compiling Alamofire MultipartUpload.swift
[32/86] Compiling Alamofire NetworkReachabilityManager.swift
[33/86] Compiling Alamofire RedirectHandler.swift
[34/86] Compiling Alamofire URLRequest+Alamofire.swift
[35/86] Compiling Alamofire URLSessionConfiguration+Alamofire.swift
[36/86] Compiling Alamofire AlamofireExtended.swift
[37/86] Compiling Alamofire AuthenticationInterceptor.swift
[38/86] Compiling Alamofire HTTPHeaders.swift
[39/86] Compiling Alamofire HTTPMethod.swift
[40/86] Compiling Alamofire Notifications.swift
[41/86] Compiling Alamofire ParameterEncoder.swift
[42/86] Compiling Alamofire ParameterEncoding.swift
[43/86] Compiling Alamofire Alamofire.swift
[44/86] Compiling Alamofire AFError.swift
[45/86] Compiling Alamofire DataRequest.swift
[46/86] Compiling Alamofire DataStreamRequest.swift
[47/86] Compiling Alamofire DownloadRequest.swift
[48/86] Compiling Alamofire ServerTrustEvaluation.swift
[49/86] Compiling Alamofire URLEncodedFormEncoder.swift
[50/86] Compiling Alamofire Validation.swift
[51/86] Compiling Alamofire resource_bundle_accessor.swift
[55/89] 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 |     }
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Pipeline/PipelineProcessing.swift:208:20: warning: capture of non-sendable type 'Cache.Type' in an isolated closure
206 |         {
207 |         cache.workQueue.async
208 |             { self.cache.writeEntity(entity, forKey: self.key) }
    |                    `- warning: capture of non-sendable type 'Cache.Type' in an isolated closure
209 |         }
210 |
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Pipeline/PipelineProcessing.swift:205:10: warning: capture of non-sendable type 'Cache.Type' in an isolated closure
203 |         }
204 |
205 |     func write(_ entity: Entity<Any>)
    |          `- warning: capture of non-sendable type 'Cache.Type' in an isolated closure
206 |         {
207 |         cache.workQueue.async
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Pipeline/PipelineProcessing.swift:214:20: warning: capture of non-sendable type 'Cache.Type' in an isolated closure
212 |         {
213 |         cache.workQueue.async
214 |             { self.cache.updateEntityTimestamp(timestamp, forKey: self.key) }
    |                    `- warning: capture of non-sendable type 'Cache.Type' in an isolated closure
215 |         }
216 |
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Pipeline/PipelineProcessing.swift:211:10: warning: capture of non-sendable type 'Cache.Type' in an isolated closure
209 |         }
210 |
211 |     func updateTimestamp(_ timestamp: TimeInterval)
    |          `- warning: capture of non-sendable type 'Cache.Type' in an isolated closure
212 |         {
213 |         cache.workQueue.async
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Pipeline/PipelineProcessing.swift:220:20: warning: capture of non-sendable type 'Cache.Type' in an isolated closure
218 |         {
219 |         cache.workQueue.async
220 |             { self.cache.removeEntity(forKey: self.key) }
    |                    `- warning: capture of non-sendable type 'Cache.Type' in an isolated closure
221 |         }
222 |     }
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Pipeline/PipelineProcessing.swift:217:10: warning: capture of non-sendable type 'Cache.Type' in an isolated closure
215 |         }
216 |
217 |     func remove()
    |          `- warning: capture of non-sendable type 'Cache.Type' in an isolated closure
218 |         {
219 |         cache.workQueue.async
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Pipeline/PipelineProcessing.swift:208:20: warning: capture of non-sendable type 'Cache.Type' in an isolated closure
206 |         {
207 |         cache.workQueue.async
208 |             { self.cache.writeEntity(entity, forKey: self.key) }
    |                    `- warning: capture of non-sendable type 'Cache.Type' in an isolated closure
209 |         }
210 |
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Pipeline/PipelineProcessing.swift:205:10: warning: capture of non-sendable type 'Cache.Type' in an isolated closure
203 |         }
204 |
205 |     func write(_ entity: Entity<Any>)
    |          `- warning: capture of non-sendable type 'Cache.Type' in an isolated closure
206 |         {
207 |         cache.workQueue.async
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Pipeline/PipelineProcessing.swift:214:20: warning: capture of non-sendable type 'Cache.Type' in an isolated closure
212 |         {
213 |         cache.workQueue.async
214 |             { self.cache.updateEntityTimestamp(timestamp, forKey: self.key) }
    |                    `- warning: capture of non-sendable type 'Cache.Type' in an isolated closure
215 |         }
216 |
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Pipeline/PipelineProcessing.swift:211:10: warning: capture of non-sendable type 'Cache.Type' in an isolated closure
209 |         }
210 |
211 |     func updateTimestamp(_ timestamp: TimeInterval)
    |          `- warning: capture of non-sendable type 'Cache.Type' in an isolated closure
212 |         {
213 |         cache.workQueue.async
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Pipeline/PipelineProcessing.swift:220:20: warning: capture of non-sendable type 'Cache.Type' in an isolated closure
218 |         {
219 |         cache.workQueue.async
220 |             { self.cache.removeEntity(forKey: self.key) }
    |                    `- warning: capture of non-sendable type 'Cache.Type' in an isolated closure
221 |         }
222 |     }
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Pipeline/PipelineProcessing.swift:217:10: warning: capture of non-sendable type 'Cache.Type' in an isolated closure
215 |         }
216 |
217 |     func remove()
    |          `- warning: capture of non-sendable type 'Cache.Type' in an isolated closure
218 |         {
219 |         cache.workQueue.async
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Pipeline/PipelineProcessing.swift:208:20: warning: capture of non-sendable type 'Cache.Type' in an isolated closure
206 |         {
207 |         cache.workQueue.async
208 |             { self.cache.writeEntity(entity, forKey: self.key) }
    |                    `- warning: capture of non-sendable type 'Cache.Type' in an isolated closure
209 |         }
210 |
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Pipeline/PipelineProcessing.swift:205:10: warning: capture of non-sendable type 'Cache.Type' in an isolated closure
203 |         }
204 |
205 |     func write(_ entity: Entity<Any>)
    |          `- warning: capture of non-sendable type 'Cache.Type' in an isolated closure
206 |         {
207 |         cache.workQueue.async
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Pipeline/PipelineProcessing.swift:214:20: warning: capture of non-sendable type 'Cache.Type' in an isolated closure
212 |         {
213 |         cache.workQueue.async
214 |             { self.cache.updateEntityTimestamp(timestamp, forKey: self.key) }
    |                    `- warning: capture of non-sendable type 'Cache.Type' in an isolated closure
215 |         }
216 |
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Pipeline/PipelineProcessing.swift:211:10: warning: capture of non-sendable type 'Cache.Type' in an isolated closure
209 |         }
210 |
211 |     func updateTimestamp(_ timestamp: TimeInterval)
    |          `- warning: capture of non-sendable type 'Cache.Type' in an isolated closure
212 |         {
213 |         cache.workQueue.async
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Pipeline/PipelineProcessing.swift:220:20: warning: capture of non-sendable type 'Cache.Type' in an isolated closure
218 |         {
219 |         cache.workQueue.async
220 |             { self.cache.removeEntity(forKey: self.key) }
    |                    `- warning: capture of non-sendable type 'Cache.Type' in an isolated closure
221 |         }
222 |     }
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Pipeline/PipelineProcessing.swift:217:10: warning: capture of non-sendable type 'Cache.Type' in an isolated closure
215 |         }
216 |
217 |     func remove()
    |          `- warning: capture of non-sendable type 'Cache.Type' in an isolated closure
218 |         {
219 |         cache.workQueue.async
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Pipeline/PipelineProcessing.swift:208:20: warning: capture of non-sendable type 'Cache.Type' in an isolated closure
206 |         {
207 |         cache.workQueue.async
208 |             { self.cache.writeEntity(entity, forKey: self.key) }
    |                    `- warning: capture of non-sendable type 'Cache.Type' in an isolated closure
209 |         }
210 |
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Pipeline/PipelineProcessing.swift:205:10: warning: capture of non-sendable type 'Cache.Type' in an isolated closure
203 |         }
204 |
205 |     func write(_ entity: Entity<Any>)
    |          `- warning: capture of non-sendable type 'Cache.Type' in an isolated closure
206 |         {
207 |         cache.workQueue.async
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Pipeline/PipelineProcessing.swift:214:20: warning: capture of non-sendable type 'Cache.Type' in an isolated closure
212 |         {
213 |         cache.workQueue.async
214 |             { self.cache.updateEntityTimestamp(timestamp, forKey: self.key) }
    |                    `- warning: capture of non-sendable type 'Cache.Type' in an isolated closure
215 |         }
216 |
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Pipeline/PipelineProcessing.swift:211:10: warning: capture of non-sendable type 'Cache.Type' in an isolated closure
209 |         }
210 |
211 |     func updateTimestamp(_ timestamp: TimeInterval)
    |          `- warning: capture of non-sendable type 'Cache.Type' in an isolated closure
212 |         {
213 |         cache.workQueue.async
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Pipeline/PipelineProcessing.swift:220:20: warning: capture of non-sendable type 'Cache.Type' in an isolated closure
218 |         {
219 |         cache.workQueue.async
220 |             { self.cache.removeEntity(forKey: self.key) }
    |                    `- warning: capture of non-sendable type 'Cache.Type' in an isolated closure
221 |         }
222 |     }
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Pipeline/PipelineProcessing.swift:217:10: warning: capture of non-sendable type 'Cache.Type' in an isolated closure
215 |         }
216 |
217 |     func remove()
    |          `- warning: capture of non-sendable type 'Cache.Type' in an isolated closure
218 |         {
219 |         cache.workQueue.async
[68/89] Compiling Siesta URL+Siesta.swift
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Support/WeakCache.swift:44:17: warning: capture of non-sendable type 'K.Type' in an isolated closure
 42 |             {
 43 |             [weak self] _ in
 44 |             self?.flushUnused()
    |                 `- warning: capture of non-sendable type 'K.Type' in an isolated closure
 45 |             }
 46 |         }
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Support/WeakCache.swift:43:19: warning: capture of non-sendable type 'K.Type' in an isolated closure
 41 |                 queue: nil)
 42 |             {
 43 |             [weak self] _ in
    |                   `- warning: capture of non-sendable type 'K.Type' in an isolated closure
 44 |             self?.flushUnused()
 45 |             }
[69/89] Compiling Siesta WeakCache.swift
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Support/WeakCache.swift:44:17: warning: capture of non-sendable type 'K.Type' in an isolated closure
 42 |             {
 43 |             [weak self] _ in
 44 |             self?.flushUnused()
    |                 `- warning: capture of non-sendable type 'K.Type' in an isolated closure
 45 |             }
 46 |         }
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Support/WeakCache.swift:43:19: warning: capture of non-sendable type 'K.Type' in an isolated closure
 41 |                 queue: nil)
 42 |             {
 43 |             [weak self] _ in
    |                   `- warning: capture of non-sendable type 'K.Type' in an isolated closure
 44 |             self?.flushUnused()
 45 |             }
[70/89] Compiling Siesta Ω_Deprecations.swift
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Support/WeakCache.swift:44:17: warning: capture of non-sendable type 'K.Type' in an isolated closure
 42 |             {
 43 |             [weak self] _ in
 44 |             self?.flushUnused()
    |                 `- warning: capture of non-sendable type 'K.Type' in an isolated closure
 45 |             }
 46 |         }
/Users/admin/builder/spi-builder-workspace/Source/Siesta/Support/WeakCache.swift:43:19: warning: capture of non-sendable type 'K.Type' in an isolated closure
 41 |                 queue: nil)
 42 |             {
 43 |             [weak self] _ in
    |                   `- warning: capture of non-sendable type 'K.Type' in an isolated closure
 44 |             self?.flushUnused()
 45 |             }
/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:
/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 |     }
[90/99] Compiling SiestaUI Ω_UI_Deprecations.swift
[91/99] Compiling SiestaUI SiestaUI-ObjC.swift
[92/99] Compiling SiestaUI resource_bundle_accessor.swift
[93/99] Compiling SiestaUI RemoteImageView.swift
[94/99] Compiling SiestaUI ResourceStatusOverlay.swift
[95/99] Compiling SiestaUI Collection+Siesta.swift
[96/99] Compiling SiestaUI NetworkActivityIndicator.swift
[97/99] Emitting module SiestaUI
[98/99] 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
[99/99] 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! (20.97s)
Fetching https://github.com/pcantrell/Quick
[1/9698] Fetching quick
Fetched https://github.com/pcantrell/Quick from cache (1.13s)
Fetching https://github.com/Quick/Nimble
Fetching https://github.com/Alamofire/Alamofire
[1/19584] Fetching nimble
[2/49725] Fetching nimble, alamofire
Fetched https://github.com/Quick/Nimble from cache (1.72s)
[9646/30141] Fetching alamofire
Fetched https://github.com/Alamofire/Alamofire from cache (2.65s)
Computing version for https://github.com/Quick/Nimble
Computed https://github.com/Quick/Nimble at 9.2.1 (3.20s)
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.34s)
Fetching https://github.com/mattgallagher/CwlCatchException.git
[1/455] Fetching cwlcatchexception
Fetched https://github.com/mattgallagher/CwlCatchException.git from cache (0.75s)
Computing version for https://github.com/mattgallagher/CwlCatchException.git
Computed https://github.com/mattgallagher/CwlCatchException.git at 2.2.1 (1.28s)
Computing version for https://github.com/Alamofire/Alamofire
Computed https://github.com/Alamofire/Alamofire at 5.10.2 (0.43s)
Creating working copy for https://github.com/mattgallagher/CwlCatchException.git
Working copy of https://github.com/mattgallagher/CwlCatchException.git resolved at 2.2.1
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/mattgallagher/CwlPreconditionTesting.git
Working copy of https://github.com/mattgallagher/CwlPreconditionTesting.git resolved at 2.2.2
Creating working copy for https://github.com/Alamofire/Alamofire
Working copy of https://github.com/Alamofire/Alamofire resolved at 5.10.2
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.