The Swift Package Index logo.Swift Package Index

Build Information

Failed to build Coinpaprika, reference master (22daae), with Swift 6.3 for Wasm on 11 Apr 2026 02:41:13 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/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/coinpaprika/coinpaprika-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/coinpaprika-api-swift-client
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 22daaef Adds paging support for tickers. (#14)
Cloned https://github.com/coinpaprika/coinpaprika-api-swift-client.git
Revision (git rev-parse @):
22daaef73cfd79360483cbc51632dc372f23206d
SUCCESS checkout https://github.com/coinpaprika/coinpaprika-api-swift-client.git at master
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/coinpaprika/coinpaprika-api-swift-client.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/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/4] Write sources
[3/4] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[5/10] Compiling CoinpaprikaNetworking Errors.swift
[6/10] Compiling CoinpaprikaNetworking Result.swift
[7/10] Compiling CoinpaprikaNetworking CodableModel.swift
[8/10] Emitting module CoinpaprikaNetworking
/host/spi-builder-workspace/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/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/Sources/Networking/NetworkSession.swift:15:1: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
13 | }
14 |
15 | extension URLSession: NetworkSession {
   | `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
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/Sources/Networking/Request.swift:13:33: error: cannot find type 'DispatchQueue' 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 'DispatchQueue' in scope
 14 | }
 15 |
/host/spi-builder-workspace/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/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/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/Sources/Networking/Request.swift:83:40: error: cannot find type 'DispatchQueue' 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 'DispatchQueue' in scope
 84 |         let onQueue = { (_ block: @escaping () -> Void) -> Void in
 85 |             (responseQueue ?? DispatchQueue.main).async(execute: block)
/host/spi-builder-workspace/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/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/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/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/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
[#NominalTypes]: <https://docs.swift.org/compiler/documentation/diagnostics/nominal-types>
[9/10] Compiling CoinpaprikaNetworking NetworkSession.swift
/host/spi-builder-workspace/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/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/Sources/Networking/NetworkSession.swift:15:1: error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
13 | }
14 |
15 | extension URLSession: NetworkSession {
   | `- error: non-nominal type 'URLSession' (aka 'AnyObject') cannot be extended [#NominalTypes]
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/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)
[#NominalTypes]: <https://docs.swift.org/compiler/documentation/diagnostics/nominal-types>
[10/10] Compiling CoinpaprikaNetworking Request.swift
/host/spi-builder-workspace/Sources/Networking/Request.swift:13:33: error: cannot find type 'DispatchQueue' 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 'DispatchQueue' in scope
 14 | }
 15 |
/host/spi-builder-workspace/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/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/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/Sources/Networking/Request.swift:83:40: error: cannot find type 'DispatchQueue' 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 'DispatchQueue' in scope
 84 |         let onQueue = { (_ block: @escaping () -> Void) -> Void in
 85 |             (responseQueue ?? DispatchQueue.main).async(execute: block)
/host/spi-builder-workspace/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/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/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/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/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/Sources/Networking/Request.swift:85:31: error: cannot find 'DispatchQueue' in scope
 83 |     public func perform(responseQueue: DispatchQueue? = nil, cachePolicy: URLRequest.CachePolicy? = nil, session: NetworkSession = URLSession.shared, _ callback: @escaping (Result<Model, Error>) -> Void) {
 84 |         let onQueue = { (_ block: @escaping () -> Void) -> Void in
 85 |             (responseQueue ?? DispatchQueue.main).async(execute: block)
    |                               `- error: cannot find 'DispatchQueue' in scope
 86 |         }
 87 |
/host/spi-builder-workspace/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/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/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/Sources/Networking/Request.swift:205:39: warning: conditional downcast from 'URLResponse?' (aka 'Optional<AnyObject>') to 'HTTPURLResponse' (aka 'AnyObject') does nothing
203 |
204 |     private func findFailureReason(data: Data?, response: URLResponse?) -> Error {
205 |         guard let response = response as? HTTPURLResponse else {
    |                                       `- warning: conditional downcast from 'URLResponse?' (aka 'Optional<AnyObject>') to 'HTTPURLResponse' (aka 'AnyObject') does nothing
206 |             return ResponseError.emptyResponse(url: nil)
207 |         }
/host/spi-builder-workspace/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/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/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/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.3 wasm