Build Information
Failed to build CleanroomDataTransactions, reference master (ca9ff5), with Swift 6.2 for Android on 18 Jun 2025 07:44:44 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/emaloney/cleanroomdatatransactions.git
Reference: master
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
From https://github.com/emaloney/cleanroomdatatransactions
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at ca9ff51 Release 8.1.0 (build 38)
Cloned https://github.com/emaloney/cleanroomdatatransactions.git
Revision (git rev-parse @):
ca9ff51fa888a9f48e6497fd9cad580b71b91e33
SUCCESS checkout https://github.com/emaloney/cleanroomdatatransactions.git at master
========================================
Build
========================================
Selected platform: android
Swift version: 6.2
Building package at path: $PWD
https://github.com/emaloney/cleanroomdatatransactions.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:b7c4a6b4153ff40ef9277e2157e708f835b8eb011095d53bd8db4594eb2b7798
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.2-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-8C5A4AE7A8CE2BA.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[3/20] Emitting module CleanroomDataTransactions
/host/spi-builder-workspace/Sources/DataTransactionError.swift:86:20: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
84 | /** Indicates an HTTP error response was received. Contains the response,
85 | its metadata, and the body of the response. */
86 | case httpError(HTTPURLResponse, HTTPResponseMetadata, Data)
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
87 | }
88 |
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
| `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/FetchImageTransaction.swift:19:51: error: cannot find type 'PlatformImageType' in scope
17 | `NSImage`.
18 | */
19 | open class FetchImageTransaction: HTTPTransaction<PlatformImageType>
| `- error: cannot find type 'PlatformImageType' in scope
20 | {
21 | /**
/host/spi-builder-workspace/Sources/HTTPRequestMethod.swift:82:11: error: cannot find type 'URLRequest' in scope
80 | }
81 |
82 | extension URLRequest
| `- error: cannot find type 'URLRequest' in scope
83 | {
84 | /**
/host/spi-builder-workspace/Sources/HTTPTransaction.swift:32:94: error: cannot find type 'URLRequest' in scope
30 | /** The signature of a function used to construct `URLRequest`s for
31 | the transaction. */
32 | public typealias RequestConstructor = (HTTPTransaction<ResponseDataType>, URL) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
33 |
34 | /** The signature of a function used to configure the `URLRequest` prior to
/host/spi-builder-workspace/Sources/HTTPTransaction.swift:36:86: error: cannot find type 'URLRequest' in scope
34 | /** The signature of a function used to configure the `URLRequest` prior to
35 | issuing the transaction. */
36 | public typealias RequestConfigurator = (HTTPTransaction<ResponseDataType>, inout URLRequest) throws -> Void
| `- error: cannot find type 'URLRequest' in scope
37 |
38 | /** The signature of a function used to approve HTTP redirects. */
/host/spi-builder-workspace/Sources/HTTPTransaction.swift:39:77: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
37 |
38 | /** The signature of a function used to approve HTTP redirects. */
39 | public typealias RedirectApprover = (HTTPTransaction<ResponseDataType>, HTTPURLResponse, URL) -> Bool
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
40 |
41 | /** The signature of a function used to validate the response received
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
| `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HTTPTransaction.swift:43:78: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
41 | /** The signature of a function used to validate the response received
42 | by an HTTP transaction. */
43 | public typealias ResponseValidator = (HTTPTransaction<ResponseDataType>, HTTPURLResponse, HTTPResponseMetadata, Data) throws -> Void
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
44 |
45 | /** The signature of a payload processing function. This function accepts
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
| `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HTTPTransaction.swift:112:19: error: value of type 'URLSessionTask' (aka 'AnyObject') has no member 'priority'
110 | public var requestPriority = Priority.default {
111 | didSet {
112 | task?.priority = requestPriority.taskPriority
| `- error: value of type 'URLSessionTask' (aka 'AnyObject') has no member 'priority'
113 | }
114 | }
/host/spi-builder-workspace/Sources/HTTPTransaction.swift:160:38: error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
158 | /** The `URLSessionConfiguration` used to create the `URLSession` for
159 | the transaction. */
160 | public var sessionConfiguration: URLSessionConfiguration = .default
| `- error: 'URLSessionConfiguration' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
161 |
162 | /** A `ResponseValidator` function used to validate the HTTP response
Foundation.URLSessionConfiguration:2:18: note: 'URLSessionConfiguration' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionConfiguration = AnyObject
| `- note: 'URLSessionConfiguration' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HTTPTransaction.swift:160:65: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
158 | /** The `URLSessionConfiguration` used to create the `URLSession` for
159 | the transaction. */
160 | public var sessionConfiguration: URLSessionConfiguration = .default
| `- error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
161 |
162 | /** A `ResponseValidator` function used to validate the HTTP response
/host/spi-builder-workspace/Sources/HTTPTransaction.swift:171:23: error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
169 |
170 | private var pinnedTransaction: HTTPTransaction<ResponseDataType>?
171 | private var task: URLSessionTask?
| `- error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
172 | private let processingQueue: DispatchQueue
173 |
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionTask = AnyObject
| `- note: 'URLSessionTask' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HTTPTransaction.swift:229:40: error: cannot find type 'URLRequest' in scope
227 | - parameter request: The `URLRequest` to configure.
228 | */
229 | open func configure(request: inout URLRequest)
| `- error: cannot find type 'URLRequest' in scope
230 | {
231 | request.httpMethod = method.asString
/host/spi-builder-workspace/Sources/HTTPTransactionTracer.swift:50:35: error: cannot find type 'URLRequest' in scope
48 | tracer.
49 | */
50 | func didConfigure<T>(request: URLRequest, for transaction: HTTPTransaction<T>, id transactionID: UUID)
| `- error: cannot find type 'URLRequest' in scope
51 |
52 | /**
/host/spi-builder-workspace/Sources/HTTPTransactionTracer.swift:77:41: error: cannot find type 'URLRequest' in scope
75 | - note: This function is _only_ called when running on iOS 11 or higher.
76 | */
77 | func willWaitForNetwork<T>(request: URLRequest, for transaction: HTTPTransaction<T>, timeout: TimeInterval, id transactionID: UUID)
| `- error: cannot find type 'URLRequest' in scope
78 |
79 | /**
/host/spi-builder-workspace/Sources/HTTPTransactionTracer.swift:98:31: error: cannot find type 'URLRequest' in scope
96 | tracer.
97 | */
98 | func didIssue<T>(request: URLRequest, for transaction: HTTPTransaction<T>, id transactionID: UUID)
| `- error: cannot find type 'URLRequest' in scope
99 |
100 | /**
/host/spi-builder-workspace/Sources/HTTPTransactionTracer.swift:125:63: error: cannot find type 'URLRequest' in scope
123 | tracer.
124 | */
125 | func didReceive<T>(response: HTTPURLResponse, to request: URLRequest, for transaction: HTTPTransaction<T>, meta: HTTPResponseMetadata, data: Data, id transactionID: UUID)
| `- error: cannot find type 'URLRequest' in scope
126 |
127 | /**
/host/spi-builder-workspace/Sources/HTTPTransactionTracer.swift:155:64: error: cannot find type 'URLRequest' in scope
153 | tracer.
154 | */
155 | func didValidate<T>(response: HTTPURLResponse, to request: URLRequest, for transaction: HTTPTransaction<T>, meta: HTTPResponseMetadata, data: Data, id transactionID: UUID)
| `- error: cannot find type 'URLRequest' in scope
156 |
157 | /**
/host/spi-builder-workspace/Sources/HTTPTransaction.swift:387:72: error: cannot find type 'URLSessionTaskDelegate' in scope
385 | }
386 |
387 | private class HTTPTransactionTaskDelegate<ResponseDataType>: NSObject, URLSessionTaskDelegate
| `- error: cannot find type 'URLSessionTaskDelegate' in scope
388 | {
389 | typealias Transaction = HTTPTransaction<ResponseDataType>
/host/spi-builder-workspace/Sources/HTTPTransaction.swift:405:140: error: cannot find type 'URLRequest' in scope
403 | }
404 |
405 | func urlSession(_ session: URLSession, task: URLSessionTask, willPerformHTTPRedirection response: HTTPURLResponse, newRequest request: URLRequest, completionHandler: @escaping (URLRequest?) -> ())
| `- error: cannot find type 'URLRequest' in scope
406 | {
407 | guard let redirectApprover = redirectApprover else {
/host/spi-builder-workspace/Sources/HTTPTransaction.swift:405:182: error: cannot find type 'URLRequest' in scope
403 | }
404 |
405 | func urlSession(_ session: URLSession, task: URLSessionTask, willPerformHTTPRedirection response: HTTPURLResponse, newRequest request: URLRequest, completionHandler: @escaping (URLRequest?) -> ())
| `- error: cannot find type 'URLRequest' in scope
406 | {
407 | guard let redirectApprover = redirectApprover else {
/host/spi-builder-workspace/Sources/HTTPTransaction.swift:405:32: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
403 | }
404 |
405 | func urlSession(_ session: URLSession, task: URLSessionTask, willPerformHTTPRedirection response: HTTPURLResponse, newRequest request: URLRequest, completionHandler: @escaping (URLRequest?) -> ())
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
406 | {
407 | guard let redirectApprover = redirectApprover else {
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HTTPTransaction.swift:405:50: error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
403 | }
404 |
405 | func urlSession(_ session: URLSession, task: URLSessionTask, willPerformHTTPRedirection response: HTTPURLResponse, newRequest request: URLRequest, completionHandler: @escaping (URLRequest?) -> ())
| `- error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
406 | {
407 | guard let redirectApprover = redirectApprover else {
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionTask = AnyObject
| `- note: 'URLSessionTask' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HTTPTransaction.swift:405:103: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
403 | }
404 |
405 | func urlSession(_ session: URLSession, task: URLSessionTask, willPerformHTTPRedirection response: HTTPURLResponse, newRequest request: URLRequest, completionHandler: @escaping (URLRequest?) -> ())
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
406 | {
407 | guard let redirectApprover = redirectApprover else {
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
| `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HTTPTransaction.swift:437:32: error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
435 | }
436 |
437 | func urlSession(_ session: URLSession, taskIsWaitingForConnectivity task: URLSessionTask)
| `- error: 'URLSession' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
438 | {
439 | guard let tracer = tracer else {
Foundation.URLSession:2:18: note: 'URLSession' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSession = AnyObject
| `- note: 'URLSession' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HTTPTransaction.swift:437:79: error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
435 | }
436 |
437 | func urlSession(_ session: URLSession, taskIsWaitingForConnectivity task: URLSessionTask)
| `- error: 'URLSessionTask' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
438 | {
439 | guard let tracer = tracer else {
Foundation.URLSessionTask:2:18: note: 'URLSessionTask' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias URLSessionTask = AnyObject
| `- note: 'URLSessionTask' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HTTPTransactionTracer.swift:125:34: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
123 | tracer.
124 | */
125 | func didReceive<T>(response: HTTPURLResponse, to request: URLRequest, for transaction: HTTPTransaction<T>, meta: HTTPResponseMetadata, data: Data, id transactionID: UUID)
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
126 |
127 | /**
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
| `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/HTTPTransactionTracer.swift:155:35: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
153 | tracer.
154 | */
155 | func didValidate<T>(response: HTTPURLResponse, to request: URLRequest, for transaction: HTTPTransaction<T>, meta: HTTPResponseMetadata, data: Data, id transactionID: UUID)
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
156 |
157 | /**
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
| `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/ImageConstruction.swift:67:8: error: cannot find type 'PlatformImageType' in scope
65 | public func platformImage(fromData data: Data)
66 | throws
67 | -> PlatformImageType
| `- error: cannot find type 'PlatformImageType' in scope
68 | {
69 | guard let image = PlatformImageType(data: data) else {
[4/22] Compiling CleanroomDataTransactions JSONTypes.swift
[5/22] Compiling CleanroomDataTransactions MIMEType.swift
[6/22] Compiling CleanroomDataTransactions DataTransaction.swift
/host/spi-builder-workspace/Sources/DataTransactionError.swift:86:20: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
84 | /** Indicates an HTTP error response was received. Contains the response,
85 | its metadata, and the body of the response. */
86 | case httpError(HTTPURLResponse, HTTPResponseMetadata, Data)
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
87 | }
88 |
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
| `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
[7/22] Compiling CleanroomDataTransactions DataTransactionError.swift
/host/spi-builder-workspace/Sources/DataTransactionError.swift:86:20: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
84 | /** Indicates an HTTP error response was received. Contains the response,
85 | its metadata, and the body of the response. */
86 | case httpError(HTTPURLResponse, HTTPResponseMetadata, Data)
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
87 | }
88 |
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
| `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
[8/22] Compiling CleanroomDataTransactions DispatchQueueExtension.swift
/host/spi-builder-workspace/Sources/DataTransactionError.swift:86:20: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
84 | /** Indicates an HTTP error response was received. Contains the response,
85 | its metadata, and the body of the response. */
86 | case httpError(HTTPURLResponse, HTTPResponseMetadata, Data)
| `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
87 | }
88 |
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
| `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
error: compile command failed due to signal 6 (use -v to see invocation)
[9/22] Compiling CleanroomDataTransactions HTTPTransactionConfigurator.swift
/host/spi-builder-workspace/Sources/HTTPTransactionTracer.swift:50:35: error: cannot find type 'URLRequest' in scope
48 | tracer.
49 | */
50 | func didConfigure<T>(request: URLRequest, for transaction: HTTPTransaction<T>, id transactionID: UUID)
| `- error: cannot find type 'URLRequest' in scope
51 |
52 | /**
/host/spi-builder-workspace/Sources/HTTPTransactionTracer.swift:77:41: error: cannot find type 'URLRequest' in scope
75 | - note: This function is _only_ called when running on iOS 11 or higher.
76 | */
77 | func willWaitForNetwork<T>(request: URLRequest, for transaction: HTTPTransaction<T>, timeout: TimeInterval, id transactionID: UUID)
| `- error: cannot find type 'URLRequest' in scope
78 |
79 | /**
/host/spi-builder-workspace/Sources/HTTPTransactionTracer.swift:98:31: error: cannot find type 'URLRequest' in scope
96 | tracer.
97 | */
98 | func didIssue<T>(request: URLRequest, for transaction: HTTPTransaction<T>, id transactionID: UUID)
| `- error: cannot find type 'URLRequest' in scope
99 |
100 | /**
/host/spi-builder-workspace/Sources/HTTPTransactionTracer.swift:125:63: error: cannot find type 'URLRequest' in scope
123 | tracer.
124 | */
125 | func didReceive<T>(response: HTTPURLResponse, to request: URLRequest, for transaction: HTTPTransaction<T>, meta: HTTPResponseMetadata, data: Data, id transactionID: UUID)
| `- error: cannot find type 'URLRequest' in scope
126 |
127 | /**
/host/spi-builder-workspace/Sources/HTTPTransactionTracer.swift:155:64: error: cannot find type 'URLRequest' in scope
153 | tracer.
154 | */
155 | func didValidate<T>(response: HTTPURLResponse, to request: URLRequest, for transaction: HTTPTransaction<T>, meta: HTTPResponseMetadata, data: Data, id transactionID: UUID)
| `- error: cannot find type 'URLRequest' in scope
156 |
157 | /**
[10/22] Compiling CleanroomDataTransactions HTTPTransactionControl.swift
/host/spi-builder-workspace/Sources/HTTPTransactionTracer.swift:50:35: error: cannot find type 'URLRequest' in scope
48 | tracer.
49 | */
50 | func didConfigure<T>(request: URLRequest, for transaction: HTTPTransaction<T>, id transactionID: UUID)
| `- error: cannot find type 'URLRequest' in scope
51 |
52 | /**
/host/spi-builder-workspace/Sources/HTTPTransactionTracer.swift:77:41: error: cannot find type 'URLRequest' in scope
75 | - note: This function is _only_ called when running on iOS 11 or higher.
76 | */
77 | func willWaitForNetwork<T>(request: URLRequest, for transaction: HTTPTransaction<T>, timeout: TimeInterval, id transactionID: UUID)
| `- error: cannot find type 'URLRequest' in scope
78 |
79 | /**
/host/spi-builder-workspace/Sources/HTTPTransactionTracer.swift:98:31: error: cannot find type 'URLRequest' in scope
96 | tracer.
97 | */
98 | func didIssue<T>(request: URLRequest, for transaction: HTTPTransaction<T>, id transactionID: UUID)
| `- error: cannot find type 'URLRequest' in scope
99 |
100 | /**
/host/spi-builder-workspace/Sources/HTTPTransactionTracer.swift:125:63: error: cannot find type 'URLRequest' in scope
123 | tracer.
124 | */
125 | func didReceive<T>(response: HTTPURLResponse, to request: URLRequest, for transaction: HTTPTransaction<T>, meta: HTTPResponseMetadata, data: Data, id transactionID: UUID)
| `- error: cannot find type 'URLRequest' in scope
126 |
127 | /**
/host/spi-builder-workspace/Sources/HTTPTransactionTracer.swift:155:64: error: cannot find type 'URLRequest' in scope
153 | tracer.
154 | */
155 | func didValidate<T>(response: HTTPURLResponse, to request: URLRequest, for transaction: HTTPTransaction<T>, meta: HTTPResponseMetadata, data: Data, id transactionID: UUID)
| `- error: cannot find type 'URLRequest' in scope
156 |
157 | /**
/host/spi-builder-workspace/Sources/HTTPTransaction.swift:32:94: error: cannot find type 'URLRequest' in scope
30 | /** The signature of a function used to construct `URLRequest`s for
31 | the transaction. */
32 | public typealias RequestConstructor = (HTTPTransaction<ResponseDataType>, URL) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
33 |
34 | /** The signature of a function used to configure the `URLRequest` prior to
/host/spi-builder-workspace/Sources/HTTPTransaction.swift:36:86: error: cannot find type 'URLRequest' in scope
34 | /** The signature of a function used to configure the `URLRequest` prior to
35 | issuing the transaction. */
36 | public typealias RequestConfigurator = (HTTPTransaction<ResponseDataType>, inout URLRequest) throws -> Void
| `- error: cannot find type 'URLRequest' in scope
37 |
38 | /** The signature of a function used to approve HTTP redirects. */
swift-frontend: /home/build-user/swift/lib/AST/ASTContext.cpp:5294: swift::SILFunctionType::SILFunctionType(GenericSignature, ExtInfo, SILCoroutineKind, ParameterConvention, ArrayRef<SILParameterInfo>, ArrayRef<SILYieldInfo>, ArrayRef<SILResultInfo>, std::optional<SILResultInfo>, SubstitutionMap, SubstitutionMap, const ASTContext &, RecursiveTypeProperties, ProtocolConformanceRef): Assertion `!yield.getInterfaceType()->hasError() && "interface type of yield should not contain error types"' failed.
Please submit a bug report (https://swift.org/contributing/#reporting-bugs) and include the crash backtrace.
Stack dump:
0. Program arguments: /root/.local/share/swiftly/toolchains/6.2-snapshot-2025-05-15/usr/bin/swift-frontend -frontend -c /host/spi-builder-workspace/Sources/DataTransaction.swift /host/spi-builder-workspace/Sources/DataTransactionError.swift /host/spi-builder-workspace/Sources/DispatchQueueExtension.swift /host/spi-builder-workspace/Sources/EncodingExtensions.swift /host/spi-builder-workspace/Sources/FetchImageTransaction.swift /host/spi-builder-workspace/Sources/HTTPRequestMethod.swift /host/spi-builder-workspace/Sources/HTTPResponseMetadata.swift /host/spi-builder-workspace/Sources/HTTPResponseStatus.swift /host/spi-builder-workspace/Sources/HTTPTransaction.swift /host/spi-builder-workspace/Sources/HTTPTransactionConfigurator.swift /host/spi-builder-workspace/Sources/HTTPTransactionControl.swift /host/spi-builder-workspace/Sources/HTTPTransactionTracer.swift /host/spi-builder-workspace/Sources/ImageConstruction.swift -primary-file /host/spi-builder-workspace/Sources/JSONDecodableTransaction.swift -primary-file /host/spi-builder-workspace/Sources/JSONExtractionExtensions.swift /host/spi-builder-workspace/Sources/JSONKey.swift /host/spi-builder-workspace/Sources/JSONTransaction.swift /host/spi-builder-workspace/Sources/JSONTypes.swift /host/spi-builder-workspace/Sources/MIMEType.swift -emit-dependencies-path /host/spi-builder-workspace/.build/aarch64-unknown-linux-android28/debug/CleanroomDataTransactions.build/JSONDecodableTransaction.d -emit-reference-dependencies-path /host/spi-builder-workspace/.build/aarch64-unknown-linux-android28/debug/CleanroomDataTransactions.build/JSONDecodableTransaction.swiftdeps -serialize-diagnostics-path /host/spi-builder-workspace/.build/aarch64-unknown-linux-android28/debug/CleanroomDataTransactions.build/JSONDecodableTransaction.dia -emit-dependencies-path /host/spi-builder-workspace/.build/aarch64-unknown-linux-android28/debug/CleanroomDataTransactions.build/JSONExtractionExtensions.d -emit-reference-dependencies-path /host/spi-builder-workspace/.build/aarch64-unknown-linux-android28/debug/CleanroomDataTransactions.build/JSONExtractionExtensions.swiftdeps -serialize-diagnostics-path /host/spi-builder-workspace/.build/aarch64-unknown-linux-android28/debug/CleanroomDataTransactions.build/JSONExtractionExtensions.dia -target aarch64-unknown-linux-android28 -Xllvm -aarch64-use-tbi -disable-objc-interop -sdk /root/.swiftpm/swift-sdks/swift-6.2-DEVELOPMENT-SNAPSHOT-2025-05-15-a-android-0.1.artifactbundle/swift-android/ndk-sysroot -I /host/spi-builder-workspace/.build/aarch64-unknown-linux-android28/debug/Modules -no-color-diagnostics -Xcc -fno-color-diagnostics -enable-testing -g -debug-info-format=dwarf -dwarf-version=4 -module-cache-path /host/spi-builder-workspace/.build/aarch64-unknown-linux-android28/debug/ModuleCache -swift-version 4 -Onone -D SWIFT_PACKAGE -D DEBUG -D SWIFT_MODULE_RESOURCE_BUNDLE_UNAVAILABLE -empty-abi-descriptor -resource-dir /root/.swiftpm/swift-sdks/swift-6.2-DEVELOPMENT-SNAPSHOT-2025-05-15-a-android-0.1.artifactbundle/swift-android/swift-resources/usr/lib/swift-aarch64 -enable-anonymous-context-mangled-names -file-compilation-dir /host/spi-builder-workspace -Xcc --sysroot -Xcc /root/.swiftpm/swift-sdks/swift-6.2-DEVELOPMENT-SNAPSHOT-2025-05-15-a-android-0.1.artifactbundle/swift-android/ndk-sysroot -Xcc -fPIC -Xcc -g -Xcc -fno-omit-frame-pointer -no-auto-bridging-header-chaining -module-name CleanroomDataTransactions -in-process-plugin-server-path /root/.local/share/swiftly/toolchains/6.2-snapshot-2025-05-15/usr/lib/swift/host/libSwiftInProcPluginServer.so -plugin-path /root/.local/share/swiftly/toolchains/6.2-snapshot-2025-05-15/usr/lib/swift/host/plugins -plugin-path /root/.local/share/swiftly/toolchains/6.2-snapshot-2025-05-15/usr/local/lib/swift/host/plugins -parse-as-library -o /host/spi-builder-workspace/.build/aarch64-unknown-linux-android28/debug/CleanroomDataTransactions.build/JSONDecodableTransaction.swift.o -o /host/spi-builder-workspace/.build/aarch64-unknown-linux-android28/debug/CleanroomDataTransactions.build/JSONExtractionExtensions.swift.o -index-store-path /host/spi-builder-workspace/.build/aarch64-unknown-linux-android28/debug/index/store -index-system-modules
1. Swift version 6.2-dev (LLVM 74f18b3ab32b72c, Swift 245514cab31b823)
2. Compiling with effective version 4.1.50
3. While evaluating request ASTLoweringRequest(Lowering AST to SIL for file "/host/spi-builder-workspace/Sources/JSONDecodableTransaction.swift")
Stack dump without symbol names (ensure you have llvm-symbolizer in your PATH or set the environment var `LLVM_SYMBOLIZER_PATH` to point to it):
0 swift-frontend 0x000055557e921c58
1 swift-frontend 0x000055557e91f77e
2 swift-frontend 0x000055557e9222f1
3 libc.so.6 0x00007fccdace8520
4 libc.so.6 0x00007fccdad3c9fc pthread_kill + 300
5 libc.so.6 0x00007fccdace8476 raise + 22
6 libc.so.6 0x00007fccdacce7f3 abort + 211
7 libc.so.6 0x00007fccdacce71b
8 libc.so.6 0x00007fccdacdfe96
9 swift-frontend 0x00005555788413b7
10 swift-frontend 0x00005555788423cf
11 swift-frontend 0x0000555577f7a14d
12 swift-frontend 0x0000555577f6d263
13 swift-frontend 0x0000555577f70833
14 swift-frontend 0x0000555577f71b88
15 swift-frontend 0x0000555577f64088
16 swift-frontend 0x00005555774d6631
17 swift-frontend 0x0000555577605a1b
18 swift-frontend 0x000055557760ac23
19 swift-frontend 0x000055557760a708
20 swift-frontend 0x00005555774dd2b3
21 swift-frontend 0x00005555774dda04
22 swift-frontend 0x00005555775f05d6
23 swift-frontend 0x00005555774e29b3
24 swift-frontend 0x00005555774de38f
25 swift-frontend 0x0000555576cbcc18
26 swift-frontend 0x0000555576cce7da
27 swift-frontend 0x0000555576cbfbbe
28 swift-frontend 0x0000555576cbec5c
29 swift-frontend 0x0000555576a3a5ab
30 libc.so.6 0x00007fccdaccfd90
31 libc.so.6 0x00007fccdaccfe40 __libc_start_main + 128
32 swift-frontend 0x0000555576a395a5
BUILD FAILURE 6.2 android