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 0.3.1 (61b725), with Swift 6.0 for Linux on 27 Nov 2024 11:58:51 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/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 -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

Build Log

========================================
RunAll
========================================
Builder version: 4.58.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/iCell/CryptoCurrencyKit.git
Reference: 0.3.1
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
 * tag               0.3.1      -> FETCH_HEAD
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 0.3.1
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $PWD
https://github.com/iCell/CryptoCurrencyKit.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/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 -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.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
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/8] Compiling CryptoCurrencyKit Ticker.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[4/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 {
[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 Global.swift
[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 {
BUILD FAILURE 6.0 linux