The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Failed to build CryptoCurrencyKit, reference master (61b725), with Swift 6.1 for Wasm on 27 May 2025 18:00:58 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/iCell/CryptoCurrencyKit.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/iCell/CryptoCurrencyKit
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 61b725a update podspec
Cloned https://github.com/iCell/CryptoCurrencyKit.git
Revision (git rev-parse @):
61b725a65643ff9668c02e6915982ace109e2716
SUCCESS checkout https://github.com/iCell/CryptoCurrencyKit.git at master
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/iCell/CryptoCurrencyKit.git
https://github.com/iCell/CryptoCurrencyKit.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
  ],
  "manifest_display_name" : "CryptoCurrencyKit",
  "name" : "CryptoCurrencyKit",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "CryptoCurrencyKit",
      "targets" : [
        "CryptoCurrencyKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "CryptoCurrencyKit",
      "module_type" : "SwiftTarget",
      "name" : "CryptoCurrencyKit",
      "path" : ".",
      "product_memberships" : [
        "CryptoCurrencyKit"
      ],
      "sources" : [
        "Sources/CryptoCurrencyKit.swift",
        "Sources/Global.swift",
        "Sources/Graph.swift",
        "Sources/Request.swift",
        "Sources/Ticker.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[3/8] Emitting module CryptoCurrencyKit
/host/spi-builder-workspace/Sources/Request.swift:31:41: error: cannot find type 'URLRequest' in scope
29 |     }
30 |
31 |     static func requestA<T>(urlRequest: URLRequest, response: ((_ r: ResponseA<T>) -> Void)?) {
   |                                         `- error: cannot find type 'URLRequest' in scope
32 |         URLSession.shared.dataTask(with: urlRequest) { (data, _, error) in
33 |             DispatchQueue.main.async {
/host/spi-builder-workspace/Sources/Request.swift:50:41: error: cannot find type 'URLRequest' in scope
48 |     }
49 |
50 |     static func requestD<T>(urlRequest: URLRequest, response: ((_ r: ResponseD<T>) -> Void)?) {
   |                                         `- error: cannot find type 'URLRequest' in scope
51 |         URLSession.shared.dataTask(with: urlRequest) { (data, _, error) in
52 |             DispatchQueue.main.async {
/host/spi-builder-workspace/Sources/Request.swift:69:40: error: cannot find type 'URLRequest' in scope
67 |     }
68 |
69 |     static func requestRaw(urlRequest: URLRequest, response: ((_ r: ResponseRaw) -> Void)?) {
   |                                        `- error: cannot find type 'URLRequest' in scope
70 |         URLSession.shared.dataTask(with: urlRequest) { (data, _, error) in
71 |             DispatchQueue.main.async {
[4/8] Compiling CryptoCurrencyKit Ticker.swift
[5/8] Compiling CryptoCurrencyKit CryptoCurrencyKit.swift
/host/spi-builder-workspace/Sources/CryptoCurrencyKit.swift:12:26: error: cannot find 'URLRequest' in scope
 10 |         }
 11 |         let url = URL(string: urlString)!
 12 |         let urlRequest = URLRequest(url: url)
    |                          `- error: cannot find 'URLRequest' in scope
 13 |         requestA(urlRequest: urlRequest, response: response)
 14 |     }
/host/spi-builder-workspace/Sources/Request.swift:31:41: error: cannot find type 'URLRequest' in scope
29 |     }
30 |
31 |     static func requestA<T>(urlRequest: URLRequest, response: ((_ r: ResponseA<T>) -> Void)?) {
   |                                         `- error: cannot find type 'URLRequest' in scope
32 |         URLSession.shared.dataTask(with: urlRequest) { (data, _, error) in
33 |             DispatchQueue.main.async {
/host/spi-builder-workspace/Sources/CryptoCurrencyKit.swift:20:26: error: cannot find 'URLRequest' in scope
 18 |         urlString.append(coinName)
 19 |         urlString.append("/?convert=\(convert.rawValue)")
 20 |         let urlRequest = URLRequest(url: URL(string: urlString)!)
    |                          `- error: cannot find 'URLRequest' in scope
 21 |         let closure: ((ResponseA<Ticker>) -> Void)? = { r in
 22 |             switch r {
/host/spi-builder-workspace/Sources/CryptoCurrencyKit.swift:33:26: error: cannot find 'URLRequest' in scope
 31 |
 32 |     public static func fetchGlobal(convert: Money = .usd, response: ((_ r: ResponseD<Global>) -> Void)?) {
 33 |         let urlRequest = URLRequest(url: URL(string: "https://api.coinmarketcap.com/v1/global/")!)
    |                          `- error: cannot find 'URLRequest' in scope
 34 |         requestD(urlRequest: urlRequest, response: response)
 35 |     }
/host/spi-builder-workspace/Sources/Request.swift:50:41: error: cannot find type 'URLRequest' in scope
48 |     }
49 |
50 |     static func requestD<T>(urlRequest: URLRequest, response: ((_ r: ResponseD<T>) -> Void)?) {
   |                                         `- error: cannot find type 'URLRequest' in scope
51 |         URLSession.shared.dataTask(with: urlRequest) { (data, _, error) in
52 |             DispatchQueue.main.async {
/host/spi-builder-workspace/Sources/CryptoCurrencyKit.swift:40:26: error: cannot find 'URLRequest' in scope
 38 |         let fromInterval = Int(fromDate.timeIntervalSince1970 * 1000)
 39 |         let toInterval = Int(toDate.timeIntervalSince1970 * 1000)
 40 |         let urlRequest = URLRequest(url: URL(string: "https://graphs.coinmarketcap.com/currencies/\(coin)/\(fromInterval)/\(toInterval)/")!)
    |                          `- error: cannot find 'URLRequest' in scope
 41 |         requestRaw(urlRequest: urlRequest) { r in
 42 |             switch r {
/host/spi-builder-workspace/Sources/Request.swift:69:40: error: cannot find type 'URLRequest' in scope
67 |     }
68 |
69 |     static func requestRaw(urlRequest: URLRequest, response: ((_ r: ResponseRaw) -> Void)?) {
   |                                        `- error: cannot find type 'URLRequest' in scope
70 |         URLSession.shared.dataTask(with: urlRequest) { (data, _, error) in
71 |             DispatchQueue.main.async {
[6/8] Compiling CryptoCurrencyKit Graph.swift
[7/8] Compiling CryptoCurrencyKit Global.swift
[8/8] Compiling CryptoCurrencyKit Request.swift
/host/spi-builder-workspace/Sources/Request.swift:31:41: error: cannot find type 'URLRequest' in scope
29 |     }
30 |
31 |     static func requestA<T>(urlRequest: URLRequest, response: ((_ r: ResponseA<T>) -> Void)?) {
   |                                         `- error: cannot find type 'URLRequest' in scope
32 |         URLSession.shared.dataTask(with: urlRequest) { (data, _, error) in
33 |             DispatchQueue.main.async {
/host/spi-builder-workspace/Sources/Request.swift:50:41: error: cannot find type 'URLRequest' in scope
48 |     }
49 |
50 |     static func requestD<T>(urlRequest: URLRequest, response: ((_ r: ResponseD<T>) -> Void)?) {
   |                                         `- error: cannot find type 'URLRequest' in scope
51 |         URLSession.shared.dataTask(with: urlRequest) { (data, _, error) in
52 |             DispatchQueue.main.async {
/host/spi-builder-workspace/Sources/Request.swift:69:40: error: cannot find type 'URLRequest' in scope
67 |     }
68 |
69 |     static func requestRaw(urlRequest: URLRequest, response: ((_ r: ResponseRaw) -> Void)?) {
   |                                        `- error: cannot find type 'URLRequest' in scope
70 |         URLSession.shared.dataTask(with: urlRequest) { (data, _, error) in
71 |             DispatchQueue.main.async {
/host/spi-builder-workspace/Sources/Request.swift:33:13: error: cannot find 'DispatchQueue' in scope
31 |     static func requestA<T>(urlRequest: URLRequest, response: ((_ r: ResponseA<T>) -> Void)?) {
32 |         URLSession.shared.dataTask(with: urlRequest) { (data, _, error) in
33 |             DispatchQueue.main.async {
   |             `- error: cannot find 'DispatchQueue' in scope
34 |                 if let data = data {
35 |                     do {
/host/spi-builder-workspace/Sources/Request.swift:32:20: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
30 |
31 |     static func requestA<T>(urlRequest: URLRequest, response: ((_ r: ResponseA<T>) -> Void)?) {
32 |         URLSession.shared.dataTask(with: urlRequest) { (data, _, error) in
   |                    `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
33 |             DispatchQueue.main.async {
34 |                 if let data = data {
/host/spi-builder-workspace/Sources/Request.swift:52:13: error: cannot find 'DispatchQueue' in scope
50 |     static func requestD<T>(urlRequest: URLRequest, response: ((_ r: ResponseD<T>) -> Void)?) {
51 |         URLSession.shared.dataTask(with: urlRequest) { (data, _, error) in
52 |             DispatchQueue.main.async {
   |             `- error: cannot find 'DispatchQueue' in scope
53 |                 if let data = data {
54 |                     do {
/host/spi-builder-workspace/Sources/Request.swift:51:20: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
49 |
50 |     static func requestD<T>(urlRequest: URLRequest, response: ((_ r: ResponseD<T>) -> Void)?) {
51 |         URLSession.shared.dataTask(with: urlRequest) { (data, _, error) in
   |                    `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
52 |             DispatchQueue.main.async {
53 |                 if let data = data {
/host/spi-builder-workspace/Sources/Request.swift:71:13: error: cannot find 'DispatchQueue' in scope
69 |     static func requestRaw(urlRequest: URLRequest, response: ((_ r: ResponseRaw) -> Void)?) {
70 |         URLSession.shared.dataTask(with: urlRequest) { (data, _, error) in
71 |             DispatchQueue.main.async {
   |             `- error: cannot find 'DispatchQueue' in scope
72 |                 if let data = data {
73 |                     response?(ResponseRaw.success(raw: data))
/host/spi-builder-workspace/Sources/Request.swift:70:20: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
68 |
69 |     static func requestRaw(urlRequest: URLRequest, response: ((_ r: ResponseRaw) -> Void)?) {
70 |         URLSession.shared.dataTask(with: urlRequest) { (data, _, error) in
   |                    `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
71 |             DispatchQueue.main.async {
72 |                 if let data = data {
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
[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/7] Emitting module CryptoCurrencyKit
/host/spi-builder-workspace/Sources/Request.swift:31:41: error: cannot find type 'URLRequest' in scope
29 |     }
30 |
31 |     static func requestA<T>(urlRequest: URLRequest, response: ((_ r: ResponseA<T>) -> Void)?) {
   |                                         `- error: cannot find type 'URLRequest' in scope
32 |         URLSession.shared.dataTask(with: urlRequest) { (data, _, error) in
33 |             DispatchQueue.main.async {
/host/spi-builder-workspace/Sources/Request.swift:50:41: error: cannot find type 'URLRequest' in scope
48 |     }
49 |
50 |     static func requestD<T>(urlRequest: URLRequest, response: ((_ r: ResponseD<T>) -> Void)?) {
   |                                         `- error: cannot find type 'URLRequest' in scope
51 |         URLSession.shared.dataTask(with: urlRequest) { (data, _, error) in
52 |             DispatchQueue.main.async {
/host/spi-builder-workspace/Sources/Request.swift:69:40: error: cannot find type 'URLRequest' in scope
67 |     }
68 |
69 |     static func requestRaw(urlRequest: URLRequest, response: ((_ r: ResponseRaw) -> Void)?) {
   |                                        `- error: cannot find type 'URLRequest' in scope
70 |         URLSession.shared.dataTask(with: urlRequest) { (data, _, error) in
71 |             DispatchQueue.main.async {
[3/7] Compiling CryptoCurrencyKit CryptoCurrencyKit.swift
/host/spi-builder-workspace/Sources/CryptoCurrencyKit.swift:12:26: error: cannot find 'URLRequest' in scope
 10 |         }
 11 |         let url = URL(string: urlString)!
 12 |         let urlRequest = URLRequest(url: url)
    |                          `- error: cannot find 'URLRequest' in scope
 13 |         requestA(urlRequest: urlRequest, response: response)
 14 |     }
/host/spi-builder-workspace/Sources/Request.swift:31:41: error: cannot find type 'URLRequest' in scope
29 |     }
30 |
31 |     static func requestA<T>(urlRequest: URLRequest, response: ((_ r: ResponseA<T>) -> Void)?) {
   |                                         `- error: cannot find type 'URLRequest' in scope
32 |         URLSession.shared.dataTask(with: urlRequest) { (data, _, error) in
33 |             DispatchQueue.main.async {
/host/spi-builder-workspace/Sources/CryptoCurrencyKit.swift:20:26: error: cannot find 'URLRequest' in scope
 18 |         urlString.append(coinName)
 19 |         urlString.append("/?convert=\(convert.rawValue)")
 20 |         let urlRequest = URLRequest(url: URL(string: urlString)!)
    |                          `- error: cannot find 'URLRequest' in scope
 21 |         let closure: ((ResponseA<Ticker>) -> Void)? = { r in
 22 |             switch r {
/host/spi-builder-workspace/Sources/CryptoCurrencyKit.swift:33:26: error: cannot find 'URLRequest' in scope
 31 |
 32 |     public static func fetchGlobal(convert: Money = .usd, response: ((_ r: ResponseD<Global>) -> Void)?) {
 33 |         let urlRequest = URLRequest(url: URL(string: "https://api.coinmarketcap.com/v1/global/")!)
    |                          `- error: cannot find 'URLRequest' in scope
 34 |         requestD(urlRequest: urlRequest, response: response)
 35 |     }
/host/spi-builder-workspace/Sources/Request.swift:50:41: error: cannot find type 'URLRequest' in scope
48 |     }
49 |
50 |     static func requestD<T>(urlRequest: URLRequest, response: ((_ r: ResponseD<T>) -> Void)?) {
   |                                         `- error: cannot find type 'URLRequest' in scope
51 |         URLSession.shared.dataTask(with: urlRequest) { (data, _, error) in
52 |             DispatchQueue.main.async {
/host/spi-builder-workspace/Sources/CryptoCurrencyKit.swift:40:26: error: cannot find 'URLRequest' in scope
 38 |         let fromInterval = Int(fromDate.timeIntervalSince1970 * 1000)
 39 |         let toInterval = Int(toDate.timeIntervalSince1970 * 1000)
 40 |         let urlRequest = URLRequest(url: URL(string: "https://graphs.coinmarketcap.com/currencies/\(coin)/\(fromInterval)/\(toInterval)/")!)
    |                          `- error: cannot find 'URLRequest' in scope
 41 |         requestRaw(urlRequest: urlRequest) { r in
 42 |             switch r {
/host/spi-builder-workspace/Sources/Request.swift:69:40: error: cannot find type 'URLRequest' in scope
67 |     }
68 |
69 |     static func requestRaw(urlRequest: URLRequest, response: ((_ r: ResponseRaw) -> Void)?) {
   |                                        `- error: cannot find type 'URLRequest' in scope
70 |         URLSession.shared.dataTask(with: urlRequest) { (data, _, error) in
71 |             DispatchQueue.main.async {
[4/7] Compiling CryptoCurrencyKit Graph.swift
[5/7] Compiling CryptoCurrencyKit Global.swift
[6/7] Compiling CryptoCurrencyKit Ticker.swift
[7/7] Compiling CryptoCurrencyKit Request.swift
/host/spi-builder-workspace/Sources/Request.swift:31:41: error: cannot find type 'URLRequest' in scope
29 |     }
30 |
31 |     static func requestA<T>(urlRequest: URLRequest, response: ((_ r: ResponseA<T>) -> Void)?) {
   |                                         `- error: cannot find type 'URLRequest' in scope
32 |         URLSession.shared.dataTask(with: urlRequest) { (data, _, error) in
33 |             DispatchQueue.main.async {
/host/spi-builder-workspace/Sources/Request.swift:50:41: error: cannot find type 'URLRequest' in scope
48 |     }
49 |
50 |     static func requestD<T>(urlRequest: URLRequest, response: ((_ r: ResponseD<T>) -> Void)?) {
   |                                         `- error: cannot find type 'URLRequest' in scope
51 |         URLSession.shared.dataTask(with: urlRequest) { (data, _, error) in
52 |             DispatchQueue.main.async {
/host/spi-builder-workspace/Sources/Request.swift:69:40: error: cannot find type 'URLRequest' in scope
67 |     }
68 |
69 |     static func requestRaw(urlRequest: URLRequest, response: ((_ r: ResponseRaw) -> Void)?) {
   |                                        `- error: cannot find type 'URLRequest' in scope
70 |         URLSession.shared.dataTask(with: urlRequest) { (data, _, error) in
71 |             DispatchQueue.main.async {
/host/spi-builder-workspace/Sources/Request.swift:33:13: error: cannot find 'DispatchQueue' in scope
31 |     static func requestA<T>(urlRequest: URLRequest, response: ((_ r: ResponseA<T>) -> Void)?) {
32 |         URLSession.shared.dataTask(with: urlRequest) { (data, _, error) in
33 |             DispatchQueue.main.async {
   |             `- error: cannot find 'DispatchQueue' in scope
34 |                 if let data = data {
35 |                     do {
/host/spi-builder-workspace/Sources/Request.swift:32:20: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
30 |
31 |     static func requestA<T>(urlRequest: URLRequest, response: ((_ r: ResponseA<T>) -> Void)?) {
32 |         URLSession.shared.dataTask(with: urlRequest) { (data, _, error) in
   |                    `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
33 |             DispatchQueue.main.async {
34 |                 if let data = data {
/host/spi-builder-workspace/Sources/Request.swift:52:13: error: cannot find 'DispatchQueue' in scope
50 |     static func requestD<T>(urlRequest: URLRequest, response: ((_ r: ResponseD<T>) -> Void)?) {
51 |         URLSession.shared.dataTask(with: urlRequest) { (data, _, error) in
52 |             DispatchQueue.main.async {
   |             `- error: cannot find 'DispatchQueue' in scope
53 |                 if let data = data {
54 |                     do {
/host/spi-builder-workspace/Sources/Request.swift:51:20: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
49 |
50 |     static func requestD<T>(urlRequest: URLRequest, response: ((_ r: ResponseD<T>) -> Void)?) {
51 |         URLSession.shared.dataTask(with: urlRequest) { (data, _, error) in
   |                    `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
52 |             DispatchQueue.main.async {
53 |                 if let data = data {
/host/spi-builder-workspace/Sources/Request.swift:71:13: error: cannot find 'DispatchQueue' in scope
69 |     static func requestRaw(urlRequest: URLRequest, response: ((_ r: ResponseRaw) -> Void)?) {
70 |         URLSession.shared.dataTask(with: urlRequest) { (data, _, error) in
71 |             DispatchQueue.main.async {
   |             `- error: cannot find 'DispatchQueue' in scope
72 |                 if let data = data {
73 |                     response?(ResponseRaw.success(raw: data))
/host/spi-builder-workspace/Sources/Request.swift:70:20: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
68 |
69 |     static func requestRaw(urlRequest: URLRequest, response: ((_ r: ResponseRaw) -> Void)?) {
70 |         URLSession.shared.dataTask(with: urlRequest) { (data, _, error) in
   |                    `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
71 |             DispatchQueue.main.async {
72 |                 if let data = data {
BUILD FAILURE 6.1 wasm