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 CryptoCurrencyKit, reference master (61b725), with Swift 6.1 for Linux on 25 Apr 2025 21:16:09 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.61.0
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:         linux
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-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu -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
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/8] Compiling CryptoCurrencyKit Ticker.swift
[4/8] Compiling CryptoCurrencyKit Global.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[5/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 {
[6/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 {
[7/8] Compiling CryptoCurrencyKit Graph.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: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: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: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-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/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: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: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: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 {
[3/7] Compiling CryptoCurrencyKit Graph.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[4/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 {
[5/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 {
[6/7] Compiling CryptoCurrencyKit Global.swift
[7/7] Compiling CryptoCurrencyKit Ticker.swift
BUILD FAILURE 6.1 linux