Build Information
Failed to build AFNetworks, reference master (c9f89e), with Swift 6.1 for Android on 27 May 2025 19:08:51 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.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/BeAppOnline/AFNetwork.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/BeAppOnline/AFNetwork
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at c9f89e9 improvements
Cloned https://github.com/BeAppOnline/AFNetwork.git
Revision (git rev-parse @):
c9f89e96c61afed5a00a0c3a5d13f4532bcefcae
SUCCESS checkout https://github.com/BeAppOnline/AFNetwork.git at master
========================================
Build
========================================
Selected platform: android
Swift version: 6.1
Building package at path: $PWD
https://github.com/BeAppOnline/AFNetwork.git
https://github.com/BeAppOnline/AFNetwork.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
],
"manifest_display_name" : "AFNetworks",
"name" : "AFNetworks",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "AFNetworks",
"targets" : [
"AFNetworks"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "AFNetworksTests",
"module_type" : "SwiftTarget",
"name" : "AFNetworksTests",
"path" : "Tests/AFNetworksTests",
"sources" : [
"Infrastructure/Network/DataTransferServiceTests.swift",
"Infrastructure/Network/Mocks/NetworkConfigurableMock.swift",
"Infrastructure/Network/Mocks/NetworkSessionManagerMock.swift",
"Infrastructure/Network/NetworkServiceTests.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"AFNetworks"
],
"type" : "test"
},
{
"c99name" : "AFNetworks",
"module_type" : "SwiftTarget",
"name" : "AFNetworks",
"path" : "Sources/AFNetworks",
"product_memberships" : [
"AFNetworks"
],
"sources" : [
"Infrastucture/Network/DataTransferService/DataTransfer Service + ErrorResolver + ErrorLogger.swift",
"Infrastucture/Network/DataTransferService/DefaultDataTransferErrorLogger/DefaultDataTransferErrorLogger.swift",
"Infrastucture/Network/DataTransferService/DefaultDataTransferErrorResolver/DefaultDataTransferErrorResolver.swift",
"Infrastucture/Network/DataTransferService/DefaultDataTransferService/DefaultDataTransferService.swift",
"Infrastucture/Network/Endpoint.swift",
"Infrastucture/Network/NetworkConfig.swift",
"Infrastucture/Network/NetworkService + SessionManager/DefaultNetworkService/DefaultNetworkService.swift",
"Infrastucture/Network/NetworkService + SessionManager/DefaultNetworkSessionManager/DefaultSessionManager.swift",
"Infrastucture/Network/NetworkService + SessionManager/ErrorLogger/DefaultNetworkErrorLogger.swift",
"Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift"
],
"type" : "library"
}
],
"tools_version" : "5.1"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:fe1962677657b2408c217cb5cceb3c09bc1d91486e360cebbc6eee461a5945d8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/12] Compiling AFNetworks DefaultNetworkService.swift
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:50:32: error: cannot find type 'URLRequest' in scope
48 | typealias CompletionHandler = (Data?, URLResponse?, Error?) -> Void
49 |
50 | func request(_ urlRequest: URLRequest, completion: @escaping CompletionHandler) -> NetworkCancellable
| `- error: cannot find type 'URLRequest' in scope
51 | }
52 |
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:55:23: error: cannot find type 'URLRequest' in scope
53 | // MARK: - Network Error Logger
54 | public protocol NetworkErrorLogger {
55 | func log(request: URLRequest)
| `- error: cannot find type 'URLRequest' in scope
56 | func log(responseData data: Data?, response: URLResponse?)
57 | func log(error: Error)
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/DefaultNetworkService/DefaultNetworkService.swift:23:35: error: cannot find type 'URLRequest' in scope
21 | }
22 |
23 | private func request(request: URLRequest, completion: @escaping CompletionHandler) -> NetworkCancellable {
| `- error: cannot find type 'URLRequest' in scope
24 |
25 | let sessionDataTask = sessionManager.request(request) { (data, urlResponse, requestError) in
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/Endpoint.swift:76:72: error: cannot find type 'URLRequest' in scope
74 | var bodyJsonSerializationOption: JSONSerialization.WritingOptions? { get }
75 |
76 | func urlRequest(with networkConfig: NetworkConfigurable) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
77 | }
78 |
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/DefaultNetworkService/DefaultNetworkService.swift:30:57: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
28 | var error: NetworkError
29 | if let response = urlResponse as? HTTPURLResponse {
30 | error = .error(statusCode: response.statusCode, data: data)
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
31 | } else {
32 | error = self.resolve(error: requestError)
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/DefaultNetworkService/DefaultNetworkService.swift:43:19: error: incorrect argument label in call (have 'request:', expected 'error:')
41 | }
42 |
43 | logger.log(request: request)
| `- error: incorrect argument label in call (have 'request:', expected 'error:')
44 | return sessionDataTask
45 | }
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/Endpoint.swift:102:72: error: cannot find type 'URLRequest' in scope
100 | }
101 |
102 | public func urlRequest(with config: NetworkConfigurable) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
103 |
104 | let url = try self.url(with: config)
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/DefaultNetworkService/DefaultNetworkService.swift:64:32: error: incorrect argument label in call (have 'request:completion:', expected 'endpoint:completion:')
62 | do {
63 | let urlRequest = try endpoint.urlRequest(with: config)
64 | return self.request(request: urlRequest, completion: completion)
| `- error: incorrect argument label in call (have 'request:completion:', expected 'endpoint:completion:')
65 | } catch {
66 | completion(.failure(.urlGeneration))
[4/13] Compiling AFNetworks NetworkConfig.swift
[5/13] Compiling AFNetworks Endpoint.swift
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/Endpoint.swift:76:72: error: cannot find type 'URLRequest' in scope
74 | var bodyJsonSerializationOption: JSONSerialization.WritingOptions? { get }
75 |
76 | func urlRequest(with networkConfig: NetworkConfigurable) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
77 | }
78 |
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/Endpoint.swift:102:72: error: cannot find type 'URLRequest' in scope
100 | }
101 |
102 | public func urlRequest(with config: NetworkConfigurable) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
103 |
104 | let url = try self.url(with: config)
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/Endpoint.swift:105:26: error: cannot find 'URLRequest' in scope
103 |
104 | let url = try self.url(with: config)
105 | var urlRequest = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
106 | var allHeaders: [String: String] = config.headers
107 |
[6/13] Compiling AFNetworks DefaultSessionManager.swift
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/DefaultNetworkSessionManager/DefaultSessionManager.swift:18:36: error: cannot find type 'URLRequest' in scope
16 | public init() {}
17 |
18 | public func request(_ request: URLRequest,
| `- error: cannot find type 'URLRequest' in scope
19 | completion: @escaping CompletionHandler) -> NetworkCancellable {
20 | let task = URLSession.shared.dataTask(with: request, completionHandler: completion)
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:50:32: error: cannot find type 'URLRequest' in scope
48 | typealias CompletionHandler = (Data?, URLResponse?, Error?) -> Void
49 |
50 | func request(_ urlRequest: URLRequest, completion: @escaping CompletionHandler) -> NetworkCancellable
| `- error: cannot find type 'URLRequest' in scope
51 | }
52 |
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/DefaultNetworkSessionManager/DefaultSessionManager.swift:20:31: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
18 | public func request(_ request: URLRequest,
19 | completion: @escaping CompletionHandler) -> NetworkCancellable {
20 | let task = URLSession.shared.dataTask(with: request, completionHandler: completion)
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
21 | task.resume()
22 | return task
[7/13] Compiling AFNetworks DefaultNetworkErrorLogger.swift
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/ErrorLogger/DefaultNetworkErrorLogger.swift:15:30: error: cannot find type 'URLRequest' in scope
13 | public init() { }
14 |
15 | public func log(request: URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
16 | #if DEBUG
17 | print("-------------")
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/ErrorLogger/DefaultNetworkErrorLogger.swift:30:57: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
28 | }
29 |
30 | public func log(responseData data: Data?, response: URLResponse?) {
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
31 | #if DEBUG
32 | guard let data = data else { return }
Foundation.URLResponse:2:18: note: 'URLResponse' 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 URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:55:23: error: cannot find type 'URLRequest' in scope
53 | // MARK: - Network Error Logger
54 | public protocol NetworkErrorLogger {
55 | func log(request: URLRequest)
| `- error: cannot find type 'URLRequest' in scope
56 | func log(responseData data: Data?, response: URLResponse?)
57 | func log(error: Error)
error: emit-module command failed with exit code 1 (use -v to see invocation)
[8/13] Compiling AFNetworks DataTransfer Service + ErrorResolver + ErrorLogger.swift
[9/13] Compiling AFNetworks DefaultDataTransferErrorLogger.swift
[10/13] Emitting module AFNetworks
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/Endpoint.swift:76:72: error: cannot find type 'URLRequest' in scope
74 | var bodyJsonSerializationOption: JSONSerialization.WritingOptions? { get }
75 |
76 | func urlRequest(with networkConfig: NetworkConfigurable) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
77 | }
78 |
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/Endpoint.swift:102:72: error: cannot find type 'URLRequest' in scope
100 | }
101 |
102 | public func urlRequest(with config: NetworkConfigurable) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
103 |
104 | let url = try self.url(with: config)
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:50:32: error: cannot find type 'URLRequest' in scope
48 | typealias CompletionHandler = (Data?, URLResponse?, Error?) -> Void
49 |
50 | func request(_ urlRequest: URLRequest, completion: @escaping CompletionHandler) -> NetworkCancellable
| `- error: cannot find type 'URLRequest' in scope
51 | }
52 |
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:55:23: error: cannot find type 'URLRequest' in scope
53 | // MARK: - Network Error Logger
54 | public protocol NetworkErrorLogger {
55 | func log(request: URLRequest)
| `- error: cannot find type 'URLRequest' in scope
56 | func log(responseData data: Data?, response: URLResponse?)
57 | func log(error: Error)
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/DefaultNetworkService/DefaultNetworkService.swift:23:35: error: cannot find type 'URLRequest' in scope
21 | }
22 |
23 | private func request(request: URLRequest, completion: @escaping CompletionHandler) -> NetworkCancellable {
| `- error: cannot find type 'URLRequest' in scope
24 |
25 | let sessionDataTask = sessionManager.request(request) { (data, urlResponse, requestError) in
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/DefaultNetworkSessionManager/DefaultSessionManager.swift:18:36: error: cannot find type 'URLRequest' in scope
16 | public init() {}
17 |
18 | public func request(_ request: URLRequest,
| `- error: cannot find type 'URLRequest' in scope
19 | completion: @escaping CompletionHandler) -> NetworkCancellable {
20 | let task = URLSession.shared.dataTask(with: request, completionHandler: completion)
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/ErrorLogger/DefaultNetworkErrorLogger.swift:15:30: error: cannot find type 'URLRequest' in scope
13 | public init() { }
14 |
15 | public func log(request: URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
16 | #if DEBUG
17 | print("-------------")
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/ErrorLogger/DefaultNetworkErrorLogger.swift:30:57: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
28 | }
29 |
30 | public func log(responseData data: Data?, response: URLResponse?) {
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
31 | #if DEBUG
32 | guard let data = data else { return }
Foundation.URLResponse:2:18: note: 'URLResponse' 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 URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:37:1: error: non-nominal type 'URLSessionTask' (aka 'AnyObject') cannot be extended
35 | }
36 |
37 | extension URLSessionTask: NetworkCancellable { }
| `- error: non-nominal type 'URLSessionTask' (aka 'AnyObject') cannot be extended
38 |
39 | // MARK: - Network Service Protocol
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:48:43: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
46 | // MARK: - Network Session Manager Protocol
47 | public protocol NetworkSessionManager {
48 | typealias CompletionHandler = (Data?, URLResponse?, Error?) -> Void
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
49 |
50 | func request(_ urlRequest: URLRequest, completion: @escaping CompletionHandler) -> NetworkCancellable
Foundation.URLResponse:2:18: note: 'URLResponse' 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 URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:56:50: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
54 | public protocol NetworkErrorLogger {
55 | func log(request: URLRequest)
56 | func log(responseData data: Data?, response: URLResponse?)
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
57 | func log(error: Error)
58 | }
Foundation.URLResponse:2:18: note: 'URLResponse' 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 URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
[11/13] Compiling AFNetworks DefaultDataTransferErrorResolver.swift
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/DataTransferService/DefaultDataTransferService/DefaultDataTransferService.swift:33:51: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
31 | case .success(let data):
32 | let result: Result<T, Error> = self.decode(data: data, decoder: endpoint.responseDecoder)
33 | DispatchQueue.main.async { return completion(result) }
| |- warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
34 | case .failure(let nError):
35 | self.errorLogger.log(error: nError)
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/DataTransferService/DefaultDataTransferService/DefaultDataTransferService.swift:33:62: warning: sending 'result' risks causing data races; this is an error in the Swift 6 language mode
31 | case .success(let data):
32 | let result: Result<T, Error> = self.decode(data: data, decoder: endpoint.responseDecoder)
33 | DispatchQueue.main.async { return completion(result) }
| |- warning: sending 'result' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'result' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
34 | case .failure(let nError):
35 | self.errorLogger.log(error: nError)
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/DataTransferService/DefaultDataTransferService/DefaultDataTransferService.swift:37:51: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
35 | self.errorLogger.log(error: nError)
36 | let error = self.resolve(networkError: nError)
37 | DispatchQueue.main.async { return completion(.failure(error))}
| |- warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
38 | }
39 | }
[12/13] Compiling AFNetworks DefaultDataTransferService.swift
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/DataTransferService/DefaultDataTransferService/DefaultDataTransferService.swift:33:51: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
31 | case .success(let data):
32 | let result: Result<T, Error> = self.decode(data: data, decoder: endpoint.responseDecoder)
33 | DispatchQueue.main.async { return completion(result) }
| |- warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
34 | case .failure(let nError):
35 | self.errorLogger.log(error: nError)
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/DataTransferService/DefaultDataTransferService/DefaultDataTransferService.swift:33:62: warning: sending 'result' risks causing data races; this is an error in the Swift 6 language mode
31 | case .success(let data):
32 | let result: Result<T, Error> = self.decode(data: data, decoder: endpoint.responseDecoder)
33 | DispatchQueue.main.async { return completion(result) }
| |- warning: sending 'result' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'result' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
34 | case .failure(let nError):
35 | self.errorLogger.log(error: nError)
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/DataTransferService/DefaultDataTransferService/DefaultDataTransferService.swift:37:51: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
35 | self.errorLogger.log(error: nError)
36 | let error = self.resolve(networkError: nError)
37 | DispatchQueue.main.async { return completion(.failure(error))}
| |- warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
38 | }
39 | }
[13/13] Compiling AFNetworks NetworkService + SessionManager + ErrorLogger.swift
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:37:1: error: non-nominal type 'URLSessionTask' (aka 'AnyObject') cannot be extended
35 | }
36 |
37 | extension URLSessionTask: NetworkCancellable { }
| `- error: non-nominal type 'URLSessionTask' (aka 'AnyObject') cannot be extended
38 |
39 | // MARK: - Network Service Protocol
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/Endpoint.swift:76:72: error: cannot find type 'URLRequest' in scope
74 | var bodyJsonSerializationOption: JSONSerialization.WritingOptions? { get }
75 |
76 | func urlRequest(with networkConfig: NetworkConfigurable) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
77 | }
78 |
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:48:43: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
46 | // MARK: - Network Session Manager Protocol
47 | public protocol NetworkSessionManager {
48 | typealias CompletionHandler = (Data?, URLResponse?, Error?) -> Void
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
49 |
50 | func request(_ urlRequest: URLRequest, completion: @escaping CompletionHandler) -> NetworkCancellable
Foundation.URLResponse:2:18: note: 'URLResponse' 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 URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:50:32: error: cannot find type 'URLRequest' in scope
48 | typealias CompletionHandler = (Data?, URLResponse?, Error?) -> Void
49 |
50 | func request(_ urlRequest: URLRequest, completion: @escaping CompletionHandler) -> NetworkCancellable
| `- error: cannot find type 'URLRequest' in scope
51 | }
52 |
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:55:23: error: cannot find type 'URLRequest' in scope
53 | // MARK: - Network Error Logger
54 | public protocol NetworkErrorLogger {
55 | func log(request: URLRequest)
| `- error: cannot find type 'URLRequest' in scope
56 | func log(responseData data: Data?, response: URLResponse?)
57 | func log(error: Error)
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:56:50: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
54 | public protocol NetworkErrorLogger {
55 | func log(request: URLRequest)
56 | func log(responseData data: Data?, response: URLResponse?)
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
57 | func log(error: Error)
58 | }
Foundation.URLResponse:2:18: note: 'URLResponse' 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 URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:fe1962677657b2408c217cb5cceb3c09bc1d91486e360cebbc6eee461a5945d8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/11] Compiling AFNetworks DefaultNetworkService.swift
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:50:32: error: cannot find type 'URLRequest' in scope
48 | typealias CompletionHandler = (Data?, URLResponse?, Error?) -> Void
49 |
50 | func request(_ urlRequest: URLRequest, completion: @escaping CompletionHandler) -> NetworkCancellable
| `- error: cannot find type 'URLRequest' in scope
51 | }
52 |
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:55:23: error: cannot find type 'URLRequest' in scope
53 | // MARK: - Network Error Logger
54 | public protocol NetworkErrorLogger {
55 | func log(request: URLRequest)
| `- error: cannot find type 'URLRequest' in scope
56 | func log(responseData data: Data?, response: URLResponse?)
57 | func log(error: Error)
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/DefaultNetworkService/DefaultNetworkService.swift:23:35: error: cannot find type 'URLRequest' in scope
21 | }
22 |
23 | private func request(request: URLRequest, completion: @escaping CompletionHandler) -> NetworkCancellable {
| `- error: cannot find type 'URLRequest' in scope
24 |
25 | let sessionDataTask = sessionManager.request(request) { (data, urlResponse, requestError) in
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/Endpoint.swift:76:72: error: cannot find type 'URLRequest' in scope
74 | var bodyJsonSerializationOption: JSONSerialization.WritingOptions? { get }
75 |
76 | func urlRequest(with networkConfig: NetworkConfigurable) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
77 | }
78 |
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/DefaultNetworkService/DefaultNetworkService.swift:30:57: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
28 | var error: NetworkError
29 | if let response = urlResponse as? HTTPURLResponse {
30 | error = .error(statusCode: response.statusCode, data: data)
| `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
31 | } else {
32 | error = self.resolve(error: requestError)
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/DefaultNetworkService/DefaultNetworkService.swift:43:19: error: incorrect argument label in call (have 'request:', expected 'error:')
41 | }
42 |
43 | logger.log(request: request)
| `- error: incorrect argument label in call (have 'request:', expected 'error:')
44 | return sessionDataTask
45 | }
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/Endpoint.swift:102:72: error: cannot find type 'URLRequest' in scope
100 | }
101 |
102 | public func urlRequest(with config: NetworkConfigurable) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
103 |
104 | let url = try self.url(with: config)
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/DefaultNetworkService/DefaultNetworkService.swift:64:32: error: incorrect argument label in call (have 'request:completion:', expected 'endpoint:completion:')
62 | do {
63 | let urlRequest = try endpoint.urlRequest(with: config)
64 | return self.request(request: urlRequest, completion: completion)
| `- error: incorrect argument label in call (have 'request:completion:', expected 'endpoint:completion:')
65 | } catch {
66 | completion(.failure(.urlGeneration))
[3/12] Compiling AFNetworks DefaultSessionManager.swift
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/DefaultNetworkSessionManager/DefaultSessionManager.swift:18:36: error: cannot find type 'URLRequest' in scope
16 | public init() {}
17 |
18 | public func request(_ request: URLRequest,
| `- error: cannot find type 'URLRequest' in scope
19 | completion: @escaping CompletionHandler) -> NetworkCancellable {
20 | let task = URLSession.shared.dataTask(with: request, completionHandler: completion)
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:50:32: error: cannot find type 'URLRequest' in scope
48 | typealias CompletionHandler = (Data?, URLResponse?, Error?) -> Void
49 |
50 | func request(_ urlRequest: URLRequest, completion: @escaping CompletionHandler) -> NetworkCancellable
| `- error: cannot find type 'URLRequest' in scope
51 | }
52 |
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/DefaultNetworkSessionManager/DefaultSessionManager.swift:20:31: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
18 | public func request(_ request: URLRequest,
19 | completion: @escaping CompletionHandler) -> NetworkCancellable {
20 | let task = URLSession.shared.dataTask(with: request, completionHandler: completion)
| `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
21 | task.resume()
22 | return task
[4/12] Compiling AFNetworks DefaultNetworkErrorLogger.swift
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/ErrorLogger/DefaultNetworkErrorLogger.swift:15:30: error: cannot find type 'URLRequest' in scope
13 | public init() { }
14 |
15 | public func log(request: URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
16 | #if DEBUG
17 | print("-------------")
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/ErrorLogger/DefaultNetworkErrorLogger.swift:30:57: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
28 | }
29 |
30 | public func log(responseData data: Data?, response: URLResponse?) {
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
31 | #if DEBUG
32 | guard let data = data else { return }
Foundation.URLResponse:2:18: note: 'URLResponse' 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 URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:55:23: error: cannot find type 'URLRequest' in scope
53 | // MARK: - Network Error Logger
54 | public protocol NetworkErrorLogger {
55 | func log(request: URLRequest)
| `- error: cannot find type 'URLRequest' in scope
56 | func log(responseData data: Data?, response: URLResponse?)
57 | func log(error: Error)
[5/12] Compiling AFNetworks NetworkConfig.swift
[6/12] Compiling AFNetworks Endpoint.swift
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/Endpoint.swift:76:72: error: cannot find type 'URLRequest' in scope
74 | var bodyJsonSerializationOption: JSONSerialization.WritingOptions? { get }
75 |
76 | func urlRequest(with networkConfig: NetworkConfigurable) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
77 | }
78 |
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/Endpoint.swift:102:72: error: cannot find type 'URLRequest' in scope
100 | }
101 |
102 | public func urlRequest(with config: NetworkConfigurable) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
103 |
104 | let url = try self.url(with: config)
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/Endpoint.swift:105:26: error: cannot find 'URLRequest' in scope
103 |
104 | let url = try self.url(with: config)
105 | var urlRequest = URLRequest(url: url)
| `- error: cannot find 'URLRequest' in scope
106 | var allHeaders: [String: String] = config.headers
107 |
error: emit-module command failed with exit code 1 (use -v to see invocation)
[7/12] Compiling AFNetworks DefaultDataTransferErrorResolver.swift
[8/12] Compiling AFNetworks DefaultDataTransferService.swift
[9/12] Compiling AFNetworks DataTransfer Service + ErrorResolver + ErrorLogger.swift
[10/12] Compiling AFNetworks DefaultDataTransferErrorLogger.swift
[11/12] Emitting module AFNetworks
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/Endpoint.swift:76:72: error: cannot find type 'URLRequest' in scope
74 | var bodyJsonSerializationOption: JSONSerialization.WritingOptions? { get }
75 |
76 | func urlRequest(with networkConfig: NetworkConfigurable) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
77 | }
78 |
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/Endpoint.swift:102:72: error: cannot find type 'URLRequest' in scope
100 | }
101 |
102 | public func urlRequest(with config: NetworkConfigurable) throws -> URLRequest {
| `- error: cannot find type 'URLRequest' in scope
103 |
104 | let url = try self.url(with: config)
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:50:32: error: cannot find type 'URLRequest' in scope
48 | typealias CompletionHandler = (Data?, URLResponse?, Error?) -> Void
49 |
50 | func request(_ urlRequest: URLRequest, completion: @escaping CompletionHandler) -> NetworkCancellable
| `- error: cannot find type 'URLRequest' in scope
51 | }
52 |
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:55:23: error: cannot find type 'URLRequest' in scope
53 | // MARK: - Network Error Logger
54 | public protocol NetworkErrorLogger {
55 | func log(request: URLRequest)
| `- error: cannot find type 'URLRequest' in scope
56 | func log(responseData data: Data?, response: URLResponse?)
57 | func log(error: Error)
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/DefaultNetworkService/DefaultNetworkService.swift:23:35: error: cannot find type 'URLRequest' in scope
21 | }
22 |
23 | private func request(request: URLRequest, completion: @escaping CompletionHandler) -> NetworkCancellable {
| `- error: cannot find type 'URLRequest' in scope
24 |
25 | let sessionDataTask = sessionManager.request(request) { (data, urlResponse, requestError) in
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/DefaultNetworkSessionManager/DefaultSessionManager.swift:18:36: error: cannot find type 'URLRequest' in scope
16 | public init() {}
17 |
18 | public func request(_ request: URLRequest,
| `- error: cannot find type 'URLRequest' in scope
19 | completion: @escaping CompletionHandler) -> NetworkCancellable {
20 | let task = URLSession.shared.dataTask(with: request, completionHandler: completion)
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/ErrorLogger/DefaultNetworkErrorLogger.swift:15:30: error: cannot find type 'URLRequest' in scope
13 | public init() { }
14 |
15 | public func log(request: URLRequest) {
| `- error: cannot find type 'URLRequest' in scope
16 | #if DEBUG
17 | print("-------------")
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/ErrorLogger/DefaultNetworkErrorLogger.swift:30:57: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
28 | }
29 |
30 | public func log(responseData data: Data?, response: URLResponse?) {
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
31 | #if DEBUG
32 | guard let data = data else { return }
Foundation.URLResponse:2:18: note: 'URLResponse' 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 URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:37:1: error: non-nominal type 'URLSessionTask' (aka 'AnyObject') cannot be extended
35 | }
36 |
37 | extension URLSessionTask: NetworkCancellable { }
| `- error: non-nominal type 'URLSessionTask' (aka 'AnyObject') cannot be extended
38 |
39 | // MARK: - Network Service Protocol
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:48:43: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
46 | // MARK: - Network Session Manager Protocol
47 | public protocol NetworkSessionManager {
48 | typealias CompletionHandler = (Data?, URLResponse?, Error?) -> Void
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
49 |
50 | func request(_ urlRequest: URLRequest, completion: @escaping CompletionHandler) -> NetworkCancellable
Foundation.URLResponse:2:18: note: 'URLResponse' 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 URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:56:50: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
54 | public protocol NetworkErrorLogger {
55 | func log(request: URLRequest)
56 | func log(responseData data: Data?, response: URLResponse?)
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
57 | func log(error: Error)
58 | }
Foundation.URLResponse:2:18: note: 'URLResponse' 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 URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
[12/12] Compiling AFNetworks NetworkService + SessionManager + ErrorLogger.swift
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:37:1: error: non-nominal type 'URLSessionTask' (aka 'AnyObject') cannot be extended
35 | }
36 |
37 | extension URLSessionTask: NetworkCancellable { }
| `- error: non-nominal type 'URLSessionTask' (aka 'AnyObject') cannot be extended
38 |
39 | // MARK: - Network Service Protocol
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/Endpoint.swift:76:72: error: cannot find type 'URLRequest' in scope
74 | var bodyJsonSerializationOption: JSONSerialization.WritingOptions? { get }
75 |
76 | func urlRequest(with networkConfig: NetworkConfigurable) throws -> URLRequest
| `- error: cannot find type 'URLRequest' in scope
77 | }
78 |
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:48:43: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
46 | // MARK: - Network Session Manager Protocol
47 | public protocol NetworkSessionManager {
48 | typealias CompletionHandler = (Data?, URLResponse?, Error?) -> Void
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
49 |
50 | func request(_ urlRequest: URLRequest, completion: @escaping CompletionHandler) -> NetworkCancellable
Foundation.URLResponse:2:18: note: 'URLResponse' 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 URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:50:32: error: cannot find type 'URLRequest' in scope
48 | typealias CompletionHandler = (Data?, URLResponse?, Error?) -> Void
49 |
50 | func request(_ urlRequest: URLRequest, completion: @escaping CompletionHandler) -> NetworkCancellable
| `- error: cannot find type 'URLRequest' in scope
51 | }
52 |
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:55:23: error: cannot find type 'URLRequest' in scope
53 | // MARK: - Network Error Logger
54 | public protocol NetworkErrorLogger {
55 | func log(request: URLRequest)
| `- error: cannot find type 'URLRequest' in scope
56 | func log(responseData data: Data?, response: URLResponse?)
57 | func log(error: Error)
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/NetworkService + SessionManager/NetworkService + SessionManager + ErrorLogger.swift:56:50: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
54 | public protocol NetworkErrorLogger {
55 | func log(request: URLRequest)
56 | func log(responseData data: Data?, response: URLResponse?)
| `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
57 | func log(error: Error)
58 | }
Foundation.URLResponse:2:18: note: 'URLResponse' 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 URLResponse = AnyObject
| `- note: 'URLResponse' has been explicitly marked unavailable here
BUILD FAILURE 6.1 android