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 Changelly, reference master (cf12ab), with Swift 6.0 for Linux on 31 Oct 2024 09:14:03 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" 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.56.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/coinpaprika/changelly-api-swift-client.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/coinpaprika/changelly-api-swift-client
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at cf12ab4 [SPM] Add Coinpaprika prefix to Networking and NetworkingMocks modules
Cloned https://github.com/coinpaprika/changelly-api-swift-client.git
Revision (git rev-parse @):
cf12ab46bdc74579cd25838bbd5764f102a2ae05
SUCCESS checkout https://github.com/coinpaprika/changelly-api-swift-client.git at master
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $PWD
https://github.com/coinpaprika/changelly-api-swift-client.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" 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
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Fetching https://github.com/coinpaprika/coinpaprika-api-swift-client.git
[1/2930] Fetching coinpaprika-api-swift-client
Fetched https://github.com/coinpaprika/coinpaprika-api-swift-client.git from cache (0.52s)
Computing version for https://github.com/coinpaprika/coinpaprika-api-swift-client.git
Computed https://github.com/coinpaprika/coinpaprika-api-swift-client.git at 2.4.0 (0.59s)
Creating working copy for https://github.com/coinpaprika/coinpaprika-api-swift-client.git
Working copy of https://github.com/coinpaprika/coinpaprika-api-swift-client.git resolved at 2.4.0
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-24593BA9C3E375BF.txt
[4/9] Compiling CoinpaprikaNetworking CodableModel.swift
[5/9] Compiling CoinpaprikaNetworking Errors.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[6/9] Emitting module CoinpaprikaNetworking
/host/spi-builder-workspace/.build/checkouts/coinpaprika-api-swift-client/Sources/Networking/NetworkSession.swift:11:33: error: cannot find type 'URLRequest' in scope
 9 |
10 | public protocol NetworkSession {
11 |     func loadData(with request: URLRequest,
   |                                 `- error: cannot find type 'URLRequest' in scope
12 |                   completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void)
13 | }
/host/spi-builder-workspace/.build/checkouts/coinpaprika-api-swift-client/Sources/Networking/NetworkSession.swift:12:56: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
10 | public protocol NetworkSession {
11 |     func loadData(with request: URLRequest,
12 |                   completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void)
   |                                                        `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
13 | }
14 |
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/.build/checkouts/coinpaprika-api-swift-client/Sources/Networking/NetworkSession.swift:15:1: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended
13 | }
14 |
15 | extension URLSession: NetworkSession {
   | `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended
16 |     public func loadData(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) {
17 |         let task = dataTask(with: request) { (data, response, error) in
/host/spi-builder-workspace/.build/checkouts/coinpaprika-api-swift-client/Sources/Networking/Request.swift:13:62: error: cannot find type 'URLRequest' in scope
 11 | public protocol Requestable {
 12 |     associatedtype Model: Decodable
 13 |     func perform(responseQueue: DispatchQueue?, cachePolicy: URLRequest.CachePolicy?, session: NetworkSession, _ callback: @escaping (Result<Model, Error>) -> Void)
    |                                                              `- error: cannot find type 'URLRequest' in scope
 14 | }
 15 |
/host/spi-builder-workspace/.build/checkouts/coinpaprika-api-swift-client/Sources/Networking/Request.swift:51:37: error: cannot find type 'URLRequest' in scope
 49 |         case bearer(token: String)
 50 |         case custom(headers: [String: String])
 51 |         case dynamic(signer: (inout URLRequest) -> Void)
    |                                     `- error: cannot find type 'URLRequest' in scope
 52 |     }
 53 |
/host/spi-builder-workspace/.build/checkouts/coinpaprika-api-swift-client/Sources/Networking/Request.swift:56:49: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 54 |     private let authorisation: AuthorisationMethod
 55 |
 56 |     public typealias ErrorParser = (_ response: HTTPURLResponse, _ data: Data) -> Error?
    |                                                 `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 57 |     private let errorParser: ErrorParser
 58 |
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/.build/checkouts/coinpaprika-api-swift-client/Sources/Networking/Request.swift:83:75: error: cannot find type 'URLRequest' in scope
 81 |     ///   - cachePolicy: cache policy that should be used in this request
 82 |     ///   - callback: Completion handler triggered on request success & failure
 83 |     public func perform(responseQueue: DispatchQueue? = nil, cachePolicy: URLRequest.CachePolicy? = nil, session: NetworkSession = URLSession.shared, _ callback: @escaping (Result<Model, Error>) -> Void) {
    |                                                                           `- error: cannot find type 'URLRequest' in scope
 84 |         let onQueue = { (_ block: @escaping () -> Void) -> Void in
 85 |             (responseQueue ?? DispatchQueue.main).async(execute: block)
/host/spi-builder-workspace/.build/checkouts/coinpaprika-api-swift-client/Sources/Networking/Request.swift:83:143: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 81 |     ///   - cachePolicy: cache policy that should be used in this request
 82 |     ///   - callback: Completion handler triggered on request success & failure
 83 |     public func perform(responseQueue: DispatchQueue? = nil, cachePolicy: URLRequest.CachePolicy? = nil, session: NetworkSession = URLSession.shared, _ callback: @escaping (Result<Model, Error>) -> Void) {
    |                                                                                                                                               `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 84 |         let onQueue = { (_ block: @escaping () -> Void) -> Void in
 85 |             (responseQueue ?? DispatchQueue.main).async(execute: block)
/host/spi-builder-workspace/.build/checkouts/coinpaprika-api-swift-client/Sources/Networking/Request.swift:138:85: error: cannot find type 'URLRequest' in scope
136 |     }
137 |
138 |     private func buildRequest(cachePolicy: URLRequest.CachePolicy? = nil) throws -> URLRequest {
    |                                                                                     `- error: cannot find type 'URLRequest' in scope
139 |         var request = URLRequest(url: url)
140 |         request.httpMethod = method.rawValue.uppercased()
/host/spi-builder-workspace/.build/checkouts/coinpaprika-api-swift-client/Sources/Networking/Request.swift:138:44: error: cannot find type 'URLRequest' in scope
136 |     }
137 |
138 |     private func buildRequest(cachePolicy: URLRequest.CachePolicy? = nil) throws -> URLRequest {
    |                                            `- error: cannot find type 'URLRequest' in scope
139 |         var request = URLRequest(url: url)
140 |         request.httpMethod = method.rawValue.uppercased()
/host/spi-builder-workspace/.build/checkouts/coinpaprika-api-swift-client/Sources/Networking/Request.swift:204:59: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
202 |     }
203 |
204 |     private func findFailureReason(data: Data?, response: URLResponse?) -> Error {
    |                                                           `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
205 |         guard let response = response as? HTTPURLResponse else {
206 |             return ResponseError.emptyResponse(url: nil)
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
[7/9] Compiling CoinpaprikaNetworking Result.swift
[8/9] Compiling CoinpaprikaNetworking NetworkSession.swift
/host/spi-builder-workspace/.build/checkouts/coinpaprika-api-swift-client/Sources/Networking/NetworkSession.swift:11:33: error: cannot find type 'URLRequest' in scope
 9 |
10 | public protocol NetworkSession {
11 |     func loadData(with request: URLRequest,
   |                                 `- error: cannot find type 'URLRequest' in scope
12 |                   completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void)
13 | }
/host/spi-builder-workspace/.build/checkouts/coinpaprika-api-swift-client/Sources/Networking/NetworkSession.swift:12:56: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
10 | public protocol NetworkSession {
11 |     func loadData(with request: URLRequest,
12 |                   completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void)
   |                                                        `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
13 | }
14 |
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/.build/checkouts/coinpaprika-api-swift-client/Sources/Networking/NetworkSession.swift:15:1: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended
13 | }
14 |
15 | extension URLSession: NetworkSession {
   | `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended
16 |     public func loadData(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) {
17 |         let task = dataTask(with: request) { (data, response, error) in
/host/spi-builder-workspace/.build/checkouts/coinpaprika-api-swift-client/Sources/Networking/NetworkSession.swift:16:40: error: cannot find type 'URLRequest' in scope
14 |
15 | extension URLSession: NetworkSession {
16 |     public func loadData(with request: URLRequest, completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void) {
   |                                        `- error: cannot find type 'URLRequest' in scope
17 |         let task = dataTask(with: request) { (data, response, error) in
18 |             completionHandler(data, response, error)
[9/9] Compiling CoinpaprikaNetworking Request.swift
/host/spi-builder-workspace/.build/checkouts/coinpaprika-api-swift-client/Sources/Networking/Request.swift:13:62: error: cannot find type 'URLRequest' in scope
 11 | public protocol Requestable {
 12 |     associatedtype Model: Decodable
 13 |     func perform(responseQueue: DispatchQueue?, cachePolicy: URLRequest.CachePolicy?, session: NetworkSession, _ callback: @escaping (Result<Model, Error>) -> Void)
    |                                                              `- error: cannot find type 'URLRequest' in scope
 14 | }
 15 |
/host/spi-builder-workspace/.build/checkouts/coinpaprika-api-swift-client/Sources/Networking/Request.swift:51:37: error: cannot find type 'URLRequest' in scope
 49 |         case bearer(token: String)
 50 |         case custom(headers: [String: String])
 51 |         case dynamic(signer: (inout URLRequest) -> Void)
    |                                     `- error: cannot find type 'URLRequest' in scope
 52 |     }
 53 |
/host/spi-builder-workspace/.build/checkouts/coinpaprika-api-swift-client/Sources/Networking/Request.swift:56:49: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 54 |     private let authorisation: AuthorisationMethod
 55 |
 56 |     public typealias ErrorParser = (_ response: HTTPURLResponse, _ data: Data) -> Error?
    |                                                 `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
 57 |     private let errorParser: ErrorParser
 58 |
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/.build/checkouts/coinpaprika-api-swift-client/Sources/Networking/Request.swift:83:75: error: cannot find type 'URLRequest' in scope
 81 |     ///   - cachePolicy: cache policy that should be used in this request
 82 |     ///   - callback: Completion handler triggered on request success & failure
 83 |     public func perform(responseQueue: DispatchQueue? = nil, cachePolicy: URLRequest.CachePolicy? = nil, session: NetworkSession = URLSession.shared, _ callback: @escaping (Result<Model, Error>) -> Void) {
    |                                                                           `- error: cannot find type 'URLRequest' in scope
 84 |         let onQueue = { (_ block: @escaping () -> Void) -> Void in
 85 |             (responseQueue ?? DispatchQueue.main).async(execute: block)
/host/spi-builder-workspace/.build/checkouts/coinpaprika-api-swift-client/Sources/Networking/Request.swift:83:143: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 81 |     ///   - cachePolicy: cache policy that should be used in this request
 82 |     ///   - callback: Completion handler triggered on request success & failure
 83 |     public func perform(responseQueue: DispatchQueue? = nil, cachePolicy: URLRequest.CachePolicy? = nil, session: NetworkSession = URLSession.shared, _ callback: @escaping (Result<Model, Error>) -> Void) {
    |                                                                                                                                               `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
 84 |         let onQueue = { (_ block: @escaping () -> Void) -> Void in
 85 |             (responseQueue ?? DispatchQueue.main).async(execute: block)
/host/spi-builder-workspace/.build/checkouts/coinpaprika-api-swift-client/Sources/Networking/Request.swift:138:85: error: cannot find type 'URLRequest' in scope
136 |     }
137 |
138 |     private func buildRequest(cachePolicy: URLRequest.CachePolicy? = nil) throws -> URLRequest {
    |                                                                                     `- error: cannot find type 'URLRequest' in scope
139 |         var request = URLRequest(url: url)
140 |         request.httpMethod = method.rawValue.uppercased()
/host/spi-builder-workspace/.build/checkouts/coinpaprika-api-swift-client/Sources/Networking/Request.swift:138:44: error: cannot find type 'URLRequest' in scope
136 |     }
137 |
138 |     private func buildRequest(cachePolicy: URLRequest.CachePolicy? = nil) throws -> URLRequest {
    |                                            `- error: cannot find type 'URLRequest' in scope
139 |         var request = URLRequest(url: url)
140 |         request.httpMethod = method.rawValue.uppercased()
/host/spi-builder-workspace/.build/checkouts/coinpaprika-api-swift-client/Sources/Networking/Request.swift:204:59: error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
202 |     }
203 |
204 |     private func findFailureReason(data: Data?, response: URLResponse?) -> Error {
    |                                                           `- error: 'URLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
205 |         guard let response = response as? HTTPURLResponse else {
206 |             return ResponseError.emptyResponse(url: nil)
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/.build/checkouts/coinpaprika-api-swift-client/Sources/Networking/Request.swift:88:22: error: cannot find type 'URLRequest' in scope
 86 |         }
 87 |
 88 |         let request: URLRequest
    |                      `- error: cannot find type 'URLRequest' in scope
 89 |
 90 |         do {
/host/spi-builder-workspace/.build/checkouts/coinpaprika-api-swift-client/Sources/Networking/NetworkSession.swift:11:33: error: cannot find type 'URLRequest' in scope
 9 |
10 | public protocol NetworkSession {
11 |     func loadData(with request: URLRequest,
   |                                 `- error: cannot find type 'URLRequest' in scope
12 |                   completionHandler: @escaping (Data?, URLResponse?, Error?) -> Void)
13 | }
/host/spi-builder-workspace/.build/checkouts/coinpaprika-api-swift-client/Sources/Networking/Request.swift:110:109: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
108 |                 }
109 |             } else {
110 |                 guard let httpResponse = urlResponse as? HTTPURLResponse, (200..<300).contains(httpResponse.statusCode) else {
    |                                                                                                             `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
111 |                     onQueue {
112 |                         callback(Result.failure(self.findFailureReason(data: data, response: urlResponse)))
/host/spi-builder-workspace/.build/checkouts/coinpaprika-api-swift-client/Sources/Networking/Request.swift:139:23: error: cannot find 'URLRequest' in scope
137 |
138 |     private func buildRequest(cachePolicy: URLRequest.CachePolicy? = nil) throws -> URLRequest {
139 |         var request = URLRequest(url: url)
    |                       `- error: cannot find 'URLRequest' in scope
140 |         request.httpMethod = method.rawValue.uppercased()
141 |
/host/spi-builder-workspace/.build/checkouts/coinpaprika-api-swift-client/Sources/Networking/Request.swift:205:43: error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
203 |
204 |     private func findFailureReason(data: Data?, response: URLResponse?) -> Error {
205 |         guard let response = response as? HTTPURLResponse else {
    |                                           `- error: 'HTTPURLResponse' is unavailable: This type has moved to the FoundationNetworking module. Import that module to use it.
206 |             return ResponseError.emptyResponse(url: nil)
207 |         }
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/.build/checkouts/coinpaprika-api-swift-client/Sources/Networking/Request.swift:213:61: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
211 |         }
212 |
213 |         return ResponseError.serverError(httpCode: response.statusCode, url: response.url)
    |                                                             `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
214 |     }
215 |
/host/spi-builder-workspace/.build/checkouts/coinpaprika-api-swift-client/Sources/Networking/Request.swift:213:87: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'url'
211 |         }
212 |
213 |         return ResponseError.serverError(httpCode: response.statusCode, url: response.url)
    |                                                                                       `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'url'
214 |     }
215 |
/host/spi-builder-workspace/.build/checkouts/coinpaprika-api-swift-client/Sources/Networking/Request.swift:218:29: error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
216 |     public static func defaultErrorParser() -> ErrorParser {
217 |         return { (response, data) in
218 |             switch response.statusCode {
    |                             `- error: value of type 'HTTPURLResponse' (aka 'AnyObject') has no member 'statusCode'
219 |               case 429:
220 |                   return ResponseError.requestsLimitExceeded(url: response.url)
BUILD FAILURE 6.0 linux