This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build Apexy with Swift 6.0 for Linux.

Build Command

bash -c docker run --rm -v "checkouts-4606859-1":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/RedMadRobot/apexy-ios.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/RedMadRobot/apexy-ios
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
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 master
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $workDir
https://github.com/RedMadRobot/apexy-ios.git
Running build ...
bash -c docker run --rm -v "checkouts-4606859-1":/host -w "$workDir" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete 2>&1
Fetching https://github.com/Alamofire/Alamofire.git
[1/28780] Fetching alamofire
Fetched https://github.com/Alamofire/Alamofire.git from cache (2.74s)
Computing version for https://github.com/Alamofire/Alamofire.git
Computed https://github.com/Alamofire/Alamofire.git at 5.6.2 (0.47s)
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] Compiling Apexy ConcurrencyClient.swift
[8/49] Compiling Apexy URLRequestBuildable.swift
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:11:58: error: cannot find type 'URLRequest' in scope
 9 |
10 | public protocol URLRequestBuildable {
11 |     func get(_ url: URL, queryItems: [URLQueryItem]?) -> URLRequest
   |                                                          `- error: cannot find type 'URLRequest' in scope
12 |     func post(_ url: URL, body: HTTPBody?) -> URLRequest
13 |     func patch(_ url: URL, body: HTTPBody) -> URLRequest
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:12:47: error: cannot find type 'URLRequest' in scope
10 | public protocol URLRequestBuildable {
11 |     func get(_ url: URL, queryItems: [URLQueryItem]?) -> URLRequest
12 |     func post(_ url: URL, body: HTTPBody?) -> URLRequest
   |                                               `- error: cannot find type 'URLRequest' in scope
13 |     func patch(_ url: URL, body: HTTPBody) -> URLRequest
14 |     func put(_ url: URL, body: HTTPBody) -> URLRequest
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:13:47: error: cannot find type 'URLRequest' in scope
11 |     func get(_ url: URL, queryItems: [URLQueryItem]?) -> URLRequest
12 |     func post(_ url: URL, body: HTTPBody?) -> URLRequest
13 |     func patch(_ url: URL, body: HTTPBody) -> URLRequest
   |                                               `- error: cannot find type 'URLRequest' in scope
14 |     func put(_ url: URL, body: HTTPBody) -> URLRequest
15 |     func delete(_ url: URL) -> URLRequest
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:14:45: error: cannot find type 'URLRequest' in scope
12 |     func post(_ url: URL, body: HTTPBody?) -> URLRequest
13 |     func patch(_ url: URL, body: HTTPBody) -> URLRequest
14 |     func put(_ url: URL, body: HTTPBody) -> URLRequest
   |                                             `- error: cannot find type 'URLRequest' in scope
15 |     func delete(_ url: URL) -> URLRequest
16 | }
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:15:32: error: cannot find type 'URLRequest' in scope
13 |     func patch(_ url: URL, body: HTTPBody) -> URLRequest
14 |     func put(_ url: URL, body: HTTPBody) -> URLRequest
15 |     func delete(_ url: URL) -> URLRequest
   |                                `- error: cannot find type 'URLRequest' in scope
16 | }
17 |
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:26:64: error: cannot find type 'URLRequest' in scope
24 |     ///   - queryItems: Request parameters.
25 |     /// - Returns: HTTP GET Request.
26 |     func get(_ url: URL, queryItems: [URLQueryItem]? = nil) -> URLRequest {
   |                                                                `- error: cannot find type 'URLRequest' in scope
27 |         guard let queryItems = queryItems, !queryItems.isEmpty else {
28 |             return URLRequest(url: url)
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:47:47: error: cannot find type 'URLRequest' in scope
45 |     ///   - body: HTTP body.
46 |     /// - Returns: HTTP POST request.
47 |     func post(_ url: URL, body: HTTPBody?) -> URLRequest {
   |                                               `- error: cannot find type 'URLRequest' in scope
48 |         var request = URLRequest(url: url)
49 |         request.httpMethod = "POST"
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:64:47: error: cannot find type 'URLRequest' in scope
62 |     ///   - body: HTTP body.
63 |     /// - Returns: HTTP PATCH request.
64 |     func patch(_ url: URL, body: HTTPBody) -> URLRequest {
   |                                               `- error: cannot find type 'URLRequest' in scope
65 |         var request = post(url, body: body)
66 |         request.httpMethod = "PATCH"
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:76:45: error: cannot find type 'URLRequest' in scope
74 |     ///   - body: HTTP body.
75 |     /// - Returns: HTTP PUT request.
76 |     func put(_ url: URL, body: HTTPBody) -> URLRequest {
   |                                             `- error: cannot find type 'URLRequest' in scope
77 |         var request = post(url, body: body)
78 |         request.httpMethod = "PUT"
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:87:32: error: cannot find type 'URLRequest' in scope
85 |     ///   - url: Request URL.
86 |     /// - Returns: HTTP DELETE request.
87 |     func delete(_ url: URL) -> URLRequest {
   |                                `- error: cannot find type 'URLRequest' in scope
88 |         var request = URLRequest(url: url)
89 |         request.httpMethod = "DELETE"
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:48:23: error: cannot find 'URLRequest' in scope
46 |     /// - Returns: HTTP POST request.
47 |     func post(_ url: URL, body: HTTPBody?) -> URLRequest {
48 |         var request = URLRequest(url: url)
   |                       `- error: cannot find 'URLRequest' in scope
49 |         request.httpMethod = "POST"
50 |
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:88:23: error: cannot find 'URLRequest' in scope
86 |     /// - Returns: HTTP DELETE request.
87 |     func delete(_ url: URL) -> URLRequest {
88 |         var request = URLRequest(url: url)
   |                       `- error: cannot find 'URLRequest' in scope
89 |         request.httpMethod = "DELETE"
90 |         return request
error: emit-module command failed with exit code 1 (use -v to see invocation)
[9/49] Compiling Apexy Endpoint.swift
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:22:34: error: cannot find type 'URLRequest' in scope
20 |     /// - Returns: Resource request.
21 |     /// - Throws: Any error creating request.
22 |     func makeRequest() throws -> URLRequest
   |                                  `- error: cannot find type 'URLRequest' in scope
23 |
24 |     /// Obtain new content from response with body.
/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.
29 |     /// - Returns: A new endpoint content.
30 |     /// - Throws: Any error creating content.
31 |     func content(from response: URLResponse?, with body: Data) throws -> Content
   |                                 `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
32 |
33 |     /// Validate response.
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/Apexy/Endpoint.swift:40:30: error: cannot find type 'URLRequest' in scope
38 |     ///   - data: The response body data.
39 |     /// - Throws: Any response validation error.
40 |     func validate(_ request: URLRequest?, response: HTTPURLResponse, data: Data?) throws
   |                              `- error: cannot find type 'URLRequest' in scope
41 | }
42 |
/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.
38 |     ///   - data: The response body data.
39 |     /// - Throws: Any response validation error.
40 |     func validate(_ request: URLRequest?, response: HTTPURLResponse, data: Data?) throws
   |                                                     `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
41 | }
42 |
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:44:30: error: cannot find type 'URLRequest' in scope
42 |
43 | public extension Endpoint {
44 |     func validate(_ request: URLRequest?, response: HTTPURLResponse, data: Data?) throws { }
   |                              `- error: cannot find type 'URLRequest' in scope
45 | }
46 |
/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.
42 |
43 | public extension Endpoint {
44 |     func validate(_ request: URLRequest?, response: HTTPURLResponse, data: Data?) throws { }
   |                                                     `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
45 | }
46 |
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
[10/49] Emitting module Apexy
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:22:34: error: cannot find type 'URLRequest' in scope
20 |     /// - Returns: Resource request.
21 |     /// - Throws: Any error creating request.
22 |     func makeRequest() throws -> URLRequest
   |                                  `- error: cannot find type 'URLRequest' in scope
23 |
24 |     /// Obtain new content from response with body.
/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.
29 |     /// - Returns: A new endpoint content.
30 |     /// - Throws: Any error creating content.
31 |     func content(from response: URLResponse?, with body: Data) throws -> Content
   |                                 `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
32 |
33 |     /// Validate response.
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/Apexy/Endpoint.swift:40:30: error: cannot find type 'URLRequest' in scope
38 |     ///   - data: The response body data.
39 |     /// - Throws: Any response validation error.
40 |     func validate(_ request: URLRequest?, response: HTTPURLResponse, data: Data?) throws
   |                              `- error: cannot find type 'URLRequest' in scope
41 | }
42 |
/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.
38 |     ///   - data: The response body data.
39 |     /// - Throws: Any response validation error.
40 |     func validate(_ request: URLRequest?, response: HTTPURLResponse, data: Data?) throws
   |                                                     `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
41 | }
42 |
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Apexy/Endpoint.swift:44:30: error: cannot find type 'URLRequest' in scope
42 |
43 | public extension Endpoint {
44 |     func validate(_ request: URLRequest?, response: HTTPURLResponse, data: Data?) throws { }
   |                              `- error: cannot find type 'URLRequest' in scope
45 | }
46 |
/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.
42 |
43 | public extension Endpoint {
44 |     func validate(_ request: URLRequest?, response: HTTPURLResponse, data: Data?) throws { }
   |                                                     `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
45 | }
46 |
Foundation.HTTPURLResponse:2:18: note: 'HTTPURLResponse' has been explicitly marked unavailable here
1 | @available(*, unavailable, message: "This type has moved to the FoundationNetworking module. Import that module to use it.")
2 | public typealias HTTPURLResponse = AnyObject
  |                  `- note: 'HTTPURLResponse' has been explicitly marked unavailable here
/host/spi-builder-workspace/Sources/Apexy/ResponseObserver.swift:10:38: error: cannot find type 'URLRequest' in scope
 8 | import Foundation
 9 |
10 | public typealias ResponseObserver = (URLRequest?, HTTPURLResponse?, Data?, Error?) -> Void
   |                                      `- error: cannot find type 'URLRequest' in scope
11 |
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:11:58: error: cannot find type 'URLRequest' in scope
 9 |
10 | public protocol URLRequestBuildable {
11 |     func get(_ url: URL, queryItems: [URLQueryItem]?) -> URLRequest
   |                                                          `- error: cannot find type 'URLRequest' in scope
12 |     func post(_ url: URL, body: HTTPBody?) -> URLRequest
13 |     func patch(_ url: URL, body: HTTPBody) -> URLRequest
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:12:47: error: cannot find type 'URLRequest' in scope
10 | public protocol URLRequestBuildable {
11 |     func get(_ url: URL, queryItems: [URLQueryItem]?) -> URLRequest
12 |     func post(_ url: URL, body: HTTPBody?) -> URLRequest
   |                                               `- error: cannot find type 'URLRequest' in scope
13 |     func patch(_ url: URL, body: HTTPBody) -> URLRequest
14 |     func put(_ url: URL, body: HTTPBody) -> URLRequest
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:13:47: error: cannot find type 'URLRequest' in scope
11 |     func get(_ url: URL, queryItems: [URLQueryItem]?) -> URLRequest
12 |     func post(_ url: URL, body: HTTPBody?) -> URLRequest
13 |     func patch(_ url: URL, body: HTTPBody) -> URLRequest
   |                                               `- error: cannot find type 'URLRequest' in scope
14 |     func put(_ url: URL, body: HTTPBody) -> URLRequest
15 |     func delete(_ url: URL) -> URLRequest
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:14:45: error: cannot find type 'URLRequest' in scope
12 |     func post(_ url: URL, body: HTTPBody?) -> URLRequest
13 |     func patch(_ url: URL, body: HTTPBody) -> URLRequest
14 |     func put(_ url: URL, body: HTTPBody) -> URLRequest
   |                                             `- error: cannot find type 'URLRequest' in scope
15 |     func delete(_ url: URL) -> URLRequest
16 | }
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:15:32: error: cannot find type 'URLRequest' in scope
13 |     func patch(_ url: URL, body: HTTPBody) -> URLRequest
14 |     func put(_ url: URL, body: HTTPBody) -> URLRequest
15 |     func delete(_ url: URL) -> URLRequest
   |                                `- error: cannot find type 'URLRequest' in scope
16 | }
17 |
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:26:64: error: cannot find type 'URLRequest' in scope
24 |     ///   - queryItems: Request parameters.
25 |     /// - Returns: HTTP GET Request.
26 |     func get(_ url: URL, queryItems: [URLQueryItem]? = nil) -> URLRequest {
   |                                                                `- error: cannot find type 'URLRequest' in scope
27 |         guard let queryItems = queryItems, !queryItems.isEmpty else {
28 |             return URLRequest(url: url)
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:47:47: error: cannot find type 'URLRequest' in scope
45 |     ///   - body: HTTP body.
46 |     /// - Returns: HTTP POST request.
47 |     func post(_ url: URL, body: HTTPBody?) -> URLRequest {
   |                                               `- error: cannot find type 'URLRequest' in scope
48 |         var request = URLRequest(url: url)
49 |         request.httpMethod = "POST"
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:64:47: error: cannot find type 'URLRequest' in scope
62 |     ///   - body: HTTP body.
63 |     /// - Returns: HTTP PATCH request.
64 |     func patch(_ url: URL, body: HTTPBody) -> URLRequest {
   |                                               `- error: cannot find type 'URLRequest' in scope
65 |         var request = post(url, body: body)
66 |         request.httpMethod = "PATCH"
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:76:45: error: cannot find type 'URLRequest' in scope
74 |     ///   - body: HTTP body.
75 |     /// - Returns: HTTP PUT request.
76 |     func put(_ url: URL, body: HTTPBody) -> URLRequest {
   |                                             `- error: cannot find type 'URLRequest' in scope
77 |         var request = post(url, body: body)
78 |         request.httpMethod = "PUT"
/host/spi-builder-workspace/Sources/Apexy/URLRequestBuildable.swift:87:32: error: cannot find type 'URLRequest' in scope
85 |     ///   - url: Request URL.
86 |     /// - Returns: HTTP DELETE request.
87 |     func delete(_ url: URL) -> URLRequest {
   |                                `- error: cannot find type 'URLRequest' in scope
88 |         var request = URLRequest(url: url)
89 |         request.httpMethod = "DELETE"
/host/spi-builder-workspace/Sources/Apexy/UploadEndpoint.swift:26:35: error: cannot find type 'URLRequest' in scope
24 |     /// - Returns: Resource request and uploadable data
25 |     /// - Throws: Any error creating request.
26 |     func makeRequest() throws -> (URLRequest, UploadEndpointBody)
   |                                   `- error: cannot find type 'URLRequest' in scope
27 |
28 |     /// Obtain new content from response with body.
/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.
33 |     /// - Returns: A new endpoint content.
34 |     /// - Throws: Any error creating content.
35 |     func content(from response: URLResponse?, with body: Data) throws -> Content
   |                                 `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
36 |
37 | }
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/49] Compiling Apexy CombineClient.swift
[12/49] Compiling Alamofire Combine.swift
[13/49] Compiling Alamofire Concurrency.swift
[14/49] Compiling Apexy HTTPBody.swift
[15/49] Compiling Apexy UploadEndpoint.swift
/host/spi-builder-workspace/Sources/Apexy/UploadEndpoint.swift:26:35: error: cannot find type 'URLRequest' in scope
24 |     /// - Returns: Resource request and uploadable data
25 |     /// - Throws: Any error creating request.
26 |     func makeRequest() throws -> (URLRequest, UploadEndpointBody)
   |                                   `- error: cannot find type 'URLRequest' in scope
27 |
28 |     /// Obtain new content from response with body.
/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.
33 |     /// - Returns: A new endpoint content.
34 |     /// - Throws: Any error creating content.
35 |     func content(from response: URLResponse?, with body: Data) throws -> Content
   |                                 `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
36 |
37 | }
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
[16/49] Compiling Apexy ResponseObserver.swift
/host/spi-builder-workspace/Sources/Apexy/ResponseObserver.swift:10:38: error: cannot find type 'URLRequest' in scope
 8 | import Foundation
 9 |
10 | public typealias ResponseObserver = (URLRequest?, HTTPURLResponse?, Data?, Error?) -> Void
   |                                      `- error: cannot find type 'URLRequest' in scope
11 |
[17/49] Compiling Alamofire Session.swift
[18/49] Compiling Alamofire SessionDelegate.swift
[19/49] Compiling Alamofire StringEncoding+Alamofire.swift
[20/49] Compiling Alamofire URLConvertible+URLRequestConvertible.swift
[21/53] Compiling Alamofire Request.swift
[22/53] Compiling Alamofire RequestInterceptor.swift
[23/53] Compiling Alamofire RequestTaskMap.swift
[24/53] Compiling Alamofire Response.swift
[25/53] Compiling Alamofire ResponseSerialization.swift
[26/53] Compiling Alamofire Result+Alamofire.swift
[27/53] Compiling Alamofire RetryPolicy.swift
[28/53] Compiling Alamofire ServerTrustEvaluation.swift
[29/53] Compiling Alamofire OperationQueue+Alamofire.swift
[30/53] Compiling Alamofire ParameterEncoder.swift
[31/53] Compiling Alamofire ParameterEncoding.swift
[32/53] Compiling Alamofire Protected.swift
[33/53] Compiling Alamofire RedirectHandler.swift
[34/53] Compiling Alamofire HTTPMethod.swift
[35/53] Compiling Alamofire MultipartFormData.swift
[36/53] Compiling Alamofire MultipartUpload.swift
[37/53] Compiling Alamofire NetworkReachabilityManager.swift
[38/53] Compiling Alamofire Notifications.swift
BUILD FAILURE 6.0 linux
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.