The Swift Package Index logo.Swift Package Index

Build Information

Failed to build AFNetworks, reference 1.0.5 (c786bc), with Swift 6.3 for Wasm on 11 Apr 2026 16:56:06 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/BeAppOnline/AFNetwork.git
Reference: 1.0.5
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
 * tag               1.0.5      -> FETCH_HEAD
HEAD is now at c786bcc fixing bugs
Cloned https://github.com/BeAppOnline/AFNetwork.git
Revision (git rev-parse @):
c786bcc7409be222ebf3390d01c16d3c02a1ab55
SUCCESS checkout https://github.com/BeAppOnline/AFNetwork.git at 1.0.5
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/BeAppOnline/AFNetwork.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1
wasm-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:d69f4e7582c319245442d62a08b2d7c7fd5a0c0c69f5d2ef11d1530cd8d3329b
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[3/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 [#NominalTypes]
35 | }
36 |
37 | extension URLSessionTask: NetworkCancellable { }
   | `- error: non-nominal type 'URLSessionTask' (aka 'AnyObject') cannot be extended [#NominalTypes]
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
[#NominalTypes]: <https://docs.swift.org/compiler/documentation/diagnostics/nominal-types>
[4/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)
[5/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 [#NominalTypes]
35 | }
36 |
37 | extension URLSessionTask: NetworkCancellable { }
   | `- error: non-nominal type 'URLSessionTask' (aka 'AnyObject') cannot be extended [#NominalTypes]
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
[#NominalTypes]: <https://docs.swift.org/compiler/documentation/diagnostics/nominal-types>
[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 DataTransfer Service + ErrorResolver + ErrorLogger.swift
[8/13] Compiling AFNetworks DefaultDataTransferErrorLogger.swift
[9/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 |
[10/13] 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: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))
[11/13] Compiling AFNetworks DefaultDataTransferErrorResolver.swift
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/DataTransferService/DefaultDataTransferService/DefaultDataTransferService.swift:33:17: error: cannot find 'DispatchQueue' in scope
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) }
   |                 `- error: cannot find 'DispatchQueue' in scope
34 |             case .failure(let nError):
35 |                 self.errorLogger.log(error: nError)
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/DataTransferService/DefaultDataTransferService/DefaultDataTransferService.swift:37:17: error: cannot find 'DispatchQueue' in scope
35 |                 self.errorLogger.log(error: nError)
36 |                 let error = self.resolve(networkError: nError)
37 |                 DispatchQueue.main.async { return completion(.failure(error))}
   |                 `- error: cannot find 'DispatchQueue' in scope
38 |             }
39 |         }
[12/13] Compiling AFNetworks DefaultDataTransferService.swift
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/DataTransferService/DefaultDataTransferService/DefaultDataTransferService.swift:33:17: error: cannot find 'DispatchQueue' in scope
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) }
   |                 `- error: cannot find 'DispatchQueue' in scope
34 |             case .failure(let nError):
35 |                 self.errorLogger.log(error: nError)
/host/spi-builder-workspace/Sources/AFNetworks/Infrastucture/Network/DataTransferService/DefaultDataTransferService/DefaultDataTransferService.swift:37:17: error: cannot find 'DispatchQueue' in scope
35 |                 self.errorLogger.log(error: nError)
36 |                 let error = self.resolve(networkError: nError)
37 |                 DispatchQueue.main.async { return completion(.failure(error))}
   |                 `- error: cannot find 'DispatchQueue' in scope
38 |             }
39 |         }
[13/13] Compiling AFNetworks NetworkConfig.swift
BUILD FAILURE 6.3 wasm