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 GitHub, reference 0.1.0 (15da0d), with Swift 6.0 for Linux on 27 Nov 2024 22:32:16 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/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/eneko/github.git
Reference: 0.1.0
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/eneko/github
 * tag               0.1.0      -> FETCH_HEAD
HEAD is now at 15da0d9 Create FUNDING.yml
Cloned https://github.com/eneko/github.git
Revision (git rev-parse @):
15da0d97d49d7fab76a9847c0cf1c2fe4bd49e55
SUCCESS checkout https://github.com/eneko/github.git at 0.1.0
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $PWD
https://github.com/eneko/github.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/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/7] Compiling GitHub Models.swift
[4/7] Compiling GitHub Client.swift
/host/spi-builder-workspace/Sources/GitHub/Client.swift:22:58: error: cannot find type 'URLRequest' in scope
20 |     }
21 |
22 |     func makeURLRequest(with request: Request) throws -> URLRequest {
   |                                                          `- error: cannot find type 'URLRequest' in scope
23 |         guard let url = URL(string: "https://api.github.com/graphql") else {
24 |             fatalError("Failed to make url")
/host/spi-builder-workspace/Sources/GitHub/Client.swift:37:29: error: cannot find type 'URLRequest' in scope
35 |     }
36 |
37 |     func submit(urlRequest: URLRequest) throws -> Response {
   |                             `- error: cannot find type 'URLRequest' in scope
38 |         var responseData: Response?
39 |         let semaphore = DispatchSemaphore(value: 0)
/host/spi-builder-workspace/Sources/GitHub/Client.swift:53:29: error: cannot find type 'URLRequest' in scope
51 |     }
52 |
53 |     func submit(urlRequest: URLRequest, completion: @escaping CompletionBlock) {
   |                             `- error: cannot find type 'URLRequest' in scope
54 |         let session = URLSession(configuration: URLSessionConfiguration.default, delegate: nil, delegateQueue: OperationQueue())
55 |         let task = session.dataTask(with: urlRequest) { (data, response, error) in
/host/spi-builder-workspace/Sources/GitHub/Client.swift:19:26: error: incorrect argument label in call (have 'urlRequest:', expected 'request:')
17 |     func submit(request: Request) throws -> Response {
18 |         let urlRequest = try makeURLRequest(with: request)
19 |         return try submit(urlRequest: urlRequest)
   |                          `- error: incorrect argument label in call (have 'urlRequest:', expected 'request:')
20 |     }
21 |
/host/spi-builder-workspace/Sources/GitHub/Client.swift:27:26: error: cannot find 'URLRequest' in scope
25 |         }
26 |
27 |         var urlRequest = URLRequest(url: url)
   |                          `- error: cannot find 'URLRequest' in scope
28 |         urlRequest.httpMethod = "POST"
29 |         urlRequest.setValue("bearer \(token)", forHTTPHeaderField: "Authorization")
/host/spi-builder-workspace/Sources/GitHub/Client.swift:40:40: error: extra trailing closure passed in call
38 |         var responseData: Response?
39 |         let semaphore = DispatchSemaphore(value: 0)
40 |         submit(urlRequest: urlRequest) { (response, error) in
   |                                        `- error: extra trailing closure passed in call
41 |             responseData = response
42 |             semaphore.signal()
/host/spi-builder-workspace/Sources/GitHub/Client.swift:54:23: error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
52 |
53 |     func submit(urlRequest: URLRequest, completion: @escaping CompletionBlock) {
54 |         let session = URLSession(configuration: URLSessionConfiguration.default, delegate: nil, delegateQueue: OperationQueue())
   |                       `- error: 'URLSession' (aka 'AnyObject') cannot be constructed because it has no accessible initializers
55 |         let task = session.dataTask(with: urlRequest) { (data, response, error) in
56 |             guard let data = data else {
/host/spi-builder-workspace/Sources/GitHub/Client.swift:54:73: error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
52 |
53 |     func submit(urlRequest: URLRequest, completion: @escaping CompletionBlock) {
54 |         let session = URLSession(configuration: URLSessionConfiguration.default, delegate: nil, delegateQueue: OperationQueue())
   |                                                                         `- error: type 'URLSessionConfiguration' (aka 'AnyObject') has no member 'default'
55 |         let task = session.dataTask(with: urlRequest) { (data, response, error) in
56 |             guard let data = data else {
/host/spi-builder-workspace/Sources/GitHub/Client.swift:54:92: error: 'nil' requires a contextual type
52 |
53 |     func submit(urlRequest: URLRequest, completion: @escaping CompletionBlock) {
54 |         let session = URLSession(configuration: URLSessionConfiguration.default, delegate: nil, delegateQueue: OperationQueue())
   |                                                                                            `- error: 'nil' requires a contextual type
55 |         let task = session.dataTask(with: urlRequest) { (data, response, error) in
56 |             guard let data = data else {
error: emit-module command failed with exit code 1 (use -v to see invocation)
[5/7] Compiling GitHub GitHubError.swift
[6/7] Emitting module GitHub
/host/spi-builder-workspace/Sources/GitHub/Client.swift:22:58: error: cannot find type 'URLRequest' in scope
20 |     }
21 |
22 |     func makeURLRequest(with request: Request) throws -> URLRequest {
   |                                                          `- error: cannot find type 'URLRequest' in scope
23 |         guard let url = URL(string: "https://api.github.com/graphql") else {
24 |             fatalError("Failed to make url")
/host/spi-builder-workspace/Sources/GitHub/Client.swift:37:29: error: cannot find type 'URLRequest' in scope
35 |     }
36 |
37 |     func submit(urlRequest: URLRequest) throws -> Response {
   |                             `- error: cannot find type 'URLRequest' in scope
38 |         var responseData: Response?
39 |         let semaphore = DispatchSemaphore(value: 0)
/host/spi-builder-workspace/Sources/GitHub/Client.swift:53:29: error: cannot find type 'URLRequest' in scope
51 |     }
52 |
53 |     func submit(urlRequest: URLRequest, completion: @escaping CompletionBlock) {
   |                             `- error: cannot find type 'URLRequest' in scope
54 |         let session = URLSession(configuration: URLSessionConfiguration.default, delegate: nil, delegateQueue: OperationQueue())
55 |         let task = session.dataTask(with: urlRequest) { (data, response, error) in
[7/7] Compiling GitHub GitHub.swift
/host/spi-builder-workspace/Sources/GitHub/Client.swift:37:29: error: cannot find type 'URLRequest' in scope
35 |     }
36 |
37 |     func submit(urlRequest: URLRequest) throws -> Response {
   |                             `- error: cannot find type 'URLRequest' in scope
38 |         var responseData: Response?
39 |         let semaphore = DispatchSemaphore(value: 0)
/host/spi-builder-workspace/Sources/GitHub/Client.swift:53:29: error: cannot find type 'URLRequest' in scope
51 |     }
52 |
53 |     func submit(urlRequest: URLRequest, completion: @escaping CompletionBlock) {
   |                             `- error: cannot find type 'URLRequest' in scope
54 |         let session = URLSession(configuration: URLSessionConfiguration.default, delegate: nil, delegateQueue: OperationQueue())
55 |         let task = session.dataTask(with: urlRequest) { (data, response, error) in
BUILD FAILURE 6.0 linux