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 mountebankSwift, reference main (019491), with Swift 6.2 (beta) for Linux on 20 Jun 2025 19:16:31 UTC.

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.64.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: $PWD/.spi.yml
SUCCESS checkout https://github.com/dave-t-c/mountebankSwift.git at main
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.2
Building package at path:  $PWD
https://github.com/dave-t-c/mountebankSwift.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/23] Compiling mountebankSwift HttpResponseFields.swift
[4/23] Compiling mountebankSwift ResponseFields.swift
[5/23] Compiling mountebankSwift IsResponse.swift
[6/23] Compiling mountebankSwift Response.swift
[7/23] Compiling mountebankSwift HttpStub.swift
[8/25] Compiling mountebankSwift Fields.swift
[9/25] Compiling mountebankSwift HttpFields.swift
[10/25] Compiling mountebankSwift Predicate.swift
[11/25] Compiling mountebankSwift SimpleRetrievedImposter.swift
[12/25] Compiling mountebankSwift HttpRequest.swift
[13/25] Compiling mountebankSwift EqualsPredicate.swift
[14/25] Emitting module mountebankSwift
[15/25] Compiling mountebankSwift MountebankClient.swift
[16/25] Compiling mountebankSwift MountebankExceptions.swift
[17/25] Compiling mountebankSwift Constants.swift
[18/25] Compiling mountebankSwift HttpImposter.swift
[19/25] Compiling mountebankSwift Imposter.swift
[20/25] Compiling mountebankSwift HttpMethod.swift
[21/25] Compiling mountebankSwift RetrieveImpostersResponse.swift
[22/25] Compiling mountebankSwift RetrievedHttpImposter.swift
[23/25] Compiling mountebankSwift RetrievedImposter.swift
[24/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)
[25/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)
BUILD FAILURE 6.2 linux