Build Information
Successful build of Fetch, reference 3.2.0 (3d3ada
), with Swift 6.0 for macOS (Xcode) using Xcode 16.0 on 4 Nov 2024 12:58:09 UTC.
Swift 6 data race errors: 4
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Fetch -destination platform=macOS,arch=arm64 OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete
Build Log
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/RequestToken.swift:12:14: note: class 'RequestToken' does not conform to the 'Sendable' protocol
public class RequestToken {
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Async.swift:98:21: warning: capture of 'requestToken' with non-sendable type 'RequestToken' in a `@Sendable` closure; this is an error in the Swift 6 language mode
requestToken.cancel()
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/RequestToken.swift:12:14: note: class 'RequestToken' does not conform to the 'Sendable' protocol
public class RequestToken {
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift:115:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'APIClient' may have shared mutable state; this is an error in the Swift 6 language mode
public static let shared = APIClient()
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift:101:12: note: class 'APIClient' does not conform to the 'Sendable' protocol
open class APIClient {
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift:115:23: note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
public static let shared = APIClient()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift:115:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let shared = APIClient()
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/StubbedURL.swift:13:16: warning: static property 'stubProvider' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var stubProvider: StubProvider?
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/StubbedURL.swift:13:16: note: convert 'stubProvider' to a 'let' constant to make 'Sendable' shared state immutable
static var stubProvider: StubProvider?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/StubbedURL.swift:13:16: note: annotate 'stubProvider' with '@MainActor' if property should only be accessed from the main actor
static var stubProvider: StubProvider?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/StubbedURL.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var stubProvider: StubProvider?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift:201:52: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
let decodedResponse = dataResponse.tryMap { (data) throws -> T in
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift:166:46: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
@discardableResult internal func request<T>(_ resource: Resource<T>, queue: DispatchQueue, completion: @escaping CompletionCallback<T>) -> RequestToken {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift:209:40: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
switch decodedResponse.result {
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift:166:46: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
@discardableResult internal func request<T>(_ resource: Resource<T>, queue: DispatchQueue, completion: @escaping CompletionCallback<T>) -> RequestToken {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift:227:97: warning: type 'T' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
fetchError = .network(error: afError, responseData: decodedResponse.data)
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift:166:46: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
@discardableResult internal func request<T>(_ resource: Resource<T>, queue: DispatchQueue, completion: @escaping CompletionCallback<T>) -> RequestToken {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift:181:17: warning: capture of 'completion' with non-sendable type 'APIClient.CompletionCallback<T>' (aka '(Result<NetworkResponse<T>, FetchError>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
completion(.failure(.other(error: error)))
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift:181:17: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completion(.failure(.other(error: error)))
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift:205:36: warning: capture of 'resource' with non-sendable type 'Resource<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
return try resource.decode(data)
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource.swift:15:12: note: generic class 'Resource' does not conform to the 'Sendable' protocol
open class Resource<T: Decodable>: CacheableResource {
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift:213:29: warning: capture of 'completion' with non-sendable type 'APIClient.CompletionCallback<T>' (aka '(Result<NetworkResponse<T>, FetchError>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
completion(.success(NetworkResponse(model: model, urlResponse: urlResponse)))
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift:213:29: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completion(.success(NetworkResponse(model: model, urlResponse: urlResponse)))
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift:205:36: warning: capture of 'resource' with non-sendable type 'Resource<T>' in an isolated closure; this is an error in the Swift 6 language mode
return try resource.decode(data)
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource.swift:15:12: note: generic class 'Resource' does not conform to the 'Sendable' protocol
open class Resource<T: Decodable>: CacheableResource {
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift:213:29: warning: capture of 'completion' with non-sendable type 'APIClient.CompletionCallback<T>' (aka '(Result<NetworkResponse<T>, FetchError>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
completion(.success(NetworkResponse(model: model, urlResponse: urlResponse)))
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift:213:29: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completion(.success(NetworkResponse(model: model, urlResponse: urlResponse)))
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift:213:72: warning: capture of 'model' with non-sendable type 'T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
completion(.success(NetworkResponse(model: model, urlResponse: urlResponse)))
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift:166:46: note: consider making generic parameter 'T' conform to the 'Sendable' protocol
@discardableResult internal func request<T>(_ resource: Resource<T>, queue: DispatchQueue, completion: @escaping CompletionCallback<T>) -> RequestToken {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift:217:29: warning: capture of 'completion' with non-sendable type 'APIClient.CompletionCallback<T>' (aka '(Result<NetworkResponse<T>, FetchError>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
completion(.failure(.invalidResponse))
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift:217:29: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completion(.failure(.invalidResponse))
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift:237:25: warning: capture of 'completion' with non-sendable type 'APIClient.CompletionCallback<T>' (aka '(Result<NetworkResponse<T>, FetchError>) -> ()') in a `@Sendable` closure; this is an error in the Swift 6 language mode
completion(.failure(fetchError))
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift:237:25: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completion(.failure(fetchError))
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Async.swift:31:38: warning: sending 'response' risks causing data races; this is an error in the Swift 6 language mode
continuation.resume(returning: response)
~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Async.swift:31:38: note: task-isolated 'response' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
continuation.resume(returning: response)
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Async.swift:57:42: warning: task-isolated value of type '(FetchResponse<T>, Bool)' passed as a strongly transferred parameter; later accesses could race; this is an error in the Swift 6 language mode
continuation.resume(returning: (response, isFinished))
~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Async.swift:86:34: warning: sending 'response' risks causing data races; this is an error in the Swift 6 language mode
continuation.yield(response)
~~~~~~~~~~~~~^~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Async.swift:86:34: note: task-isolated 'response' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
continuation.yield(response)
^
SwiftCompile normal arm64 Compiling\ Expiration.swift,\ HybridCache.swift,\ MemoryCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Expiration.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/HybridCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/MemoryCache.swift (in target 'Fetch' from project 'Fetch')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cacheable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/DiskCache.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Expiration.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/HybridCache.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/MemoryCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Async.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Combine.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APILogger.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/FetchError.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource+Fetch.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/AlternatingStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/ClosureStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/RandomStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/Stub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/StubbedURL.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/StubProvider/StubProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/AnyEncodable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Crypto.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Decoder+Keys.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/HTTPContentType.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/IgnoreBody.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/JSONEncoder+ResourceEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/RequestToken.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceDecoderProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceEncoderProtocol.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/supplementaryOutputs-22 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Fetch -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Expiration.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/HybridCache.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/MemoryCache.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Expiration.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/HybridCache.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/MemoryCache.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Expiration.swift (in target 'Fetch' from project 'Fetch')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cacheable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/DiskCache.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Expiration.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/HybridCache.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/MemoryCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Async.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Combine.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APILogger.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/FetchError.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource+Fetch.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/AlternatingStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/ClosureStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/RandomStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/Stub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/StubbedURL.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/StubProvider/StubProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/AnyEncodable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Crypto.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Decoder+Keys.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/HTTPContentType.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/IgnoreBody.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/JSONEncoder+ResourceEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/RequestToken.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceDecoderProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceEncoderProtocol.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/supplementaryOutputs-22 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Fetch -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Expiration.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/HybridCache.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/MemoryCache.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Expiration.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/HybridCache.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/MemoryCache.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/HybridCache.swift (in target 'Fetch' from project 'Fetch')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cacheable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/DiskCache.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Expiration.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/HybridCache.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/MemoryCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Async.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Combine.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APILogger.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/FetchError.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource+Fetch.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/AlternatingStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/ClosureStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/RandomStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/Stub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/StubbedURL.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/StubProvider/StubProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/AnyEncodable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Crypto.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Decoder+Keys.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/HTTPContentType.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/IgnoreBody.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/JSONEncoder+ResourceEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/RequestToken.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceDecoderProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceEncoderProtocol.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/supplementaryOutputs-22 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Fetch -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Expiration.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/HybridCache.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/MemoryCache.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Expiration.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/HybridCache.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/MemoryCache.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/MemoryCache.swift (in target 'Fetch' from project 'Fetch')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cacheable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/DiskCache.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Expiration.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/HybridCache.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/MemoryCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Async.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Combine.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APILogger.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/FetchError.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource+Fetch.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/AlternatingStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/ClosureStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/RandomStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/Stub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/StubbedURL.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/StubProvider/StubProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/AnyEncodable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Crypto.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Decoder+Keys.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/HTTPContentType.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/IgnoreBody.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/JSONEncoder+ResourceEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/RequestToken.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceDecoderProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceEncoderProtocol.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/supplementaryOutputs-22 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Fetch -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Expiration.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/HybridCache.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/MemoryCache.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Expiration.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/HybridCache.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/MemoryCache.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ Resource.swift,\ AlternatingStub.swift,\ ClosureStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/AlternatingStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/ClosureStub.swift (in target 'Fetch' from project 'Fetch')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cacheable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/DiskCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Expiration.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/HybridCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/MemoryCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Async.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Combine.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APILogger.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/FetchError.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource+Fetch.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/AlternatingStub.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/ClosureStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/RandomStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/Stub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/StubbedURL.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/StubProvider/StubProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/AnyEncodable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Crypto.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Decoder+Keys.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/HTTPContentType.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/IgnoreBody.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/JSONEncoder+ResourceEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/RequestToken.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceDecoderProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceEncoderProtocol.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/supplementaryOutputs-25 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Fetch -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Resource.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/AlternatingStub.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/ClosureStub.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Resource.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/AlternatingStub.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/ClosureStub.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource.swift (in target 'Fetch' from project 'Fetch')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cacheable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/DiskCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Expiration.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/HybridCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/MemoryCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Async.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Combine.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APILogger.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/FetchError.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource+Fetch.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/AlternatingStub.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/ClosureStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/RandomStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/Stub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/StubbedURL.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/StubProvider/StubProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/AnyEncodable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Crypto.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Decoder+Keys.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/HTTPContentType.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/IgnoreBody.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/JSONEncoder+ResourceEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/RequestToken.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceDecoderProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceEncoderProtocol.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/supplementaryOutputs-25 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Fetch -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Resource.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/AlternatingStub.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/ClosureStub.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Resource.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/AlternatingStub.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/ClosureStub.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift:115:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'APIClient' may have shared mutable state; this is an error in the Swift 6 language mode
public static let shared = APIClient()
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift:101:12: note: class 'APIClient' does not conform to the 'Sendable' protocol
open class APIClient {
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift:115:23: note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
public static let shared = APIClient()
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift:115:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let shared = APIClient()
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/AlternatingStub.swift (in target 'Fetch' from project 'Fetch')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cacheable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/DiskCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Expiration.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/HybridCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/MemoryCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Async.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Combine.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APILogger.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/FetchError.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource+Fetch.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/AlternatingStub.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/ClosureStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/RandomStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/Stub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/StubbedURL.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/StubProvider/StubProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/AnyEncodable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Crypto.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Decoder+Keys.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/HTTPContentType.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/IgnoreBody.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/JSONEncoder+ResourceEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/RequestToken.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceDecoderProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceEncoderProtocol.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/supplementaryOutputs-25 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Fetch -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Resource.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/AlternatingStub.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/ClosureStub.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Resource.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/AlternatingStub.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/ClosureStub.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/ClosureStub.swift (in target 'Fetch' from project 'Fetch')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cacheable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/DiskCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Expiration.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/HybridCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/MemoryCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Async.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Combine.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APILogger.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/FetchError.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource+Fetch.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/AlternatingStub.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/ClosureStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/RandomStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/Stub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/StubbedURL.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/StubProvider/StubProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/AnyEncodable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Crypto.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Decoder+Keys.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/HTTPContentType.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/IgnoreBody.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/JSONEncoder+ResourceEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/RequestToken.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceDecoderProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceEncoderProtocol.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/supplementaryOutputs-25 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Fetch -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Resource.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/AlternatingStub.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/ClosureStub.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Resource.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/AlternatingStub.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/ClosureStub.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ RandomStub.swift,\ Stub.swift,\ StubbedURL.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/RandomStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/Stub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/StubbedURL.swift (in target 'Fetch' from project 'Fetch')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cacheable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/DiskCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Expiration.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/HybridCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/MemoryCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Async.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Combine.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APILogger.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/FetchError.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource+Fetch.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/AlternatingStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/ClosureStub.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/RandomStub.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/Stub.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/StubbedURL.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/StubProvider/StubProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/AnyEncodable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Crypto.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Decoder+Keys.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/HTTPContentType.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/IgnoreBody.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/JSONEncoder+ResourceEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/RequestToken.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceDecoderProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceEncoderProtocol.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/supplementaryOutputs-26 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Fetch -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/RandomStub.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Stub.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/StubbedURL.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/RandomStub.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Stub.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/StubbedURL.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/RandomStub.swift (in target 'Fetch' from project 'Fetch')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cacheable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/DiskCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Expiration.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/HybridCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/MemoryCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Async.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Combine.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APILogger.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/FetchError.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource+Fetch.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/AlternatingStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/ClosureStub.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/RandomStub.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/Stub.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/StubbedURL.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/StubProvider/StubProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/AnyEncodable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Crypto.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Decoder+Keys.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/HTTPContentType.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/IgnoreBody.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/JSONEncoder+ResourceEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/RequestToken.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceDecoderProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceEncoderProtocol.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/supplementaryOutputs-26 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Fetch -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/RandomStub.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Stub.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/StubbedURL.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/RandomStub.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Stub.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/StubbedURL.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/Stub.swift (in target 'Fetch' from project 'Fetch')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cacheable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/DiskCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Expiration.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/HybridCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/MemoryCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Async.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Combine.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APILogger.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/FetchError.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource+Fetch.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/AlternatingStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/ClosureStub.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/RandomStub.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/Stub.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/StubbedURL.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/StubProvider/StubProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/AnyEncodable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Crypto.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Decoder+Keys.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/HTTPContentType.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/IgnoreBody.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/JSONEncoder+ResourceEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/RequestToken.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceDecoderProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceEncoderProtocol.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/supplementaryOutputs-26 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Fetch -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/RandomStub.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Stub.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/StubbedURL.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/RandomStub.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Stub.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/StubbedURL.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/StubbedURL.swift (in target 'Fetch' from project 'Fetch')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cacheable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/DiskCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Expiration.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/HybridCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/MemoryCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Async.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Combine.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APILogger.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/FetchError.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource+Fetch.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/AlternatingStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/ClosureStub.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/RandomStub.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/Stub.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/StubbedURL.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/StubProvider/StubProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/AnyEncodable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Crypto.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Decoder+Keys.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/HTTPContentType.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/IgnoreBody.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/JSONEncoder+ResourceEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/RequestToken.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceDecoderProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceEncoderProtocol.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/supplementaryOutputs-26 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Fetch -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/RandomStub.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Stub.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/StubbedURL.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/RandomStub.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Stub.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/StubbedURL.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/StubbedURL.swift:13:16: warning: static property 'stubProvider' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var stubProvider: StubProvider?
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/StubbedURL.swift:13:16: note: convert 'stubProvider' to a 'let' constant to make 'Sendable' shared state immutable
static var stubProvider: StubProvider?
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/StubbedURL.swift:13:16: note: annotate 'stubProvider' with '@MainActor' if property should only be accessed from the main actor
static var stubProvider: StubProvider?
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/StubbedURL.swift:13:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var stubProvider: StubProvider?
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/StubbedURL.swift:31:17: warning: capture of 'self' with non-sendable type 'StubbedURL?' in a `@Sendable` closure; this is an error in the Swift 6 language mode
self?.handleStub(stub)
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/StubbedURL.swift:11:7: note: class 'StubbedURL' does not conform to the 'Sendable' protocol
class StubbedURL: URLProtocol {
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/StubbedURL.swift:31:34: warning: capture of 'stub' with non-sendable type 'any Stub' in a `@Sendable` closure; this is an error in the Swift 6 language mode
self?.handleStub(stub)
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/Stub.swift:13:17: note: protocol 'Stub' does not conform to the 'Sendable' protocol
public protocol Stub {
^
SwiftDriverJobDiscovery normal arm64 Compiling EventMonitor.swift, MultipartFormData.swift, MultipartUpload.swift, NetworkReachabilityManager.swift (in target 'Alamofire' from project 'Alamofire')
SwiftCompile normal arm64 Compiling\ APILogger.swift,\ FetchError.swift,\ Resource+Fetch.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APILogger.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/FetchError.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource+Fetch.swift (in target 'Fetch' from project 'Fetch')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cacheable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/DiskCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Expiration.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/HybridCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/MemoryCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Async.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Combine.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APILogger.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/FetchError.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource+Fetch.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/AlternatingStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/ClosureStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/RandomStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/Stub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/StubbedURL.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/StubProvider/StubProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/AnyEncodable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Crypto.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Decoder+Keys.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/HTTPContentType.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/IgnoreBody.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/JSONEncoder+ResourceEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/RequestToken.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceDecoderProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceEncoderProtocol.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/supplementaryOutputs-24 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Fetch -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/APILogger.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/FetchError.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Resource+Fetch.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/APILogger.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/FetchError.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Resource+Fetch.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APILogger.swift (in target 'Fetch' from project 'Fetch')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cacheable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/DiskCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Expiration.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/HybridCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/MemoryCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Async.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Combine.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APILogger.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/FetchError.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource+Fetch.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/AlternatingStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/ClosureStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/RandomStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/Stub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/StubbedURL.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/StubProvider/StubProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/AnyEncodable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Crypto.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Decoder+Keys.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/HTTPContentType.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/IgnoreBody.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/JSONEncoder+ResourceEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/RequestToken.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceDecoderProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceEncoderProtocol.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/supplementaryOutputs-24 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Fetch -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/APILogger.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/FetchError.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Resource+Fetch.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/APILogger.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/FetchError.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Resource+Fetch.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APILogger.swift:13:14: warning: non-final class 'APILogger' cannot conform to 'Sendable'; use '@unchecked Sendable'; this is an error in the Swift 6 language mode
public class APILogger: EventMonitor {
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APILogger.swift:27:16: warning: stored property 'customLogClosure' of 'Sendable'-conforming class 'APILogger' is mutable; this is an error in the Swift 6 language mode
public var customLogClosure: CustomLogClosure?
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/FetchError.swift (in target 'Fetch' from project 'Fetch')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cacheable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/DiskCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Expiration.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/HybridCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/MemoryCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Async.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Combine.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APILogger.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/FetchError.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource+Fetch.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/AlternatingStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/ClosureStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/RandomStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/Stub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/StubbedURL.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/StubProvider/StubProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/AnyEncodable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Crypto.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Decoder+Keys.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/HTTPContentType.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/IgnoreBody.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/JSONEncoder+ResourceEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/RequestToken.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceDecoderProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceEncoderProtocol.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/supplementaryOutputs-24 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Fetch -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/APILogger.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/FetchError.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Resource+Fetch.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/APILogger.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/FetchError.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Resource+Fetch.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource+Fetch.swift (in target 'Fetch' from project 'Fetch')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cacheable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/DiskCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Expiration.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/HybridCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/MemoryCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Async.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Combine.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APILogger.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/FetchError.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource+Fetch.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/AlternatingStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/ClosureStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/RandomStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/Stub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/StubbedURL.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/StubProvider/StubProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/AnyEncodable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Crypto.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Decoder+Keys.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/HTTPContentType.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/IgnoreBody.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/JSONEncoder+ResourceEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/RequestToken.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceDecoderProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceEncoderProtocol.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/supplementaryOutputs-24 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Fetch -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/APILogger.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/FetchError.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Resource+Fetch.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/APILogger.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/FetchError.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Resource+Fetch.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource+Fetch.swift:166:21: warning: capture of 'completion' with non-sendable type '(Result<FetchResponse<T>, FetchError>, Bool) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
completion(fetchResult, true)
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource+Fetch.swift:166:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completion(fetchResult, true)
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource+Fetch.swift:166:32: warning: capture of 'fetchResult' with non-sendable type 'Result<FetchResponse<T>, FetchError>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
completion(fetchResult, true)
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource+Fetch.swift:14:13: note: consider making generic enum 'FetchResponse' conform to the 'Sendable' protocol
public enum FetchResponse<T> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource+Fetch.swift:177:21: warning: capture of 'token' with non-sendable type 'RequestToken' in a `@Sendable` closure; this is an error in the Swift 6 language mode
if !token.isCancelled {
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/RequestToken.swift:12:14: note: class 'RequestToken' does not conform to the 'Sendable' protocol
public class RequestToken {
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource+Fetch.swift:178:56: warning: capture of 'self' with non-sendable type 'Resource<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
if let entry: CacheEntry<T> = try? self.cache?.get(for: self) {
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource.swift:15:12: note: generic class 'Resource' does not conform to the 'Sendable' protocol
open class Resource<T: Decodable>: CacheableResource {
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource+Fetch.swift:179:25: warning: capture of 'completion' with non-sendable type '(CacheEntry<T>?) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
completion(entry)
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource+Fetch.swift:179:25: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completion(entry)
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource+Fetch.swift:177:21: warning: capture of 'token' with non-sendable type 'RequestToken' in a `@Sendable` closure; this is an error in the Swift 6 language mode
if !token.isCancelled {
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/RequestToken.swift:12:14: note: class 'RequestToken' does not conform to the 'Sendable' protocol
public class RequestToken {
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource+Fetch.swift:178:56: warning: capture of 'self' with non-sendable type 'Resource<T>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
if let entry: CacheEntry<T> = try? self.cache?.get(for: self) {
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource.swift:15:12: note: generic class 'Resource' does not conform to the 'Sendable' protocol
open class Resource<T: Decodable>: CacheableResource {
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource+Fetch.swift:179:25: warning: capture of 'completion' with non-sendable type '(CacheEntry<T>?) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
completion(entry)
^
/Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource+Fetch.swift:179:25: note: a function type must be marked '@Sendable' to conform to 'Sendable'
completion(entry)
^
SwiftDriverJobDiscovery normal arm64 Compiling ResourceDecoderProtocol.swift, ResourceEncoderProtocol.swift (in target 'Fetch' from project 'Fetch')
SwiftCompile normal arm64 Compiling\ Cache.swift,\ Cacheable.swift,\ DiskCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cacheable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/DiskCache.swift (in target 'Fetch' from project 'Fetch')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cache.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cacheable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/DiskCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Expiration.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/HybridCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/MemoryCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Async.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Combine.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APILogger.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/FetchError.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource+Fetch.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/AlternatingStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/ClosureStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/RandomStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/Stub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/StubbedURL.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/StubProvider/StubProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/AnyEncodable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Crypto.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Decoder+Keys.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/HTTPContentType.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/IgnoreBody.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/JSONEncoder+ResourceEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/RequestToken.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceDecoderProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceEncoderProtocol.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/supplementaryOutputs-21 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Fetch -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Cache.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Cacheable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/DiskCache.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Cache.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Cacheable.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/DiskCache.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cache.swift (in target 'Fetch' from project 'Fetch')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cache.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cacheable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/DiskCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Expiration.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/HybridCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/MemoryCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Async.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Combine.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APILogger.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/FetchError.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource+Fetch.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/AlternatingStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/ClosureStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/RandomStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/Stub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/StubbedURL.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/StubProvider/StubProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/AnyEncodable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Crypto.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Decoder+Keys.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/HTTPContentType.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/IgnoreBody.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/JSONEncoder+ResourceEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/RequestToken.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceDecoderProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceEncoderProtocol.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/supplementaryOutputs-21 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Fetch -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Cache.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Cacheable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/DiskCache.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Cache.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Cacheable.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/DiskCache.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cacheable.swift (in target 'Fetch' from project 'Fetch')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cache.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cacheable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/DiskCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Expiration.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/HybridCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/MemoryCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Async.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Combine.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APILogger.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/FetchError.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource+Fetch.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/AlternatingStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/ClosureStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/RandomStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/Stub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/StubbedURL.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/StubProvider/StubProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/AnyEncodable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Crypto.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Decoder+Keys.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/HTTPContentType.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/IgnoreBody.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/JSONEncoder+ResourceEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/RequestToken.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceDecoderProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceEncoderProtocol.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/supplementaryOutputs-21 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Fetch -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Cache.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Cacheable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/DiskCache.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Cache.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Cacheable.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/DiskCache.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/DiskCache.swift (in target 'Fetch' from project 'Fetch')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cache.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Cacheable.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/DiskCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/Expiration.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/HybridCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Cache/MemoryCache.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Async.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Extensions/Fetch+Combine.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APIClient.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/APILogger.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/FetchError.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource+Fetch.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Network/Resource.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/AlternatingStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/ClosureStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/RandomStub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/Stub.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Stub/StubbedURL.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/StubProvider/StubProvider.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/AnyEncodable.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Crypto.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/Decoder+Keys.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/HTTPContentType.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/IgnoreBody.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/JSONEncoder+ResourceEncoder.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/RequestToken.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceDecoderProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/Fetch/Utilities/ResourceEncoderProtocol.swift -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/supplementaryOutputs-21 -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Fetch -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Cache.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Cacheable.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/DiskCache.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Cache.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Cacheable.o -index-unit-output-path /Fetch.build/Debug/Fetch.build/Objects-normal/arm64/DiskCache.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Compiling JSONEncoder+ResourceEncoder.swift, RequestToken.swift (in target 'Fetch' from project 'Fetch')
SwiftDriver\ Compilation Alamofire normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Alamofire' from project 'Alamofire')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Alamofire -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Alamofire.build/Debug/Alamofire.build/Objects-normal/arm64/Alamofire.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Alamofire.build/Debug/Alamofire.build/Objects-normal/arm64/Alamofire-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Alamofire.build/Debug/Alamofire.build/Objects-normal/arm64/Alamofire.swiftmodule -user-module-version 5.10.1 -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name alamofire -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Alamofire.build/Debug/Alamofire.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Alamofire.build/Debug/Alamofire.build/Objects-normal/arm64/Alamofire_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Alamofire.build/Debug/Alamofire.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Alamofire.build/Debug/Alamofire.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Alamofire.build/Debug/Alamofire.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Alamofire.build/Debug/Alamofire.build/Objects-normal/arm64/Alamofire-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Alamofire.o normal (in target 'Alamofire' from project 'Alamofire')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Alamofire
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.13 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Alamofire.build/Debug/Alamofire.build/Objects-normal/arm64/Alamofire.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Alamofire.build/Debug/Alamofire.build/Objects-normal/arm64/Alamofire_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Alamofire.build/Debug/Alamofire.build/Objects-normal/arm64/Alamofire.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Alamofire.build/Debug/Alamofire.build/Objects-normal/arm64/Alamofire_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Alamofire.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Alamofire.o (in target 'Alamofire' from project 'Alamofire')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Alamofire
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Alamofire.o
SwiftDriverJobDiscovery normal arm64 Compiling Decoder+Keys.swift, HTTPContentType.swift, IgnoreBody.swift (in target 'Fetch' from project 'Fetch')
SwiftDriverJobDiscovery normal arm64 Compiling Expiration.swift, HybridCache.swift, MemoryCache.swift (in target 'Fetch' from project 'Fetch')
SwiftDriverJobDiscovery normal arm64 Compiling StubProvider.swift, AnyEncodable.swift, Crypto.swift (in target 'Fetch' from project 'Fetch')
SwiftDriverJobDiscovery normal arm64 Compiling RandomStub.swift, Stub.swift, StubbedURL.swift (in target 'Fetch' from project 'Fetch')
SwiftDriverJobDiscovery normal arm64 Emitting module for Fetch (in target 'Fetch' from project 'Fetch')
SwiftDriver\ Compilation\ Requirements Fetch normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Fetch' from project 'Fetch')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Fetch -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/Fetch-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch-Swift.h (in target 'Fetch' from project 'Fetch')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/Fetch-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Fetch.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch.swiftmodule (in target 'Fetch' from project 'Fetch')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Fetch.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Fetch.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch.abi.json (in target 'Fetch' from project 'Fetch')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Fetch.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Fetch.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch.swiftdoc (in target 'Fetch' from project 'Fetch')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Fetch.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Fetch.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch.swiftsourceinfo (in target 'Fetch' from project 'Fetch')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Fetch.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling Resource.swift, AlternatingStub.swift, ClosureStub.swift (in target 'Fetch' from project 'Fetch')
SwiftDriverJobDiscovery normal arm64 Compiling APILogger.swift, FetchError.swift, Resource+Fetch.swift (in target 'Fetch' from project 'Fetch')
SwiftDriverJobDiscovery normal arm64 Compiling Fetch+Async.swift, Fetch+Combine.swift, APIClient.swift (in target 'Fetch' from project 'Fetch')
SwiftDriverJobDiscovery normal arm64 Compiling Cache.swift, Cacheable.swift, DiskCache.swift (in target 'Fetch' from project 'Fetch')
SwiftDriver\ Compilation Fetch normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Fetch' from project 'Fetch')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Fetch -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -target arm64-apple-macos10.13 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Fetch.o normal (in target 'Fetch' from project 'Fetch')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.13 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Fetch.build/Debug/Fetch.build/Objects-normal/arm64/Fetch_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Fetch.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Fetch.o (in target 'Fetch' from project 'Fetch')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Fetch.o
** BUILD SUCCEEDED **
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, id:0000FE00-8C151E3703BE51BE, name:My Mac }
{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:0000FE00-8C151E3703BE51BE, name:My Mac }
{ platform:macOS, arch:arm64, variant:DriverKit, id:0000FE00-8C151E3703BE51BE, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:0000FE00-8C151E3703BE51BE, name:My Mac }
Build complete.
{
"dependencies" : [
{
"identity" : "alamofire",
"requirement" : {
"range" : [
{
"lower_bound" : "5.7.0",
"upper_bound" : "6.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/Alamofire/Alamofire.git"
}
],
"manifest_display_name" : "Fetch",
"name" : "Fetch",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.12"
},
{
"name" : "ios",
"version" : "11.0"
},
{
"name" : "tvos",
"version" : "11.0"
},
{
"name" : "watchos",
"version" : "3.0"
}
],
"products" : [
{
"name" : "Fetch",
"targets" : [
"Fetch"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "FetchTests",
"module_type" : "SwiftTarget",
"name" : "FetchTests",
"path" : "Tests/FetchTests",
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/FetchTests/TestFiles",
"rule" : {
"copy" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/FetchTests/modela.json",
"rule" : {
"process" : {
}
}
}
],
"sources" : [
"Async Await/AsyncCacheTests.swift",
"Async Await/AsyncTests.swift",
"Cache/CacheTests.swift",
"Cache/DiskCacheTests.swift",
"Cache/HybridCacheTests.swift",
"Cache/MemoryCacheTests.swift",
"CancelTests.swift",
"CustomValidationTests.swift",
"DispatchQueueTests.swift",
"FullPathTests.swift",
"IgnoreBodyTests.swift",
"MultipleStubsTests.swift",
"NestingTests.swift",
"ShouldStubTests.swift",
"StubProviderTests.swift",
"StubTests.swift",
"TestAPI.swift",
"URLRequestTests.swift"
],
"target_dependencies" : [
"Fetch"
],
"type" : "test"
},
{
"c99name" : "Fetch",
"module_type" : "SwiftTarget",
"name" : "Fetch",
"path" : "Sources/Fetch",
"product_dependencies" : [
"Alamofire"
],
"product_memberships" : [
"Fetch"
],
"sources" : [
"Cache/Cache.swift",
"Cache/Cacheable.swift",
"Cache/DiskCache.swift",
"Cache/Expiration.swift",
"Cache/HybridCache.swift",
"Cache/MemoryCache.swift",
"Extensions/Fetch+Async.swift",
"Extensions/Fetch+Combine.swift",
"Network/APIClient.swift",
"Network/APILogger.swift",
"Network/FetchError.swift",
"Network/Resource+Fetch.swift",
"Network/Resource.swift",
"Stub/AlternatingStub.swift",
"Stub/ClosureStub.swift",
"Stub/RandomStub.swift",
"Stub/Stub.swift",
"Stub/StubbedURL.swift",
"StubProvider/StubProvider.swift",
"Utilities/AnyEncodable.swift",
"Utilities/Crypto.swift",
"Utilities/Decoder+Keys.swift",
"Utilities/HTTPContentType.swift",
"Utilities/IgnoreBody.swift",
"Utilities/JSONEncoder+ResourceEncoder.swift",
"Utilities/RequestToken.swift",
"Utilities/ResourceDecoderProtocol.swift",
"Utilities/ResourceEncoderProtocol.swift"
],
"type" : "library"
}
],
"tools_version" : "5.5"
}
Done.