The Swift Package Index logo.Swift Package Index

Build Information

Failed to build Apexy with Swift 5.10 for Linux.

Build Command

bash -c docker run --rm -v "checkouts-4609320-0":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-5.10-latest swift build 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.29.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/RedMadRobot/apexy-ios.git
Reference: 1.7.4
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/RedMadRobot/apexy-ios
 * tag               1.7.4      -> FETCH_HEAD
HEAD is now at c7d75f8 Add session delegate to initializer (#44)
Cloned https://github.com/RedMadRobot/apexy-ios.git
Revision (git rev-parse @):
c7d75f8c39c8ee92a7069669604c5ee0cb46be0f
SUCCESS checkout https://github.com/RedMadRobot/apexy-ios.git at 1.7.4
========================================
Build
========================================
Selected platform:         linux
Swift version:             5.10
Building package at path:  $workDir
https://github.com/RedMadRobot/apexy-ios.git
Running build ...
bash -c docker run --rm -v "checkouts-4609320-0":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-5.10-latest swift build 2>&1
Fetching https://github.com/Alamofire/Alamofire.git
[1/28068] Fetching alamofire
Fetched https://github.com/Alamofire/Alamofire.git from cache (2.92s)
Computing version for https://github.com/Alamofire/Alamofire.git
Computed https://github.com/Alamofire/Alamofire.git at 5.6.2 (0.45s)
Creating working copy for https://github.com/Alamofire/Alamofire.git
Working copy of https://github.com/Alamofire/Alamofire.git resolved at 5.6.2
Building for debugging...
[0/6] Write sources
[5/6] Write swift-version-24593BA9C3E375BF.txt
[7/48] Emitting module Alamofire
[8/52] Compiling Apexy HTTPBody.swift
[9/52] Compiling Apexy Endpoint.swift
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:22:34: error: cannot find type 'URLRequest' in scope
    func makeRequest() throws -> URLRequest
                                 ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:31:33: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    func content(from response: URLResponse?, with body: Data) throws -> Content
                                ^~~~~~~~~~~
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
public typealias URLResponse = AnyObject
                 ^
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:40:30: error: cannot find type 'URLRequest' in scope
    func validate(_ request: URLRequest?, response: HTTPURLResponse, data: Data?) throws
                             ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:40:53: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    func validate(_ request: URLRequest?, response: HTTPURLResponse, data: Data?) throws
                                                    ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:44:30: error: cannot find type 'URLRequest' in scope
    func validate(_ request: URLRequest?, response: HTTPURLResponse, data: Data?) throws { }
                             ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:44:53: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    func validate(_ request: URLRequest?, response: HTTPURLResponse, data: Data?) throws { }
                                                    ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
[10/52] Compiling Alamofire URLEncodedFormEncoder.swift
[11/52] Compiling Alamofire URLRequest+Alamofire.swift
[12/52] Compiling Alamofire URLSessionConfiguration+Alamofire.swift
[13/52] Compiling Alamofire Validation.swift
[14/53] Compiling Apexy ResponseObserver.swift
/host/spi-builder-workspace/Sources/Apexy/ResponseObserver.swift:10:38: error: cannot find type 'URLRequest' in scope
public typealias ResponseObserver = (URLRequest?, HTTPURLResponse?, Data?, Error?) -> Void
                                     ^~~~~~~~~~
[15/53] Compiling Apexy URLRequestBuildable.swift
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:11:58: error: cannot find type 'URLRequest' in scope
    func get(_ url: URL, queryItems: [URLQueryItem]?) -> URLRequest
                                                         ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:12:47: error: cannot find type 'URLRequest' in scope
    func post(_ url: URL, body: HTTPBody?) -> URLRequest
                                              ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:13:47: error: cannot find type 'URLRequest' in scope
    func patch(_ url: URL, body: HTTPBody) -> URLRequest
                                              ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:14:45: error: cannot find type 'URLRequest' in scope
    func put(_ url: URL, body: HTTPBody) -> URLRequest
                                            ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:15:32: error: cannot find type 'URLRequest' in scope
    func delete(_ url: URL) -> URLRequest
                               ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:26:64: error: cannot find type 'URLRequest' in scope
    func get(_ url: URL, queryItems: [URLQueryItem]? = nil) -> URLRequest {
                                                               ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:47:47: error: cannot find type 'URLRequest' in scope
    func post(_ url: URL, body: HTTPBody?) -> URLRequest {
                                              ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:64:47: error: cannot find type 'URLRequest' in scope
    func patch(_ url: URL, body: HTTPBody) -> URLRequest {
                                              ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:76:45: error: cannot find type 'URLRequest' in scope
    func put(_ url: URL, body: HTTPBody) -> URLRequest {
                                            ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:87:32: error: cannot find type 'URLRequest' in scope
    func delete(_ url: URL) -> URLRequest {
                               ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:48:23: error: cannot find 'URLRequest' in scope
        var request = URLRequest(url: url)
                      ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:88:23: error: cannot find 'URLRequest' in scope
        var request = URLRequest(url: url)
                      ^~~~~~~~~~
[16/53] Compiling Alamofire ResponseSerialization.swift
[17/53] Compiling Alamofire Result+Alamofire.swift
[18/53] Compiling Alamofire RetryPolicy.swift
[19/53] Compiling Alamofire ServerTrustEvaluation.swift
[20/53] Compiling Alamofire OperationQueue+Alamofire.swift
[21/53] Compiling Alamofire ParameterEncoder.swift
[22/53] Compiling Alamofire ParameterEncoding.swift
[23/53] Compiling Alamofire Protected.swift
[24/53] Compiling Alamofire RedirectHandler.swift
[25/53] Compiling Alamofire HTTPMethod.swift
[26/53] Compiling Alamofire MultipartFormData.swift
[27/53] Compiling Alamofire MultipartUpload.swift
[28/53] Compiling Alamofire NetworkReachabilityManager.swift
[29/53] Compiling Alamofire Notifications.swift
[30/53] Compiling Apexy CombineClient.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[31/53] Compiling Apexy ConcurrencyClient.swift
[32/53] Compiling Alamofire AFError.swift
[33/53] Compiling Alamofire Alamofire.swift
[34/53] Emitting module Apexy
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:22:34: error: cannot find type 'URLRequest' in scope
    func makeRequest() throws -> URLRequest
                                 ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:31:33: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    func content(from response: URLResponse?, with body: Data) throws -> Content
                                ^~~~~~~~~~~
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
public typealias URLResponse = AnyObject
                 ^
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:40:30: error: cannot find type 'URLRequest' in scope
    func validate(_ request: URLRequest?, response: HTTPURLResponse, data: Data?) throws
                             ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:40:53: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    func validate(_ request: URLRequest?, response: HTTPURLResponse, data: Data?) throws
                                                    ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:44:30: error: cannot find type 'URLRequest' in scope
    func validate(_ request: URLRequest?, response: HTTPURLResponse, data: Data?) throws { }
                             ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:44:53: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    func validate(_ request: URLRequest?, response: HTTPURLResponse, data: Data?) throws { }
                                                    ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/Sources/Apexy/ResponseObserver.swift:10:38: error: cannot find type 'URLRequest' in scope
public typealias ResponseObserver = (URLRequest?, HTTPURLResponse?, Data?, Error?) -> Void
                                     ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:11:58: error: cannot find type 'URLRequest' in scope
    func get(_ url: URL, queryItems: [URLQueryItem]?) -> URLRequest
                                                         ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:12:47: error: cannot find type 'URLRequest' in scope
    func post(_ url: URL, body: HTTPBody?) -> URLRequest
                                              ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:13:47: error: cannot find type 'URLRequest' in scope
    func patch(_ url: URL, body: HTTPBody) -> URLRequest
                                              ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:14:45: error: cannot find type 'URLRequest' in scope
    func put(_ url: URL, body: HTTPBody) -> URLRequest
                                            ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:15:32: error: cannot find type 'URLRequest' in scope
    func delete(_ url: URL) -> URLRequest
                               ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:26:64: error: cannot find type 'URLRequest' in scope
    func get(_ url: URL, queryItems: [URLQueryItem]? = nil) -> URLRequest {
                                                               ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:47:47: error: cannot find type 'URLRequest' in scope
    func post(_ url: URL, body: HTTPBody?) -> URLRequest {
                                              ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:64:47: error: cannot find type 'URLRequest' in scope
    func patch(_ url: URL, body: HTTPBody) -> URLRequest {
                                              ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:76:45: error: cannot find type 'URLRequest' in scope
    func put(_ url: URL, body: HTTPBody) -> URLRequest {
                                            ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:87:32: error: cannot find type 'URLRequest' in scope
    func delete(_ url: URL) -> URLRequest {
                               ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/UploadEndpoint.swift:26:35: error: cannot find type 'URLRequest' in scope
    func makeRequest() throws -> (URLRequest, UploadEndpointBody)
                                  ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/UploadEndpoint.swift:35:33: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    func content(from response: URLResponse?, with body: Data) throws -> Content
                                ^~~~~~~~~~~
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
public typealias URLResponse = AnyObject
                 ^
[35/53] Compiling Alamofire Request.swift
[36/53] Compiling Alamofire RequestInterceptor.swift
[37/53] Compiling Alamofire RequestTaskMap.swift
[38/53] Compiling Alamofire Response.swift
[39/53] Compiling Alamofire Session.swift
[40/53] Compiling Alamofire SessionDelegate.swift
[41/53] Compiling Alamofire StringEncoding+Alamofire.swift
[42/53] Compiling Alamofire URLConvertible+URLRequestConvertible.swift
[43/53] Compiling Apexy UploadEndpoint.swift
/host/spi-builder-workspace/Sources/Apexy/UploadEndpoint.swift:26:35: error: cannot find type 'URLRequest' in scope
    func makeRequest() throws -> (URLRequest, UploadEndpointBody)
                                  ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/UploadEndpoint.swift:35:33: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    func content(from response: URLResponse?, with body: Data) throws -> Content
                                ^~~~~~~~~~~
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
public typealias URLResponse = AnyObject
                 ^
[46/53] Compiling Alamofire AlamofireExtended.swift
[47/53] Compiling Alamofire AuthenticationInterceptor.swift
[48/53] Compiling Alamofire CachedResponseHandler.swift
[49/53] Compiling Alamofire Combine.swift
[50/53] Compiling Alamofire Concurrency.swift
[51/53] Compiling Alamofire DispatchQueue+Alamofire.swift
[52/53] Compiling Alamofire EventMonitor.swift
[53/53] Compiling Alamofire HTTPHeaders.swift
error: fatalError
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[2/6] Emitting module Apexy
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:22:34: error: cannot find type 'URLRequest' in scope
    func makeRequest() throws -> URLRequest
                                 ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:31:33: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    func content(from response: URLResponse?, with body: Data) throws -> Content
                                ^~~~~~~~~~~
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
public typealias URLResponse = AnyObject
                 ^
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:40:30: error: cannot find type 'URLRequest' in scope
    func validate(_ request: URLRequest?, response: HTTPURLResponse, data: Data?) throws
                             ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:40:53: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    func validate(_ request: URLRequest?, response: HTTPURLResponse, data: Data?) throws
                                                    ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:44:30: error: cannot find type 'URLRequest' in scope
    func validate(_ request: URLRequest?, response: HTTPURLResponse, data: Data?) throws { }
                             ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:44:53: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    func validate(_ request: URLRequest?, response: HTTPURLResponse, data: Data?) throws { }
                                                    ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/Sources/Apexy/ResponseObserver.swift:10:38: error: cannot find type 'URLRequest' in scope
public typealias ResponseObserver = (URLRequest?, HTTPURLResponse?, Data?, Error?) -> Void
                                     ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:11:58: error: cannot find type 'URLRequest' in scope
    func get(_ url: URL, queryItems: [URLQueryItem]?) -> URLRequest
                                                         ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:12:47: error: cannot find type 'URLRequest' in scope
    func post(_ url: URL, body: HTTPBody?) -> URLRequest
                                              ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:13:47: error: cannot find type 'URLRequest' in scope
    func patch(_ url: URL, body: HTTPBody) -> URLRequest
                                              ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:14:45: error: cannot find type 'URLRequest' in scope
    func put(_ url: URL, body: HTTPBody) -> URLRequest
                                            ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:15:32: error: cannot find type 'URLRequest' in scope
    func delete(_ url: URL) -> URLRequest
                               ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:26:64: error: cannot find type 'URLRequest' in scope
    func get(_ url: URL, queryItems: [URLQueryItem]? = nil) -> URLRequest {
                                                               ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:47:47: error: cannot find type 'URLRequest' in scope
    func post(_ url: URL, body: HTTPBody?) -> URLRequest {
                                              ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:64:47: error: cannot find type 'URLRequest' in scope
    func patch(_ url: URL, body: HTTPBody) -> URLRequest {
                                              ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:76:45: error: cannot find type 'URLRequest' in scope
    func put(_ url: URL, body: HTTPBody) -> URLRequest {
                                            ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:87:32: error: cannot find type 'URLRequest' in scope
    func delete(_ url: URL) -> URLRequest {
                               ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/UploadEndpoint.swift:26:35: error: cannot find type 'URLRequest' in scope
    func makeRequest() throws -> (URLRequest, UploadEndpointBody)
                                  ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/UploadEndpoint.swift:35:33: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    func content(from response: URLResponse?, with body: Data) throws -> Content
                                ^~~~~~~~~~~
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
public typealias URLResponse = AnyObject
                 ^
[3/7] Compiling Apexy UploadEndpoint.swift
/host/spi-builder-workspace/Sources/Apexy/UploadEndpoint.swift:26:35: error: cannot find type 'URLRequest' in scope
    func makeRequest() throws -> (URLRequest, UploadEndpointBody)
                                  ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/UploadEndpoint.swift:35:33: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    func content(from response: URLResponse?, with body: Data) throws -> Content
                                ^~~~~~~~~~~
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
public typealias URLResponse = AnyObject
                 ^
[4/7] Compiling Apexy URLRequestBuildable.swift
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:11:58: error: cannot find type 'URLRequest' in scope
    func get(_ url: URL, queryItems: [URLQueryItem]?) -> URLRequest
                                                         ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:12:47: error: cannot find type 'URLRequest' in scope
    func post(_ url: URL, body: HTTPBody?) -> URLRequest
                                              ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:13:47: error: cannot find type 'URLRequest' in scope
    func patch(_ url: URL, body: HTTPBody) -> URLRequest
                                              ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:14:45: error: cannot find type 'URLRequest' in scope
    func put(_ url: URL, body: HTTPBody) -> URLRequest
                                            ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:15:32: error: cannot find type 'URLRequest' in scope
    func delete(_ url: URL) -> URLRequest
                               ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:26:64: error: cannot find type 'URLRequest' in scope
    func get(_ url: URL, queryItems: [URLQueryItem]? = nil) -> URLRequest {
                                                               ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:47:47: error: cannot find type 'URLRequest' in scope
    func post(_ url: URL, body: HTTPBody?) -> URLRequest {
                                              ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:64:47: error: cannot find type 'URLRequest' in scope
    func patch(_ url: URL, body: HTTPBody) -> URLRequest {
                                              ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:76:45: error: cannot find type 'URLRequest' in scope
    func put(_ url: URL, body: HTTPBody) -> URLRequest {
                                            ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:87:32: error: cannot find type 'URLRequest' in scope
    func delete(_ url: URL) -> URLRequest {
                               ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:48:23: error: cannot find 'URLRequest' in scope
        var request = URLRequest(url: url)
                      ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:88:23: error: cannot find 'URLRequest' in scope
        var request = URLRequest(url: url)
                      ^~~~~~~~~~
[5/7] Compiling Apexy ResponseObserver.swift
/host/spi-builder-workspace/Sources/Apexy/ResponseObserver.swift:10:38: error: cannot find type 'URLRequest' in scope
public typealias ResponseObserver = (URLRequest?, HTTPURLResponse?, Data?, Error?) -> Void
                                     ^~~~~~~~~~
[6/7] Compiling Apexy Endpoint.swift
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:22:34: error: cannot find type 'URLRequest' in scope
    func makeRequest() throws -> URLRequest
                                 ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:31:33: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    func content(from response: URLResponse?, with body: Data) throws -> Content
                                ^~~~~~~~~~~
Foundation.URLResponse:2:18: note: 'URLResponse' has been explicitly marked unavailable here
public typealias URLResponse = AnyObject
                 ^
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:40:30: error: cannot find type 'URLRequest' in scope
    func validate(_ request: URLRequest?, response: HTTPURLResponse, data: Data?) throws
                             ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:40:53: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    func validate(_ request: URLRequest?, response: HTTPURLResponse, data: Data?) throws
                                                    ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:44:30: error: cannot find type 'URLRequest' in scope
    func validate(_ request: URLRequest?, response: HTTPURLResponse, data: Data?) throws { }
                             ^~~~~~~~~~
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:44:53: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
    func validate(_ request: URLRequest?, response: HTTPURLResponse, data: Data?) throws { }
                                                    ^~~~~~~~~~~~~~~
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
public typealias HTTPURLResponse = AnyObject
                 ^
error: fatalError
BUILD FAILURE 5.10 linux

Build Machine: Linux 2