This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

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 mountebankSwift with Swift 6.0 for Linux.

Build Command

bash -c docker run --rm -v "checkouts-4606859-1":/host -w "$workDir" 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 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/dave-t-c/mountebankSwift.git
Reference: main
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/dave-t-c/mountebankSwift
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 019491b Merge pull request #15 from dave-t-c/create-swift-package-index-yaml
Cloned https://github.com/dave-t-c/mountebankSwift.git
Revision (git rev-parse @):
019491bc33357f4dd1d2bef3d6a8c95e418d3bd8
SPI manifest file found: $workDir/.spi.yml
SUCCESS checkout https://github.com/dave-t-c/mountebankSwift.git at main
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $workDir
https://github.com/dave-t-c/mountebankSwift.git
Running build ...
bash -c docker run --rm -v "checkouts-4606859-1":/host -w "$workDir" 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 2>&1
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/23] Emitting module mountebankSwift
[4/25] Compiling mountebankSwift Fields.swift
[5/25] Compiling mountebankSwift HttpFields.swift
[6/25] Compiling mountebankSwift Predicate.swift
[7/25] Compiling mountebankSwift MountebankClient.swift
[8/25] Compiling mountebankSwift MountebankExceptions.swift
[9/25] Compiling mountebankSwift Constants.swift
[10/25] Compiling mountebankSwift Stub.swift
/host/spi-builder-workspace/Sources/mountebankSwift/RequestWrappers/MountebankRequestWrapper.swift:21:23: error: cannot find 'URLRequest' in scope
19 |             return
20 |         }
21 |         var request = URLRequest(url: url)
   |                       `- error: cannot find 'URLRequest' in scope
22 |         request.httpMethod = "DELETE"
23 |         print("Calling \(request.httpMethod!) \(request.url!)")
/host/spi-builder-workspace/Sources/mountebankSwift/RequestWrappers/MountebankRequestWrapper.swift:25:34: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
23 |         print("Calling \(request.httpMethod!) \(request.url!)")
24 |
25 |         _ = try await URLSession.shared.data(for: request)
   |                                  `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
26 |     }
27 |
/host/spi-builder-workspace/Sources/mountebankSwift/RequestWrappers/MountebankRequestWrapper.swift:32:23: error: cannot find 'URLRequest' in scope
30 |             return
31 |         }
32 |         var request = URLRequest(url: url)
   |                       `- error: cannot find 'URLRequest' in scope
33 |         request.httpMethod = "POST"
34 |         request.httpBody = try JSONEncoder().encode(imposter)
/host/spi-builder-workspace/Sources/mountebankSwift/RequestWrappers/MountebankRequestWrapper.swift:38:50: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
36 |         print("Calling \(request.httpMethod!) \(request.url!)")
37 |
38 |         let (_, response) = try await URLSession.shared.data(for: request)
   |                                                  `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
39 |         guard let httpResponse = response as? HTTPURLResponse else {
40 |             print(Constants.ExceptionMessages.invalidResponseRecievedFromServerMessage)
/host/spi-builder-workspace/Sources/mountebankSwift/RequestWrappers/MountebankRequestWrapper.swift:54:23: error: cannot find 'URLRequest' in scope
52 |             throw MountebankExceptions.unableToRetrieveImposters
53 |         }
54 |         var request = URLRequest(url: url)
   |                       `- error: cannot find 'URLRequest' in scope
55 |         request.httpMethod = "GET"
56 |
/host/spi-builder-workspace/Sources/mountebankSwift/RequestWrappers/MountebankRequestWrapper.swift:57:53: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
55 |         request.httpMethod = "GET"
56 |
57 |         let (data, response) = try await URLSession.shared.data(for: request)
   |                                                     `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
58 |         guard let httpResponse = response as? HTTPURLResponse else {
59 |             print(Constants.ExceptionMessages.invalidResponseRecievedFromServerMessage)
/host/spi-builder-workspace/Sources/mountebankSwift/RequestWrappers/MountebankRequestWrapper.swift:81:23: error: cannot find 'URLRequest' in scope
79 |             throw MountebankExceptions.unableToRetrieveImposter
80 |         }
81 |         var request = URLRequest(url: url)
   |                       `- error: cannot find 'URLRequest' in scope
82 |         request.httpMethod = "GET"
83 |
/host/spi-builder-workspace/Sources/mountebankSwift/RequestWrappers/MountebankRequestWrapper.swift:84:53: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
82 |         request.httpMethod = "GET"
83 |
84 |         let (data, response) = try await URLSession.shared.data(for: request)
   |                                                     `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
85 |         guard let httpResponse = response as? HTTPURLResponse else {
86 |             print(Constants.ExceptionMessages.invalidResponseRecievedFromServerMessage)
[11/25] Compiling mountebankSwift MountebankRequestWrapper.swift
/host/spi-builder-workspace/Sources/mountebankSwift/RequestWrappers/MountebankRequestWrapper.swift:21:23: error: cannot find 'URLRequest' in scope
19 |             return
20 |         }
21 |         var request = URLRequest(url: url)
   |                       `- error: cannot find 'URLRequest' in scope
22 |         request.httpMethod = "DELETE"
23 |         print("Calling \(request.httpMethod!) \(request.url!)")
/host/spi-builder-workspace/Sources/mountebankSwift/RequestWrappers/MountebankRequestWrapper.swift:25:34: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
23 |         print("Calling \(request.httpMethod!) \(request.url!)")
24 |
25 |         _ = try await URLSession.shared.data(for: request)
   |                                  `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
26 |     }
27 |
/host/spi-builder-workspace/Sources/mountebankSwift/RequestWrappers/MountebankRequestWrapper.swift:32:23: error: cannot find 'URLRequest' in scope
30 |             return
31 |         }
32 |         var request = URLRequest(url: url)
   |                       `- error: cannot find 'URLRequest' in scope
33 |         request.httpMethod = "POST"
34 |         request.httpBody = try JSONEncoder().encode(imposter)
/host/spi-builder-workspace/Sources/mountebankSwift/RequestWrappers/MountebankRequestWrapper.swift:38:50: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
36 |         print("Calling \(request.httpMethod!) \(request.url!)")
37 |
38 |         let (_, response) = try await URLSession.shared.data(for: request)
   |                                                  `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
39 |         guard let httpResponse = response as? HTTPURLResponse else {
40 |             print(Constants.ExceptionMessages.invalidResponseRecievedFromServerMessage)
/host/spi-builder-workspace/Sources/mountebankSwift/RequestWrappers/MountebankRequestWrapper.swift:54:23: error: cannot find 'URLRequest' in scope
52 |             throw MountebankExceptions.unableToRetrieveImposters
53 |         }
54 |         var request = URLRequest(url: url)
   |                       `- error: cannot find 'URLRequest' in scope
55 |         request.httpMethod = "GET"
56 |
/host/spi-builder-workspace/Sources/mountebankSwift/RequestWrappers/MountebankRequestWrapper.swift:57:53: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
55 |         request.httpMethod = "GET"
56 |
57 |         let (data, response) = try await URLSession.shared.data(for: request)
   |                                                     `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
58 |         guard let httpResponse = response as? HTTPURLResponse else {
59 |             print(Constants.ExceptionMessages.invalidResponseRecievedFromServerMessage)
/host/spi-builder-workspace/Sources/mountebankSwift/RequestWrappers/MountebankRequestWrapper.swift:81:23: error: cannot find 'URLRequest' in scope
79 |             throw MountebankExceptions.unableToRetrieveImposter
80 |         }
81 |         var request = URLRequest(url: url)
   |                       `- error: cannot find 'URLRequest' in scope
82 |         request.httpMethod = "GET"
83 |
/host/spi-builder-workspace/Sources/mountebankSwift/RequestWrappers/MountebankRequestWrapper.swift:84:53: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
82 |         request.httpMethod = "GET"
83 |
84 |         let (data, response) = try await URLSession.shared.data(for: request)
   |                                                     `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
85 |         guard let httpResponse = response as? HTTPURLResponse else {
86 |             print(Constants.ExceptionMessages.invalidResponseRecievedFromServerMessage)
[12/25] Compiling mountebankSwift HttpImposter.swift
[13/25] Compiling mountebankSwift Imposter.swift
[14/25] Compiling mountebankSwift HttpMethod.swift
[15/25] Compiling mountebankSwift HttpResponseFields.swift
[16/25] Compiling mountebankSwift ResponseFields.swift
[17/25] Compiling mountebankSwift IsResponse.swift
[18/25] Compiling mountebankSwift Response.swift
[19/25] Compiling mountebankSwift HttpStub.swift
[20/25] Compiling mountebankSwift SimpleRetrievedImposter.swift
[21/25] Compiling mountebankSwift HttpRequest.swift
[22/25] Compiling mountebankSwift EqualsPredicate.swift
[23/25] Compiling mountebankSwift RetrieveImpostersResponse.swift
[24/25] Compiling mountebankSwift RetrievedHttpImposter.swift
[25/25] Compiling mountebankSwift RetrievedImposter.swift
BUILD FAILURE 6.0 linux
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.