Build Information
Failed to build HTTPClient, reference main (960cbb
), with Swift 5.9 for watchOS using Xcode 15.2 on 15 Sep 2024 19:28:37 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-15.2.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme HTTPClient-Package -destination generic/platform=watchOS
Build Log
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:42:25: warning: reference to class property 'stubbedRequestHandler' is not concurrency-safe because it involves shared mutable state
URLProtocolMock.stubbedRequestHandler = { request in
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:14:23: note: class property declared here
public static var stubbedRequestHandler: ((URLRequest) throws -> (HTTPURLResponse, Data?))?
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:59:9: error: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context
waitForExpectations(timeout: 1, handler: nil)
^
XCTest.XCTestCase:5:26: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable (Error?) -> Void)? = nil)
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:36:10: note: add '@MainActor' to make instance method 'testRunWithSuccessAndEmptyDataBody()' part of global actor 'MainActor'
func testRunWithSuccessAndEmptyDataBody() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:66:40: warning: reference to class property 'startLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.startLoadingCallsCount, 1, "It calls `startLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:8:23: note: class property declared here
public static var startLoadingCallsCount: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:67:40: warning: reference to class property 'stopLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.stopLoadingCallsCount, 1, "It calls `stopLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:9:23: note: class property declared here
public static var stopLoadingCallsCount: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:79:25: warning: reference to class property 'stubbedRequestHandler' is not concurrency-safe because it involves shared mutable state
URLProtocolMock.stubbedRequestHandler = { request in
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:14:23: note: class property declared here
public static var stubbedRequestHandler: ((URLRequest) throws -> (HTTPURLResponse, Data?))?
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:96:9: error: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context
waitForExpectations(timeout: 1, handler: nil)
^
XCTest.XCTestCase:5:26: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable (Error?) -> Void)? = nil)
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:70:10: note: add '@MainActor' to make instance method 'testRunWithSuccessAndNonEmptyDataBody()' part of global actor 'MainActor'
func testRunWithSuccessAndNonEmptyDataBody() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:103:40: warning: reference to class property 'startLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.startLoadingCallsCount, 1, "It calls `startLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:8:23: note: class property declared here
public static var startLoadingCallsCount: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:104:40: warning: reference to class property 'stopLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.stopLoadingCallsCount, 1, "It calls `stopLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:9:23: note: class property declared here
public static var stopLoadingCallsCount: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:115:25: warning: reference to class property 'stubbedRequestHandler' is not concurrency-safe because it involves shared mutable state
URLProtocolMock.stubbedRequestHandler = { request in
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:14:23: note: class property declared here
public static var stubbedRequestHandler: ((URLRequest) throws -> (HTTPURLResponse, Data?))?
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:132:9: error: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context
waitForExpectations(timeout: 1, handler: nil)
^
XCTest.XCTestCase:5:26: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable (Error?) -> Void)? = nil)
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:109:10: note: add '@MainActor' to make instance method 'testRunWithFailureAndEmptyDataBody()' part of global actor 'MainActor'
func testRunWithFailureAndEmptyDataBody() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:139:40: warning: reference to class property 'startLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.startLoadingCallsCount, 1, "It calls `startLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:8:23: note: class property declared here
public static var startLoadingCallsCount: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:140:40: warning: reference to class property 'stopLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.stopLoadingCallsCount, 1, "It calls `stopLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:9:23: note: class property declared here
public static var stopLoadingCallsCount: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:152:25: warning: reference to class property 'stubbedRequestHandler' is not concurrency-safe because it involves shared mutable state
URLProtocolMock.stubbedRequestHandler = { request in
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:14:23: note: class property declared here
public static var stubbedRequestHandler: ((URLRequest) throws -> (HTTPURLResponse, Data?))?
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:169:9: error: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context
waitForExpectations(timeout: 1, handler: nil)
^
XCTest.XCTestCase:5:26: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable (Error?) -> Void)? = nil)
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:143:10: note: add '@MainActor' to make instance method 'testRunWithFailureAndNonEmptyDataBody()' part of global actor 'MainActor'
func testRunWithFailureAndNonEmptyDataBody() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:176:40: warning: reference to class property 'startLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.startLoadingCallsCount, 1, "It calls `startLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:8:23: note: class property declared here
public static var startLoadingCallsCount: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:177:40: warning: reference to class property 'stopLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.stopLoadingCallsCount, 1, "It calls `stopLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:9:23: note: class property declared here
public static var stopLoadingCallsCount: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:185:25: warning: reference to class property 'stubbedError' is not concurrency-safe because it involves shared mutable state
URLProtocolMock.stubbedError = FakeError()
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:13:23: note: class property declared here
public static var stubbedError: Error?
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:202:9: error: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context
waitForExpectations(timeout: 1, handler: nil)
^
XCTest.XCTestCase:5:26: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable (Error?) -> Void)? = nil)
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:182:10: note: add '@MainActor' to make instance method 'testRunWithError()' part of global actor 'MainActor'
func testRunWithError() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:211:40: warning: reference to class property 'startLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.startLoadingCallsCount, 1, "It calls `startLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:8:23: note: class property declared here
public static var startLoadingCallsCount: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:212:40: warning: reference to class property 'stopLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.stopLoadingCallsCount, 1, "It calls `stopLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:9:23: note: class property declared here
public static var stopLoadingCallsCount: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:224:25: warning: reference to class property 'stubbedRequestHandler' is not concurrency-safe because it involves shared mutable state
URLProtocolMock.stubbedRequestHandler = { request in
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:14:23: note: class property declared here
public static var stubbedRequestHandler: ((URLRequest) throws -> (HTTPURLResponse, Data?))?
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:243:9: error: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context
waitForExpectations(timeout: 1, handler: nil)
^
XCTest.XCTestCase:5:26: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable (Error?) -> Void)? = nil)
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:215:10: note: add '@MainActor' to make instance method 'testRunWithFailureByDecodingError()' part of global actor 'MainActor'
func testRunWithFailureByDecodingError() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:252:40: warning: reference to class property 'startLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.startLoadingCallsCount, 1, "It calls `startLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:8:23: note: class property declared here
public static var startLoadingCallsCount: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:253:40: warning: reference to class property 'stopLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.stopLoadingCallsCount, 1, "It calls `stopLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:9:23: note: class property declared here
public static var stopLoadingCallsCount: Int = 0
^
SwiftCompile normal arm64 Compiling\ CombineHTTPClientTests.swift /Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift (in target 'CombineHTTPClientTests' from project 'HTTPClient')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64/CombineHTTPClientTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64/CombineHTTPClientTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64/CombineHTTPClientTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64/CombineHTTPClientTests.dia -target arm64-apple-watchos6.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64/CombineHTTPClientTests_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -empty-abi-descriptor -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 -resource-dir /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.2-21S355-1a03c8d25fc3596eb74c01d649b42752.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CombineHTTPClientTests -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.2 -target-sdk-name watchos10.2 -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -parse-as-library -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64/CombineHTTPClientTests.o -index-unit-output-path /HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64/CombineHTTPClientTests.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/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift (in target 'CombineHTTPClientTests' from project 'HTTPClient')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64/CombineHTTPClientTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64/CombineHTTPClientTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64/CombineHTTPClientTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64/CombineHTTPClientTests.dia -target arm64-apple-watchos6.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64/CombineHTTPClientTests_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -empty-abi-descriptor -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 -resource-dir /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.2-21S355-1a03c8d25fc3596eb74c01d649b42752.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CombineHTTPClientTests -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.2 -target-sdk-name watchos10.2 -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -parse-as-library -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64/CombineHTTPClientTests.o -index-unit-output-path /HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64/CombineHTTPClientTests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:42:25: warning: reference to class property 'stubbedRequestHandler' is not concurrency-safe because it involves shared mutable state
URLProtocolMock.stubbedRequestHandler = { request in
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:14:23: note: class property declared here
public static var stubbedRequestHandler: ((URLRequest) throws -> (HTTPURLResponse, Data?))?
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:59:9: error: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context
waitForExpectations(timeout: 1, handler: nil)
^
XCTest.XCTestCase:5:26: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable (Error?) -> Void)? = nil)
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:36:10: note: add '@MainActor' to make instance method 'testRunWithSuccessAndEmptyDataBody()' part of global actor 'MainActor'
func testRunWithSuccessAndEmptyDataBody() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:66:40: warning: reference to class property 'startLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.startLoadingCallsCount, 1, "It calls `startLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:8:23: note: class property declared here
public static var startLoadingCallsCount: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:67:40: warning: reference to class property 'stopLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.stopLoadingCallsCount, 1, "It calls `stopLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:9:23: note: class property declared here
public static var stopLoadingCallsCount: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:79:25: warning: reference to class property 'stubbedRequestHandler' is not concurrency-safe because it involves shared mutable state
URLProtocolMock.stubbedRequestHandler = { request in
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:14:23: note: class property declared here
public static var stubbedRequestHandler: ((URLRequest) throws -> (HTTPURLResponse, Data?))?
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:96:9: error: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context
waitForExpectations(timeout: 1, handler: nil)
^
XCTest.XCTestCase:5:26: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable (Error?) -> Void)? = nil)
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:70:10: note: add '@MainActor' to make instance method 'testRunWithSuccessAndNonEmptyDataBody()' part of global actor 'MainActor'
func testRunWithSuccessAndNonEmptyDataBody() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:103:40: warning: reference to class property 'startLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.startLoadingCallsCount, 1, "It calls `startLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:8:23: note: class property declared here
public static var startLoadingCallsCount: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:104:40: warning: reference to class property 'stopLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.stopLoadingCallsCount, 1, "It calls `stopLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:9:23: note: class property declared here
public static var stopLoadingCallsCount: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:115:25: warning: reference to class property 'stubbedRequestHandler' is not concurrency-safe because it involves shared mutable state
URLProtocolMock.stubbedRequestHandler = { request in
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:14:23: note: class property declared here
public static var stubbedRequestHandler: ((URLRequest) throws -> (HTTPURLResponse, Data?))?
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:132:9: error: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context
waitForExpectations(timeout: 1, handler: nil)
^
XCTest.XCTestCase:5:26: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable (Error?) -> Void)? = nil)
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:109:10: note: add '@MainActor' to make instance method 'testRunWithFailureAndEmptyDataBody()' part of global actor 'MainActor'
func testRunWithFailureAndEmptyDataBody() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:139:40: warning: reference to class property 'startLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.startLoadingCallsCount, 1, "It calls `startLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:8:23: note: class property declared here
public static var startLoadingCallsCount: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:140:40: warning: reference to class property 'stopLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.stopLoadingCallsCount, 1, "It calls `stopLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:9:23: note: class property declared here
public static var stopLoadingCallsCount: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:152:25: warning: reference to class property 'stubbedRequestHandler' is not concurrency-safe because it involves shared mutable state
URLProtocolMock.stubbedRequestHandler = { request in
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:14:23: note: class property declared here
public static var stubbedRequestHandler: ((URLRequest) throws -> (HTTPURLResponse, Data?))?
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:169:9: error: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context
waitForExpectations(timeout: 1, handler: nil)
^
XCTest.XCTestCase:5:26: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable (Error?) -> Void)? = nil)
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:143:10: note: add '@MainActor' to make instance method 'testRunWithFailureAndNonEmptyDataBody()' part of global actor 'MainActor'
func testRunWithFailureAndNonEmptyDataBody() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:176:40: warning: reference to class property 'startLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.startLoadingCallsCount, 1, "It calls `startLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:8:23: note: class property declared here
public static var startLoadingCallsCount: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:177:40: warning: reference to class property 'stopLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.stopLoadingCallsCount, 1, "It calls `stopLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:9:23: note: class property declared here
public static var stopLoadingCallsCount: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:185:25: warning: reference to class property 'stubbedError' is not concurrency-safe because it involves shared mutable state
URLProtocolMock.stubbedError = FakeError()
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:13:23: note: class property declared here
public static var stubbedError: Error?
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:202:9: error: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context
waitForExpectations(timeout: 1, handler: nil)
^
XCTest.XCTestCase:5:26: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable (Error?) -> Void)? = nil)
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:182:10: note: add '@MainActor' to make instance method 'testRunWithError()' part of global actor 'MainActor'
func testRunWithError() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:211:40: warning: reference to class property 'startLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.startLoadingCallsCount, 1, "It calls `startLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:8:23: note: class property declared here
public static var startLoadingCallsCount: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:212:40: warning: reference to class property 'stopLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.stopLoadingCallsCount, 1, "It calls `stopLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:9:23: note: class property declared here
public static var stopLoadingCallsCount: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:224:25: warning: reference to class property 'stubbedRequestHandler' is not concurrency-safe because it involves shared mutable state
URLProtocolMock.stubbedRequestHandler = { request in
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:14:23: note: class property declared here
public static var stubbedRequestHandler: ((URLRequest) throws -> (HTTPURLResponse, Data?))?
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:243:9: error: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context
waitForExpectations(timeout: 1, handler: nil)
^
XCTest.XCTestCase:5:26: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable (Error?) -> Void)? = nil)
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:215:10: note: add '@MainActor' to make instance method 'testRunWithFailureByDecodingError()' part of global actor 'MainActor'
func testRunWithFailureByDecodingError() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:252:40: warning: reference to class property 'startLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.startLoadingCallsCount, 1, "It calls `startLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:8:23: note: class property declared here
public static var startLoadingCallsCount: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:253:40: warning: reference to class property 'stopLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.stopLoadingCallsCount, 1, "It calls `stopLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:9:23: note: class property declared here
public static var stopLoadingCallsCount: Int = 0
^
SwiftCompile normal arm64_32 Compiling\ CombineHTTPClientTests.swift /Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift (in target 'CombineHTTPClientTests' from project 'HTTPClient')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64_32/CombineHTTPClientTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64_32/CombineHTTPClientTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64_32/CombineHTTPClientTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64_32/CombineHTTPClientTests.dia -target arm64_32-apple-watchos6.0 -enable-objc-interop -sdk /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64_32/CombineHTTPClientTests_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -empty-abi-descriptor -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 -resource-dir /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.2-21S355-1a03c8d25fc3596eb74c01d649b42752.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CombineHTTPClientTests -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.2 -target-sdk-name watchos10.2 -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -parse-as-library -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64_32/CombineHTTPClientTests.o -index-unit-output-path /HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64_32/CombineHTTPClientTests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift (in target 'CombineHTTPClientTests' from project 'HTTPClient')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64_32/CombineHTTPClientTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64_32/CombineHTTPClientTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64_32/CombineHTTPClientTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64_32/CombineHTTPClientTests.dia -target arm64_32-apple-watchos6.0 -enable-objc-interop -sdk /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64_32/CombineHTTPClientTests_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -empty-abi-descriptor -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 -resource-dir /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.2-21S355-1a03c8d25fc3596eb74c01d649b42752.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name CombineHTTPClientTests -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.2 -target-sdk-name watchos10.2 -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -parse-as-library -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64_32/CombineHTTPClientTests.o -index-unit-output-path /HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64_32/CombineHTTPClientTests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:42:25: warning: reference to class property 'stubbedRequestHandler' is not concurrency-safe because it involves shared mutable state
URLProtocolMock.stubbedRequestHandler = { request in
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:14:23: note: class property declared here
public static var stubbedRequestHandler: ((URLRequest) throws -> (HTTPURLResponse, Data?))?
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:59:9: error: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context
waitForExpectations(timeout: 1, handler: nil)
^
XCTest.XCTestCase:5:26: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable (Error?) -> Void)? = nil)
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:36:10: note: add '@MainActor' to make instance method 'testRunWithSuccessAndEmptyDataBody()' part of global actor 'MainActor'
func testRunWithSuccessAndEmptyDataBody() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:66:40: warning: reference to class property 'startLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.startLoadingCallsCount, 1, "It calls `startLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:8:23: note: class property declared here
public static var startLoadingCallsCount: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:67:40: warning: reference to class property 'stopLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.stopLoadingCallsCount, 1, "It calls `stopLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:9:23: note: class property declared here
public static var stopLoadingCallsCount: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:79:25: warning: reference to class property 'stubbedRequestHandler' is not concurrency-safe because it involves shared mutable state
URLProtocolMock.stubbedRequestHandler = { request in
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:14:23: note: class property declared here
public static var stubbedRequestHandler: ((URLRequest) throws -> (HTTPURLResponse, Data?))?
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:96:9: error: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context
waitForExpectations(timeout: 1, handler: nil)
^
XCTest.XCTestCase:5:26: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable (Error?) -> Void)? = nil)
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:70:10: note: add '@MainActor' to make instance method 'testRunWithSuccessAndNonEmptyDataBody()' part of global actor 'MainActor'
func testRunWithSuccessAndNonEmptyDataBody() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:103:40: warning: reference to class property 'startLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.startLoadingCallsCount, 1, "It calls `startLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:8:23: note: class property declared here
public static var startLoadingCallsCount: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:104:40: warning: reference to class property 'stopLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.stopLoadingCallsCount, 1, "It calls `stopLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:9:23: note: class property declared here
public static var stopLoadingCallsCount: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:115:25: warning: reference to class property 'stubbedRequestHandler' is not concurrency-safe because it involves shared mutable state
URLProtocolMock.stubbedRequestHandler = { request in
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:14:23: note: class property declared here
public static var stubbedRequestHandler: ((URLRequest) throws -> (HTTPURLResponse, Data?))?
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:132:9: error: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context
waitForExpectations(timeout: 1, handler: nil)
^
XCTest.XCTestCase:5:26: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable (Error?) -> Void)? = nil)
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:109:10: note: add '@MainActor' to make instance method 'testRunWithFailureAndEmptyDataBody()' part of global actor 'MainActor'
func testRunWithFailureAndEmptyDataBody() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:139:40: warning: reference to class property 'startLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.startLoadingCallsCount, 1, "It calls `startLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:8:23: note: class property declared here
public static var startLoadingCallsCount: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:140:40: warning: reference to class property 'stopLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.stopLoadingCallsCount, 1, "It calls `stopLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:9:23: note: class property declared here
public static var stopLoadingCallsCount: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:152:25: warning: reference to class property 'stubbedRequestHandler' is not concurrency-safe because it involves shared mutable state
URLProtocolMock.stubbedRequestHandler = { request in
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:14:23: note: class property declared here
public static var stubbedRequestHandler: ((URLRequest) throws -> (HTTPURLResponse, Data?))?
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:169:9: error: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context
waitForExpectations(timeout: 1, handler: nil)
^
XCTest.XCTestCase:5:26: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable (Error?) -> Void)? = nil)
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:143:10: note: add '@MainActor' to make instance method 'testRunWithFailureAndNonEmptyDataBody()' part of global actor 'MainActor'
func testRunWithFailureAndNonEmptyDataBody() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:176:40: warning: reference to class property 'startLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.startLoadingCallsCount, 1, "It calls `startLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:8:23: note: class property declared here
public static var startLoadingCallsCount: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:177:40: warning: reference to class property 'stopLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.stopLoadingCallsCount, 1, "It calls `stopLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:9:23: note: class property declared here
public static var stopLoadingCallsCount: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:185:25: warning: reference to class property 'stubbedError' is not concurrency-safe because it involves shared mutable state
URLProtocolMock.stubbedError = FakeError()
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:13:23: note: class property declared here
public static var stubbedError: Error?
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:202:9: error: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context
waitForExpectations(timeout: 1, handler: nil)
^
XCTest.XCTestCase:5:26: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable (Error?) -> Void)? = nil)
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:182:10: note: add '@MainActor' to make instance method 'testRunWithError()' part of global actor 'MainActor'
func testRunWithError() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:211:40: warning: reference to class property 'startLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.startLoadingCallsCount, 1, "It calls `startLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:8:23: note: class property declared here
public static var startLoadingCallsCount: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:212:40: warning: reference to class property 'stopLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.stopLoadingCallsCount, 1, "It calls `stopLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:9:23: note: class property declared here
public static var stopLoadingCallsCount: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:224:25: warning: reference to class property 'stubbedRequestHandler' is not concurrency-safe because it involves shared mutable state
URLProtocolMock.stubbedRequestHandler = { request in
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:14:23: note: class property declared here
public static var stubbedRequestHandler: ((URLRequest) throws -> (HTTPURLResponse, Data?))?
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:243:9: error: call to main actor-isolated instance method 'waitForExpectations(timeout:handler:)' in a synchronous nonisolated context
waitForExpectations(timeout: 1, handler: nil)
^
XCTest.XCTestCase:5:26: note: calls to instance method 'waitForExpectations(timeout:handler:)' from outside of its actor context are implicitly asynchronous
@MainActor open func waitForExpectations(timeout: TimeInterval, handler: (@Sendable (Error?) -> Void)? = nil)
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:215:10: note: add '@MainActor' to make instance method 'testRunWithFailureByDecodingError()' part of global actor 'MainActor'
func testRunWithFailureByDecodingError() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:252:40: warning: reference to class property 'startLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.startLoadingCallsCount, 1, "It calls `startLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:8:23: note: class property declared here
public static var startLoadingCallsCount: Int = 0
^
/Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift:253:40: warning: reference to class property 'stopLoadingCallsCount' is not concurrency-safe because it involves shared mutable state
XCTAssertEqual(URLProtocolMock.stopLoadingCallsCount, 1, "It calls `stopLoading` once")
^
/Users/admin/builder/spi-builder-workspace/Sources/HTTPClientTestSupport/Mocks/MockURLProtocol.swift:9:23: note: class property declared here
public static var stopLoadingCallsCount: Int = 0
^
SwiftEmitModule normal arm64 Emitting\ module\ for\ HTTPClientCoreTests (in target 'HTTPClientCoreTests' from project 'HTTPClient')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/DataExtensionTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/HTTPRequestBuilderTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/ResultExtensionTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/SetExtensionTests.swift -target arm64-apple-watchos6.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/arm64/HTTPClientCoreTests_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -empty-abi-descriptor -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 -resource-dir /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.2-21S355-1a03c8d25fc3596eb74c01d649b42752.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name HTTPClientCoreTests -disable-clang-spi -target-sdk-version 10.2 -target-sdk-name watchos10.2 -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/arm64/HTTPClientCoreTests.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/arm64/HTTPClientCoreTests.swiftsourceinfo -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/arm64/HTTPClientCoreTests-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/arm64/HTTPClientCoreTests-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/arm64/HTTPClientCoreTests.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/arm64/HTTPClientCoreTests.abi.json
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineHTTPClient.o normal arm64\ armv7k\ arm64_32 (in target 'CombineHTTPClient' from project 'HTTPClient')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClient.build/Objects-normal/arm64/Binary/CombineHTTPClient.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClient.build/Objects-normal/armv7k/Binary/CombineHTTPClient.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClient.build/Objects-normal/arm64_32/Binary/CombineHTTPClient.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineHTTPClient.o
SwiftEmitModule normal armv7k Emitting\ module\ for\ HTTPClientCoreTests (in target 'HTTPClientCoreTests' from project 'HTTPClient')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/DataExtensionTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/HTTPRequestBuilderTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/ResultExtensionTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/SetExtensionTests.swift -target armv7k-apple-watchos6.0 -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/armv7k/HTTPClientCoreTests_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -empty-abi-descriptor -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 -resource-dir /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.2-21S355-1a03c8d25fc3596eb74c01d649b42752.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name HTTPClientCoreTests -disable-clang-spi -target-sdk-version 10.2 -target-sdk-name watchos10.2 -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/armv7k/HTTPClientCoreTests.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/armv7k/HTTPClientCoreTests.swiftsourceinfo -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/armv7k/HTTPClientCoreTests-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/armv7k/HTTPClientCoreTests-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/armv7k/HTTPClientCoreTests.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/armv7k/HTTPClientCoreTests.abi.json
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ HTTPClientCoreTests (in target 'HTTPClientCoreTests' from project 'HTTPClient')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/DataExtensionTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/HTTPRequestBuilderTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/ResultExtensionTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/SetExtensionTests.swift -target arm64_32-apple-watchos6.0 -enable-objc-interop -sdk /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/arm64_32/HTTPClientCoreTests_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -empty-abi-descriptor -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 -resource-dir /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.2-21S355-1a03c8d25fc3596eb74c01d649b42752.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name HTTPClientCoreTests -disable-clang-spi -target-sdk-version 10.2 -target-sdk-name watchos10.2 -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/arm64_32/HTTPClientCoreTests.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/arm64_32/HTTPClientCoreTests.swiftsourceinfo -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/arm64_32/HTTPClientCoreTests-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/arm64_32/HTTPClientCoreTests-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/arm64_32/HTTPClientCoreTests.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/arm64_32/HTTPClientCoreTests.abi.json
SwiftCompile normal armv7k Compiling\ HTTPRequestBuilderTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/HTTPRequestBuilderTests.swift (in target 'HTTPClientCoreTests' from project 'HTTPClient')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/DataExtensionTests.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/HTTPRequestBuilderTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/ResultExtensionTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/SetExtensionTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/armv7k/HTTPRequestBuilderTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/armv7k/HTTPRequestBuilderTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/armv7k/HTTPRequestBuilderTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/armv7k/HTTPRequestBuilderTests.dia -target armv7k-apple-watchos6.0 -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/armv7k/HTTPClientCoreTests_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -empty-abi-descriptor -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 -resource-dir /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.2-21S355-1a03c8d25fc3596eb74c01d649b42752.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name HTTPClientCoreTests -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.2 -target-sdk-name watchos10.2 -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/armv7k/HTTPRequestBuilderTests.o -index-unit-output-path /HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/armv7k/HTTPRequestBuilderTests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/HTTPRequestBuilderTests.swift (in target 'HTTPClientCoreTests' from project 'HTTPClient')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/DataExtensionTests.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/HTTPRequestBuilderTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/ResultExtensionTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/SetExtensionTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/armv7k/HTTPRequestBuilderTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/armv7k/HTTPRequestBuilderTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/armv7k/HTTPRequestBuilderTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/armv7k/HTTPRequestBuilderTests.dia -target armv7k-apple-watchos6.0 -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/armv7k/HTTPClientCoreTests_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -empty-abi-descriptor -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 -resource-dir /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.2-21S355-1a03c8d25fc3596eb74c01d649b42752.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name HTTPClientCoreTests -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.2 -target-sdk-name watchos10.2 -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/armv7k/HTTPRequestBuilderTests.o -index-unit-output-path /HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/armv7k/HTTPRequestBuilderTests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftEmitModule normal arm64 Emitting\ module\ for\ HTTPClientTests (in target 'HTTPClientTests' from project 'HTTPClient')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientTests/HTTPClientTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientTests/HTTPResponseDecoderTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientTests/HTTPResponseHandlerTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientTests/Helpers/Helpers.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientTests/Mocks/Mocks.swift -target arm64-apple-watchos6.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/arm64/HTTPClientTests_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -empty-abi-descriptor -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 -resource-dir /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.2-21S355-1a03c8d25fc3596eb74c01d649b42752.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name HTTPClientTests -disable-clang-spi -target-sdk-version 10.2 -target-sdk-name watchos10.2 -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/arm64/HTTPClientTests.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/arm64/HTTPClientTests.swiftsourceinfo -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/arm64/HTTPClientTests-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/arm64/HTTPClientTests-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/arm64/HTTPClientTests.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/arm64/HTTPClientTests.abi.json
SwiftDriverJobDiscovery normal arm64 Emitting module for CombineHTTPClientTests (in target 'CombineHTTPClientTests' from project 'HTTPClient')
SwiftEmitModule normal armv7k Emitting\ module\ for\ HTTPClientTests (in target 'HTTPClientTests' from project 'HTTPClient')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientTests/HTTPClientTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientTests/HTTPResponseDecoderTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientTests/HTTPResponseHandlerTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientTests/Helpers/Helpers.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientTests/Mocks/Mocks.swift -target armv7k-apple-watchos6.0 -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/armv7k/HTTPClientTests_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -empty-abi-descriptor -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 -resource-dir /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.2-21S355-1a03c8d25fc3596eb74c01d649b42752.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name HTTPClientTests -disable-clang-spi -target-sdk-version 10.2 -target-sdk-name watchos10.2 -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/armv7k/HTTPClientTests.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/armv7k/HTTPClientTests.swiftsourceinfo -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/armv7k/HTTPClientTests-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/armv7k/HTTPClientTests-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/armv7k/HTTPClientTests.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/armv7k/HTTPClientTests.abi.json
SwiftDriverJobDiscovery normal armv7k Emitting module for CombineHTTPClientTests (in target 'CombineHTTPClientTests' from project 'HTTPClient')
SwiftDriverJobDiscovery normal arm64_32 Emitting module for CombineHTTPClientTests (in target 'CombineHTTPClientTests' from project 'HTTPClient')
SwiftDriver\ Compilation\ Requirements CombineHTTPClientTests normal armv7k com.apple.xcode.tools.swift.compiler (in target 'CombineHTTPClientTests' from project 'HTTPClient')
cd /Users/admin/builder/spi-builder-workspace
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CombineHTTPClientTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/armv7k/CombineHTTPClientTests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -enable-experimental-feature StrictConcurrency -sdk /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk -target armv7k-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.2-21S355-1a03c8d25fc3596eb74c01d649b42752.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/armv7k/CombineHTTPClientTests-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/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/armv7k/CombineHTTPClientTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/armv7k/CombineHTTPClientTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation\ Requirements CombineHTTPClientTests normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'CombineHTTPClientTests' from project 'HTTPClient')
cd /Users/admin/builder/spi-builder-workspace
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CombineHTTPClientTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64_32/CombineHTTPClientTests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -enable-experimental-feature StrictConcurrency -sdk /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk -target arm64_32-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.2-21S355-1a03c8d25fc3596eb74c01d649b42752.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64_32/CombineHTTPClientTests-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/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64_32/CombineHTTPClientTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64_32/CombineHTTPClientTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation\ Requirements CombineHTTPClientTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CombineHTTPClientTests' from project 'HTTPClient')
cd /Users/admin/builder/spi-builder-workspace
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CombineHTTPClientTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64/CombineHTTPClientTests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -enable-experimental-feature StrictConcurrency -sdk /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk -target arm64-apple-watchos6.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.2-21S355-1a03c8d25fc3596eb74c01d649b42752.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64/CombineHTTPClientTests-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/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64/CombineHTTPClientTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64/CombineHTTPClientTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineHTTPClientTests.swiftmodule/armv7k-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/armv7k/CombineHTTPClientTests.swiftmodule (in target 'CombineHTTPClientTests' from project 'HTTPClient')
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/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/armv7k/CombineHTTPClientTests.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineHTTPClientTests.swiftmodule/armv7k-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineHTTPClientTests.swiftmodule/armv7k-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/armv7k/CombineHTTPClientTests.swiftdoc (in target 'CombineHTTPClientTests' from project 'HTTPClient')
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/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/armv7k/CombineHTTPClientTests.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineHTTPClientTests.swiftmodule/armv7k-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineHTTPClientTests.swiftmodule/armv7k-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/armv7k/CombineHTTPClientTests.abi.json (in target 'CombineHTTPClientTests' from project 'HTTPClient')
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/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/armv7k/CombineHTTPClientTests.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineHTTPClientTests.swiftmodule/armv7k-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineHTTPClientTests.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/armv7k/CombineHTTPClientTests.swiftsourceinfo (in target 'CombineHTTPClientTests' from project 'HTTPClient')
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/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/armv7k/CombineHTTPClientTests.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineHTTPClientTests.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo
SwiftCompile normal armv7k Compiling\ Mocks.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientTests/Mocks/Mocks.swift (in target 'HTTPClientTests' from project 'HTTPClient')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientTests/HTTPClientTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientTests/HTTPResponseDecoderTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientTests/HTTPResponseHandlerTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientTests/Helpers/Helpers.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientTests/Mocks/Mocks.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/armv7k/Mocks.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/armv7k/Mocks.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/armv7k/Mocks.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/armv7k/Mocks.dia -target armv7k-apple-watchos6.0 -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/armv7k/HTTPClientTests_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -empty-abi-descriptor -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 -resource-dir /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.2-21S355-1a03c8d25fc3596eb74c01d649b42752.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name HTTPClientTests -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.2 -target-sdk-name watchos10.2 -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/armv7k/Mocks.o -index-unit-output-path /HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/armv7k/Mocks.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientTests/Mocks/Mocks.swift (in target 'HTTPClientTests' from project 'HTTPClient')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientTests/HTTPClientTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientTests/HTTPResponseDecoderTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientTests/HTTPResponseHandlerTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientTests/Helpers/Helpers.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientTests/Mocks/Mocks.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/armv7k/Mocks.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/armv7k/Mocks.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/armv7k/Mocks.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/armv7k/Mocks.dia -target armv7k-apple-watchos6.0 -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/armv7k/HTTPClientTests_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -empty-abi-descriptor -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 -resource-dir /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.2-21S355-1a03c8d25fc3596eb74c01d649b42752.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name HTTPClientTests -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.2 -target-sdk-name watchos10.2 -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/armv7k/Mocks.o -index-unit-output-path /HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/armv7k/Mocks.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ Mocks.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientTests/Mocks/Mocks.swift (in target 'HTTPClientTests' from project 'HTTPClient')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientTests/HTTPClientTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientTests/HTTPResponseDecoderTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientTests/HTTPResponseHandlerTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientTests/Helpers/Helpers.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientTests/Mocks/Mocks.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/arm64/Mocks.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/arm64/Mocks.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/arm64/Mocks.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/arm64/Mocks.dia -target arm64-apple-watchos6.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/arm64/HTTPClientTests_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -empty-abi-descriptor -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 -resource-dir /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.2-21S355-1a03c8d25fc3596eb74c01d649b42752.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name HTTPClientTests -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.2 -target-sdk-name watchos10.2 -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/arm64/Mocks.o -index-unit-output-path /HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/arm64/Mocks.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/Tests/HTTPClientTests/Mocks/Mocks.swift (in target 'HTTPClientTests' from project 'HTTPClient')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientTests/HTTPClientTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientTests/HTTPResponseDecoderTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientTests/HTTPResponseHandlerTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientTests/Helpers/Helpers.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientTests/Mocks/Mocks.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/arm64/Mocks.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/arm64/Mocks.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/arm64/Mocks.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/arm64/Mocks.dia -target arm64-apple-watchos6.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/arm64/HTTPClientTests_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -empty-abi-descriptor -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 -resource-dir /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.2-21S355-1a03c8d25fc3596eb74c01d649b42752.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name HTTPClientTests -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.2 -target-sdk-name watchos10.2 -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/arm64/Mocks.o -index-unit-output-path /HTTPClient.build/Debug-watchos/HTTPClientTests.build/Objects-normal/arm64/Mocks.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineHTTPClientTests.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64_32/CombineHTTPClientTests.swiftmodule (in target 'CombineHTTPClientTests' from project 'HTTPClient')
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/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64_32/CombineHTTPClientTests.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineHTTPClientTests.swiftmodule/arm64_32-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineHTTPClientTests.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64_32/CombineHTTPClientTests.swiftdoc (in target 'CombineHTTPClientTests' from project 'HTTPClient')
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/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64_32/CombineHTTPClientTests.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineHTTPClientTests.swiftmodule/arm64_32-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineHTTPClientTests.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64_32/CombineHTTPClientTests.abi.json (in target 'CombineHTTPClientTests' from project 'HTTPClient')
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/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64_32/CombineHTTPClientTests.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineHTTPClientTests.swiftmodule/arm64_32-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineHTTPClientTests.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64/CombineHTTPClientTests.swiftmodule (in target 'CombineHTTPClientTests' from project 'HTTPClient')
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/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64/CombineHTTPClientTests.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineHTTPClientTests.swiftmodule/arm64-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineHTTPClientTests.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64/CombineHTTPClientTests.swiftdoc (in target 'CombineHTTPClientTests' from project 'HTTPClient')
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/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64/CombineHTTPClientTests.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineHTTPClientTests.swiftmodule/arm64-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineHTTPClientTests.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64/CombineHTTPClientTests.abi.json (in target 'CombineHTTPClientTests' from project 'HTTPClient')
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/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64/CombineHTTPClientTests.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineHTTPClientTests.swiftmodule/arm64-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineHTTPClientTests.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64_32/CombineHTTPClientTests.swiftsourceinfo (in target 'CombineHTTPClientTests' from project 'HTTPClient')
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/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64_32/CombineHTTPClientTests.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineHTTPClientTests.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineHTTPClientTests.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64/CombineHTTPClientTests.swiftsourceinfo (in target 'CombineHTTPClientTests' from project 'HTTPClient')
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/HTTPClient.build/Debug-watchos/CombineHTTPClientTests.build/Objects-normal/arm64/CombineHTTPClientTests.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/CombineHTTPClientTests.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
SwiftCompile normal arm64_32 Compiling\ ResultExtensionTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/ResultExtensionTests.swift (in target 'HTTPClientCoreTests' from project 'HTTPClient')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/DataExtensionTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/HTTPRequestBuilderTests.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/ResultExtensionTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/SetExtensionTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/arm64_32/ResultExtensionTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/arm64_32/ResultExtensionTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/arm64_32/ResultExtensionTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/arm64_32/ResultExtensionTests.dia -target arm64_32-apple-watchos6.0 -enable-objc-interop -sdk /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/arm64_32/HTTPClientCoreTests_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -empty-abi-descriptor -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 -resource-dir /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.2-21S355-1a03c8d25fc3596eb74c01d649b42752.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name HTTPClientCoreTests -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.2 -target-sdk-name watchos10.2 -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/arm64_32/ResultExtensionTests.o -index-unit-output-path /HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/arm64_32/ResultExtensionTests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/ResultExtensionTests.swift (in target 'HTTPClientCoreTests' from project 'HTTPClient')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/DataExtensionTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/HTTPRequestBuilderTests.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/ResultExtensionTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/SetExtensionTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/arm64_32/ResultExtensionTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/arm64_32/ResultExtensionTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/arm64_32/ResultExtensionTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/arm64_32/ResultExtensionTests.dia -target arm64_32-apple-watchos6.0 -enable-objc-interop -sdk /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/arm64_32/HTTPClientCoreTests_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -empty-abi-descriptor -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 -resource-dir /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.2-21S355-1a03c8d25fc3596eb74c01d649b42752.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name HTTPClientCoreTests -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.2 -target-sdk-name watchos10.2 -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/arm64_32/ResultExtensionTests.o -index-unit-output-path /HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/arm64_32/ResultExtensionTests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal armv7k Compiling\ SetExtensionTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/SetExtensionTests.swift (in target 'HTTPClientCoreTests' from project 'HTTPClient')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/DataExtensionTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/HTTPRequestBuilderTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/ResultExtensionTests.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/SetExtensionTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/armv7k/SetExtensionTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/armv7k/SetExtensionTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/armv7k/SetExtensionTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/armv7k/SetExtensionTests.dia -target armv7k-apple-watchos6.0 -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/armv7k/HTTPClientCoreTests_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -empty-abi-descriptor -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 -resource-dir /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.2-21S355-1a03c8d25fc3596eb74c01d649b42752.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name HTTPClientCoreTests -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.2 -target-sdk-name watchos10.2 -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/armv7k/SetExtensionTests.o -index-unit-output-path /HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/armv7k/SetExtensionTests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ SetExtensionTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/SetExtensionTests.swift (in target 'HTTPClientCoreTests' from project 'HTTPClient')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftTaskExecution -- /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/DataExtensionTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/HTTPRequestBuilderTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/ResultExtensionTests.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/SetExtensionTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/arm64/SetExtensionTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/arm64/SetExtensionTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/arm64/SetExtensionTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/arm64/SetExtensionTests.dia -target arm64-apple-watchos6.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/arm64/HTTPClientCoreTests_const_extract_protocols.json -enable-experimental-feature StrictConcurrency -empty-abi-descriptor -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 -resource-dir /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos10.2-21S355-1a03c8d25fc3596eb74c01d649b42752.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name HTTPClientCoreTests -frontend-parseable-output -disable-clang-spi -target-sdk-version 10.2 -target-sdk-name watchos10.2 -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS10.2.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.2.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-15.2.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/arm64/SetExtensionTests.o -index-unit-output-path /HTTPClient.build/Debug-watchos/HTTPClientCoreTests.build/Objects-normal/arm64/SetExtensionTests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
Command SwiftCompile failed with a nonzero exit code
** BUILD FAILED **
The following build commands failed:
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift (in target 'CombineHTTPClientTests' from project 'HTTPClient')
SwiftCompile normal armv7k Compiling\ CombineHTTPClientTests.swift /Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift (in target 'CombineHTTPClientTests' from project 'HTTPClient')
SwiftCompile normal arm64 Compiling\ CombineHTTPClientTests.swift /Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift (in target 'CombineHTTPClientTests' from project 'HTTPClient')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift (in target 'CombineHTTPClientTests' from project 'HTTPClient')
SwiftCompile normal arm64_32 Compiling\ CombineHTTPClientTests.swift /Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift (in target 'CombineHTTPClientTests' from project 'HTTPClient')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Tests/CombineHTTPClientTests/CombineHTTPClientTests.swift (in target 'CombineHTTPClientTests' from project 'HTTPClient')
SwiftCompile normal arm64 Compiling\ SetExtensionTests.swift /Users/admin/builder/spi-builder-workspace/Tests/HTTPClientCoreTests/SetExtensionTests.swift (in target 'HTTPClientCoreTests' from project 'HTTPClient')
(7 failures)
BUILD FAILURE 5.9 watchOS