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 Swiftlane, reference 0.1.5 (92829e), with Swift 6.1 for Linux on 26 Apr 2025 20:23:04 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

13 |     public static var cs = Console()
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/Settings.swift:12:23: warning: static property 'fs' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 | public struct Settings {
11 |     public static var env = Environment()
12 |     public static var fs = FileSystem()
   |                       |- warning: static property 'fs' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'fs' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'fs' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     public static var cs = Console()
14 |     public static var cli = CommandLine()
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/Settings.swift:13:23: warning: static property 'cs' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |     public static var env = Environment()
12 |     public static var fs = FileSystem()
13 |     public static var cs = Console()
   |                       |- warning: static property 'cs' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'cs' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'cs' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     public static var cli = CommandLine()
15 | }
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/Settings.swift:14:23: warning: static property 'cli' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     public static var fs = FileSystem()
13 |     public static var cs = Console()
14 |     public static var cli = CommandLine()
   |                       |- warning: static property 'cli' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'cli' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'cli' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | }
16 |
[1250/1275] Compiling Swiftlane PlistBuilder.swift
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/FileSystem.swift:31:17: warning: 'launchPath' is deprecated: renamed to 'executableURL'
29 |     public func currentDirectory() async throws -> URL {
30 |         let process = Process()
31 |         process.launchPath = "/bin/pwd"
   |                 |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
   |                 `- note: use 'executableURL' instead
32 |
33 |         let string = try Settings.cli.run(process: process)
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/Settings.swift:11:23: warning: static property 'env' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | public struct Settings {
11 |     public static var env = Environment()
   |                       |- warning: static property 'env' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'env' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'env' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |     public static var fs = FileSystem()
13 |     public static var cs = Console()
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/Settings.swift:12:23: warning: static property 'fs' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 | public struct Settings {
11 |     public static var env = Environment()
12 |     public static var fs = FileSystem()
   |                       |- warning: static property 'fs' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'fs' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'fs' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     public static var cs = Console()
14 |     public static var cli = CommandLine()
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/Settings.swift:13:23: warning: static property 'cs' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |     public static var env = Environment()
12 |     public static var fs = FileSystem()
13 |     public static var cs = Console()
   |                       |- warning: static property 'cs' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'cs' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'cs' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     public static var cli = CommandLine()
15 | }
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/Settings.swift:14:23: warning: static property 'cli' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     public static var fs = FileSystem()
13 |     public static var cs = Console()
14 |     public static var cli = CommandLine()
   |                       |- warning: static property 'cli' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'cli' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'cli' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | }
16 |
[1251/1275] Compiling Swiftlane Settings.swift
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/FileSystem.swift:31:17: warning: 'launchPath' is deprecated: renamed to 'executableURL'
29 |     public func currentDirectory() async throws -> URL {
30 |         let process = Process()
31 |         process.launchPath = "/bin/pwd"
   |                 |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
   |                 `- note: use 'executableURL' instead
32 |
33 |         let string = try Settings.cli.run(process: process)
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/Settings.swift:11:23: warning: static property 'env' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | public struct Settings {
11 |     public static var env = Environment()
   |                       |- warning: static property 'env' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'env' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'env' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |     public static var fs = FileSystem()
13 |     public static var cs = Console()
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/Settings.swift:12:23: warning: static property 'fs' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 | public struct Settings {
11 |     public static var env = Environment()
12 |     public static var fs = FileSystem()
   |                       |- warning: static property 'fs' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'fs' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'fs' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     public static var cs = Console()
14 |     public static var cli = CommandLine()
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/Settings.swift:13:23: warning: static property 'cs' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |     public static var env = Environment()
12 |     public static var fs = FileSystem()
13 |     public static var cs = Console()
   |                       |- warning: static property 'cs' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'cs' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'cs' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     public static var cli = CommandLine()
15 | }
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/Settings.swift:14:23: warning: static property 'cli' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     public static var fs = FileSystem()
13 |     public static var cs = Console()
14 |     public static var cli = CommandLine()
   |                       |- warning: static property 'cli' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'cli' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'cli' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | }
16 |
[1252/1275] Compiling Swiftlane SwiftlaneError.swift
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/FileSystem.swift:31:17: warning: 'launchPath' is deprecated: renamed to 'executableURL'
29 |     public func currentDirectory() async throws -> URL {
30 |         let process = Process()
31 |         process.launchPath = "/bin/pwd"
   |                 |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
   |                 `- note: use 'executableURL' instead
32 |
33 |         let string = try Settings.cli.run(process: process)
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/Settings.swift:11:23: warning: static property 'env' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |
10 | public struct Settings {
11 |     public static var env = Environment()
   |                       |- warning: static property 'env' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'env' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'env' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
12 |     public static var fs = FileSystem()
13 |     public static var cs = Console()
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/Settings.swift:12:23: warning: static property 'fs' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
10 | public struct Settings {
11 |     public static var env = Environment()
12 |     public static var fs = FileSystem()
   |                       |- warning: static property 'fs' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'fs' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'fs' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
13 |     public static var cs = Console()
14 |     public static var cli = CommandLine()
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/Settings.swift:13:23: warning: static property 'cs' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 |     public static var env = Environment()
12 |     public static var fs = FileSystem()
13 |     public static var cs = Console()
   |                       |- warning: static property 'cs' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'cs' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'cs' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 |     public static var cli = CommandLine()
15 | }
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/Settings.swift:14:23: warning: static property 'cli' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     public static var fs = FileSystem()
13 |     public static var cs = Console()
14 |     public static var cli = CommandLine()
   |                       |- warning: static property 'cli' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'cli' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'cli' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
15 | }
16 |
[1253/1275] Compiling Swiftlane ProcessHandler.swift
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/XcodebuildProcessHandler.swift:23:44: error: missing arguments for parameters 'renderer', 'additionalLines' in call
21 |         guard
22 |             !data.isEmpty,
23 |             let line = XcbeautifyLib.Parser().parse(
   |                                            `- error: missing arguments for parameters 'renderer', 'additionalLines' in call
24 |                 line: data.toString(),
25 |                 additionalLines: { nil }
/host/spi-builder-workspace/.build/checkouts/xcbeautify/Sources/XcbeautifyLib/Parser.swift:102:12: note: 'init(colored:renderer:preserveUnbeautifiedLines:additionalLines:)' declared here
100 |     // MARK: - Init
101 |
102 |     public init(
    |            `- note: 'init(colored:renderer:preserveUnbeautifiedLines:additionalLines:)' declared here
103 |         colored: Bool = true,
104 |         renderer: Renderer,
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/XcodebuildProcessHandler.swift:25:34: error: extra argument 'additionalLines' in call
23 |             let line = XcbeautifyLib.Parser().parse(
24 |                 line: data.toString(),
25 |                 additionalLines: { nil }
   |                                  `- error: extra argument 'additionalLines' in call
26 |             ),
27 |             !line.isEmpty
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/XcodebuildProcessHandler.swift:25:36: error: 'nil' requires a contextual type
23 |             let line = XcbeautifyLib.Parser().parse(
24 |                 line: data.toString(),
25 |                 additionalLines: { nil }
   |                                    `- error: 'nil' requires a contextual type
26 |             ),
27 |             !line.isEmpty
[1254/1275] Compiling Swiftlane XcodebuildProcessHandler.swift
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/XcodebuildProcessHandler.swift:23:44: error: missing arguments for parameters 'renderer', 'additionalLines' in call
21 |         guard
22 |             !data.isEmpty,
23 |             let line = XcbeautifyLib.Parser().parse(
   |                                            `- error: missing arguments for parameters 'renderer', 'additionalLines' in call
24 |                 line: data.toString(),
25 |                 additionalLines: { nil }
/host/spi-builder-workspace/.build/checkouts/xcbeautify/Sources/XcbeautifyLib/Parser.swift:102:12: note: 'init(colored:renderer:preserveUnbeautifiedLines:additionalLines:)' declared here
100 |     // MARK: - Init
101 |
102 |     public init(
    |            `- note: 'init(colored:renderer:preserveUnbeautifiedLines:additionalLines:)' declared here
103 |         colored: Bool = true,
104 |         renderer: Renderer,
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/XcodebuildProcessHandler.swift:25:34: error: extra argument 'additionalLines' in call
23 |             let line = XcbeautifyLib.Parser().parse(
24 |                 line: data.toString(),
25 |                 additionalLines: { nil }
   |                                  `- error: extra argument 'additionalLines' in call
26 |             ),
27 |             !line.isEmpty
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/XcodebuildProcessHandler.swift:25:36: error: 'nil' requires a contextual type
23 |             let line = XcbeautifyLib.Parser().parse(
24 |                 line: data.toString(),
25 |                 additionalLines: { nil }
   |                                    `- error: 'nil' requires a contextual type
26 |             ),
27 |             !line.isEmpty
[1255/1275] Compiling Swiftlane Console.swift
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/XcodebuildProcessHandler.swift:23:44: error: missing arguments for parameters 'renderer', 'additionalLines' in call
21 |         guard
22 |             !data.isEmpty,
23 |             let line = XcbeautifyLib.Parser().parse(
   |                                            `- error: missing arguments for parameters 'renderer', 'additionalLines' in call
24 |                 line: data.toString(),
25 |                 additionalLines: { nil }
/host/spi-builder-workspace/.build/checkouts/xcbeautify/Sources/XcbeautifyLib/Parser.swift:102:12: note: 'init(colored:renderer:preserveUnbeautifiedLines:additionalLines:)' declared here
100 |     // MARK: - Init
101 |
102 |     public init(
    |            `- note: 'init(colored:renderer:preserveUnbeautifiedLines:additionalLines:)' declared here
103 |         colored: Bool = true,
104 |         renderer: Renderer,
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/XcodebuildProcessHandler.swift:25:34: error: extra argument 'additionalLines' in call
23 |             let line = XcbeautifyLib.Parser().parse(
24 |                 line: data.toString(),
25 |                 additionalLines: { nil }
   |                                  `- error: extra argument 'additionalLines' in call
26 |             ),
27 |             !line.isEmpty
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/XcodebuildProcessHandler.swift:25:36: error: 'nil' requires a contextual type
23 |             let line = XcbeautifyLib.Parser().parse(
24 |                 line: data.toString(),
25 |                 additionalLines: { nil }
   |                                    `- error: 'nil' requires a contextual type
26 |             ),
27 |             !line.isEmpty
[1256/1275] Compiling Swiftlane Environment.swift
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/XcodebuildProcessHandler.swift:23:44: error: missing arguments for parameters 'renderer', 'additionalLines' in call
21 |         guard
22 |             !data.isEmpty,
23 |             let line = XcbeautifyLib.Parser().parse(
   |                                            `- error: missing arguments for parameters 'renderer', 'additionalLines' in call
24 |                 line: data.toString(),
25 |                 additionalLines: { nil }
/host/spi-builder-workspace/.build/checkouts/xcbeautify/Sources/XcbeautifyLib/Parser.swift:102:12: note: 'init(colored:renderer:preserveUnbeautifiedLines:additionalLines:)' declared here
100 |     // MARK: - Init
101 |
102 |     public init(
    |            `- note: 'init(colored:renderer:preserveUnbeautifiedLines:additionalLines:)' declared here
103 |         colored: Bool = true,
104 |         renderer: Renderer,
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/XcodebuildProcessHandler.swift:25:34: error: extra argument 'additionalLines' in call
23 |             let line = XcbeautifyLib.Parser().parse(
24 |                 line: data.toString(),
25 |                 additionalLines: { nil }
   |                                  `- error: extra argument 'additionalLines' in call
26 |             ),
27 |             !line.isEmpty
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/XcodebuildProcessHandler.swift:25:36: error: 'nil' requires a contextual type
23 |             let line = XcbeautifyLib.Parser().parse(
24 |                 line: data.toString(),
25 |                 additionalLines: { nil }
   |                                    `- error: 'nil' requires a contextual type
26 |             ),
27 |             !line.isEmpty
[1257/1275] Compiling Swiftlane Slack.swift
/host/spi-builder-workspace/Sources/Swiftlane/Actions/Standard/Slack.swift:78:23: error: cannot find 'URLRequest' in scope
76 |         }
77 |
78 |         var request = URLRequest(url: requestUrl)
   |                       `- error: cannot find 'URLRequest' in scope
79 |         request.allHTTPHeaderFields = [
80 |             "Accept": "application/json"
/host/spi-builder-workspace/Sources/Swiftlane/Actions/Standard/Slack.swift:83:46: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
81 |         ]
82 |
83 |         let (data, _) = try await URLSession.shared.data(for: request)
   |                                              `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
84 |         _ = try JSONDecoder().decode(SendMessageResponse.self, from: data)
85 |     }
/host/spi-builder-workspace/Sources/Swiftlane/Actions/iOS/ASC.swift:32:51: warning: non-sendable result type 'Response<CertificatesResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
 30 |
 31 |         let request = Paths.certificates.get(parameters: params)
 32 |         let response = try await client.apiClient.send(request)
    |                                                   `- warning: non-sendable result type 'Response<CertificatesResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
 33 |         return response.value.data
 34 |     }
/host/spi-builder-workspace/.build/checkouts/AppStoreConnect/Sources/CreateAPI/Entities.swift:16105:15: note: struct 'CertificatesResponse' does not conform to the 'Sendable' protocol
16103 | }
16104 |
16105 | public struct CertificatesResponse: Codable {
      |               `- note: struct 'CertificatesResponse' does not conform to the 'Sendable' protocol
16106 |     public var meta: PagingInformation?
16107 |     public var links: PagedDocumentLinks
/host/spi-builder-workspace/Sources/Swiftlane/Actions/iOS/ASC.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AppStoreConnect'
  6 | //
  7 |
  8 | import AppStoreConnect
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AppStoreConnect'
  9 | import Foundation
 10 |
/host/spi-builder-workspace/Sources/Swiftlane/Actions/iOS/ASC.swift:54:51: warning: non-sendable result type 'Response<ProfilesResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
 52 |
 53 |         let request = Paths.profiles.get(parameters: params)
 54 |         let response = try await client.apiClient.send(request)
    |                                                   `- warning: non-sendable result type 'Response<ProfilesResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
 55 |         return response.value.data
 56 |     }
/host/spi-builder-workspace/.build/checkouts/AppStoreConnect/Sources/CreateAPI/Entities.swift:18589:15: note: struct 'ProfilesResponse' does not conform to the 'Sendable' protocol
18587 | }
18588 |
18589 | public struct ProfilesResponse: Codable {
      |               `- note: struct 'ProfilesResponse' does not conform to the 'Sendable' protocol
18590 |     public var links: PagedDocumentLinks
18591 |     public var data: [Profile]
/host/spi-builder-workspace/Sources/Swiftlane/Actions/iOS/ASC.swift:126:51: warning: non-sendable result type 'Response<PreReleaseVersionsResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
124 |
125 |         let request = Paths.preReleaseVersions.get(parameters: params)
126 |         let response = try await client.apiClient.send(request)
    |                                                   `- warning: non-sendable result type 'Response<PreReleaseVersionsResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
127 |         return response.value.data
128 |     }
/host/spi-builder-workspace/.build/checkouts/AppStoreConnect/Sources/CreateAPI/Entities.swift:4474:15: note: struct 'PreReleaseVersionsResponse' does not conform to the 'Sendable' protocol
 4472 | }
 4473 |
 4474 | public struct PreReleaseVersionsResponse: Codable {
      |               `- note: struct 'PreReleaseVersionsResponse' does not conform to the 'Sendable' protocol
 4475 |     public var included: [IncludedItem]?
 4476 |     public var links: PagedDocumentLinks
/host/spi-builder-workspace/Sources/Swiftlane/Actions/iOS/ASC.swift:140:51: warning: non-sendable result type 'Response<BuildsResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
138 |                 limit: nil
139 |             )
140 |         let response = try await client.apiClient.send(request)
    |                                                   `- warning: non-sendable result type 'Response<BuildsResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
141 |         return response.value.data
142 |     }
/host/spi-builder-workspace/.build/checkouts/AppStoreConnect/Sources/CreateAPI/Entities.swift:8789:15: note: struct 'BuildsResponse' does not conform to the 'Sendable' protocol
 8787 | }
 8788 |
 8789 | public struct BuildsResponse: Codable {
      |               `- note: struct 'BuildsResponse' does not conform to the 'Sendable' protocol
 8790 |     public var included: [IncludedItem]?
 8791 |     public var meta: PagingInformation?
[1258/1275] Compiling Swiftlane ASC.swift
/host/spi-builder-workspace/Sources/Swiftlane/Actions/Standard/Slack.swift:78:23: error: cannot find 'URLRequest' in scope
76 |         }
77 |
78 |         var request = URLRequest(url: requestUrl)
   |                       `- error: cannot find 'URLRequest' in scope
79 |         request.allHTTPHeaderFields = [
80 |             "Accept": "application/json"
/host/spi-builder-workspace/Sources/Swiftlane/Actions/Standard/Slack.swift:83:46: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
81 |         ]
82 |
83 |         let (data, _) = try await URLSession.shared.data(for: request)
   |                                              `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
84 |         _ = try JSONDecoder().decode(SendMessageResponse.self, from: data)
85 |     }
/host/spi-builder-workspace/Sources/Swiftlane/Actions/iOS/ASC.swift:32:51: warning: non-sendable result type 'Response<CertificatesResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
 30 |
 31 |         let request = Paths.certificates.get(parameters: params)
 32 |         let response = try await client.apiClient.send(request)
    |                                                   `- warning: non-sendable result type 'Response<CertificatesResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
 33 |         return response.value.data
 34 |     }
/host/spi-builder-workspace/.build/checkouts/AppStoreConnect/Sources/CreateAPI/Entities.swift:16105:15: note: struct 'CertificatesResponse' does not conform to the 'Sendable' protocol
16103 | }
16104 |
16105 | public struct CertificatesResponse: Codable {
      |               `- note: struct 'CertificatesResponse' does not conform to the 'Sendable' protocol
16106 |     public var meta: PagingInformation?
16107 |     public var links: PagedDocumentLinks
/host/spi-builder-workspace/Sources/Swiftlane/Actions/iOS/ASC.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AppStoreConnect'
  6 | //
  7 |
  8 | import AppStoreConnect
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AppStoreConnect'
  9 | import Foundation
 10 |
/host/spi-builder-workspace/Sources/Swiftlane/Actions/iOS/ASC.swift:54:51: warning: non-sendable result type 'Response<ProfilesResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
 52 |
 53 |         let request = Paths.profiles.get(parameters: params)
 54 |         let response = try await client.apiClient.send(request)
    |                                                   `- warning: non-sendable result type 'Response<ProfilesResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
 55 |         return response.value.data
 56 |     }
/host/spi-builder-workspace/.build/checkouts/AppStoreConnect/Sources/CreateAPI/Entities.swift:18589:15: note: struct 'ProfilesResponse' does not conform to the 'Sendable' protocol
18587 | }
18588 |
18589 | public struct ProfilesResponse: Codable {
      |               `- note: struct 'ProfilesResponse' does not conform to the 'Sendable' protocol
18590 |     public var links: PagedDocumentLinks
18591 |     public var data: [Profile]
/host/spi-builder-workspace/Sources/Swiftlane/Actions/iOS/ASC.swift:126:51: warning: non-sendable result type 'Response<PreReleaseVersionsResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
124 |
125 |         let request = Paths.preReleaseVersions.get(parameters: params)
126 |         let response = try await client.apiClient.send(request)
    |                                                   `- warning: non-sendable result type 'Response<PreReleaseVersionsResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
127 |         return response.value.data
128 |     }
/host/spi-builder-workspace/.build/checkouts/AppStoreConnect/Sources/CreateAPI/Entities.swift:4474:15: note: struct 'PreReleaseVersionsResponse' does not conform to the 'Sendable' protocol
 4472 | }
 4473 |
 4474 | public struct PreReleaseVersionsResponse: Codable {
      |               `- note: struct 'PreReleaseVersionsResponse' does not conform to the 'Sendable' protocol
 4475 |     public var included: [IncludedItem]?
 4476 |     public var links: PagedDocumentLinks
/host/spi-builder-workspace/Sources/Swiftlane/Actions/iOS/ASC.swift:140:51: warning: non-sendable result type 'Response<BuildsResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
138 |                 limit: nil
139 |             )
140 |         let response = try await client.apiClient.send(request)
    |                                                   `- warning: non-sendable result type 'Response<BuildsResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
141 |         return response.value.data
142 |     }
/host/spi-builder-workspace/.build/checkouts/AppStoreConnect/Sources/CreateAPI/Entities.swift:8789:15: note: struct 'BuildsResponse' does not conform to the 'Sendable' protocol
 8787 | }
 8788 |
 8789 | public struct BuildsResponse: Codable {
      |               `- note: struct 'BuildsResponse' does not conform to the 'Sendable' protocol
 8790 |     public var included: [IncludedItem]?
 8791 |     public var meta: PagingInformation?
[1259/1275] Compiling Swiftlane Archive.swift
/host/spi-builder-workspace/Sources/Swiftlane/Actions/Standard/Slack.swift:78:23: error: cannot find 'URLRequest' in scope
76 |         }
77 |
78 |         var request = URLRequest(url: requestUrl)
   |                       `- error: cannot find 'URLRequest' in scope
79 |         request.allHTTPHeaderFields = [
80 |             "Accept": "application/json"
/host/spi-builder-workspace/Sources/Swiftlane/Actions/Standard/Slack.swift:83:46: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
81 |         ]
82 |
83 |         let (data, _) = try await URLSession.shared.data(for: request)
   |                                              `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
84 |         _ = try JSONDecoder().decode(SendMessageResponse.self, from: data)
85 |     }
/host/spi-builder-workspace/Sources/Swiftlane/Actions/iOS/ASC.swift:32:51: warning: non-sendable result type 'Response<CertificatesResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
 30 |
 31 |         let request = Paths.certificates.get(parameters: params)
 32 |         let response = try await client.apiClient.send(request)
    |                                                   `- warning: non-sendable result type 'Response<CertificatesResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
 33 |         return response.value.data
 34 |     }
/host/spi-builder-workspace/.build/checkouts/AppStoreConnect/Sources/CreateAPI/Entities.swift:16105:15: note: struct 'CertificatesResponse' does not conform to the 'Sendable' protocol
16103 | }
16104 |
16105 | public struct CertificatesResponse: Codable {
      |               `- note: struct 'CertificatesResponse' does not conform to the 'Sendable' protocol
16106 |     public var meta: PagingInformation?
16107 |     public var links: PagedDocumentLinks
/host/spi-builder-workspace/Sources/Swiftlane/Actions/iOS/ASC.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AppStoreConnect'
  6 | //
  7 |
  8 | import AppStoreConnect
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AppStoreConnect'
  9 | import Foundation
 10 |
/host/spi-builder-workspace/Sources/Swiftlane/Actions/iOS/ASC.swift:54:51: warning: non-sendable result type 'Response<ProfilesResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
 52 |
 53 |         let request = Paths.profiles.get(parameters: params)
 54 |         let response = try await client.apiClient.send(request)
    |                                                   `- warning: non-sendable result type 'Response<ProfilesResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
 55 |         return response.value.data
 56 |     }
/host/spi-builder-workspace/.build/checkouts/AppStoreConnect/Sources/CreateAPI/Entities.swift:18589:15: note: struct 'ProfilesResponse' does not conform to the 'Sendable' protocol
18587 | }
18588 |
18589 | public struct ProfilesResponse: Codable {
      |               `- note: struct 'ProfilesResponse' does not conform to the 'Sendable' protocol
18590 |     public var links: PagedDocumentLinks
18591 |     public var data: [Profile]
/host/spi-builder-workspace/Sources/Swiftlane/Actions/iOS/ASC.swift:126:51: warning: non-sendable result type 'Response<PreReleaseVersionsResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
124 |
125 |         let request = Paths.preReleaseVersions.get(parameters: params)
126 |         let response = try await client.apiClient.send(request)
    |                                                   `- warning: non-sendable result type 'Response<PreReleaseVersionsResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
127 |         return response.value.data
128 |     }
/host/spi-builder-workspace/.build/checkouts/AppStoreConnect/Sources/CreateAPI/Entities.swift:4474:15: note: struct 'PreReleaseVersionsResponse' does not conform to the 'Sendable' protocol
 4472 | }
 4473 |
 4474 | public struct PreReleaseVersionsResponse: Codable {
      |               `- note: struct 'PreReleaseVersionsResponse' does not conform to the 'Sendable' protocol
 4475 |     public var included: [IncludedItem]?
 4476 |     public var links: PagedDocumentLinks
/host/spi-builder-workspace/Sources/Swiftlane/Actions/iOS/ASC.swift:140:51: warning: non-sendable result type 'Response<BuildsResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
138 |                 limit: nil
139 |             )
140 |         let response = try await client.apiClient.send(request)
    |                                                   `- warning: non-sendable result type 'Response<BuildsResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
141 |         return response.value.data
142 |     }
/host/spi-builder-workspace/.build/checkouts/AppStoreConnect/Sources/CreateAPI/Entities.swift:8789:15: note: struct 'BuildsResponse' does not conform to the 'Sendable' protocol
 8787 | }
 8788 |
 8789 | public struct BuildsResponse: Codable {
      |               `- note: struct 'BuildsResponse' does not conform to the 'Sendable' protocol
 8790 |     public var included: [IncludedItem]?
 8791 |     public var meta: PagingInformation?
[1260/1275] Compiling Swiftlane Build.swift
/host/spi-builder-workspace/Sources/Swiftlane/Actions/Standard/Slack.swift:78:23: error: cannot find 'URLRequest' in scope
76 |         }
77 |
78 |         var request = URLRequest(url: requestUrl)
   |                       `- error: cannot find 'URLRequest' in scope
79 |         request.allHTTPHeaderFields = [
80 |             "Accept": "application/json"
/host/spi-builder-workspace/Sources/Swiftlane/Actions/Standard/Slack.swift:83:46: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
81 |         ]
82 |
83 |         let (data, _) = try await URLSession.shared.data(for: request)
   |                                              `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
84 |         _ = try JSONDecoder().decode(SendMessageResponse.self, from: data)
85 |     }
/host/spi-builder-workspace/Sources/Swiftlane/Actions/iOS/ASC.swift:32:51: warning: non-sendable result type 'Response<CertificatesResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
 30 |
 31 |         let request = Paths.certificates.get(parameters: params)
 32 |         let response = try await client.apiClient.send(request)
    |                                                   `- warning: non-sendable result type 'Response<CertificatesResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
 33 |         return response.value.data
 34 |     }
/host/spi-builder-workspace/.build/checkouts/AppStoreConnect/Sources/CreateAPI/Entities.swift:16105:15: note: struct 'CertificatesResponse' does not conform to the 'Sendable' protocol
16103 | }
16104 |
16105 | public struct CertificatesResponse: Codable {
      |               `- note: struct 'CertificatesResponse' does not conform to the 'Sendable' protocol
16106 |     public var meta: PagingInformation?
16107 |     public var links: PagedDocumentLinks
/host/spi-builder-workspace/Sources/Swiftlane/Actions/iOS/ASC.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AppStoreConnect'
  6 | //
  7 |
  8 | import AppStoreConnect
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AppStoreConnect'
  9 | import Foundation
 10 |
/host/spi-builder-workspace/Sources/Swiftlane/Actions/iOS/ASC.swift:54:51: warning: non-sendable result type 'Response<ProfilesResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
 52 |
 53 |         let request = Paths.profiles.get(parameters: params)
 54 |         let response = try await client.apiClient.send(request)
    |                                                   `- warning: non-sendable result type 'Response<ProfilesResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
 55 |         return response.value.data
 56 |     }
/host/spi-builder-workspace/.build/checkouts/AppStoreConnect/Sources/CreateAPI/Entities.swift:18589:15: note: struct 'ProfilesResponse' does not conform to the 'Sendable' protocol
18587 | }
18588 |
18589 | public struct ProfilesResponse: Codable {
      |               `- note: struct 'ProfilesResponse' does not conform to the 'Sendable' protocol
18590 |     public var links: PagedDocumentLinks
18591 |     public var data: [Profile]
/host/spi-builder-workspace/Sources/Swiftlane/Actions/iOS/ASC.swift:126:51: warning: non-sendable result type 'Response<PreReleaseVersionsResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
124 |
125 |         let request = Paths.preReleaseVersions.get(parameters: params)
126 |         let response = try await client.apiClient.send(request)
    |                                                   `- warning: non-sendable result type 'Response<PreReleaseVersionsResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
127 |         return response.value.data
128 |     }
/host/spi-builder-workspace/.build/checkouts/AppStoreConnect/Sources/CreateAPI/Entities.swift:4474:15: note: struct 'PreReleaseVersionsResponse' does not conform to the 'Sendable' protocol
 4472 | }
 4473 |
 4474 | public struct PreReleaseVersionsResponse: Codable {
      |               `- note: struct 'PreReleaseVersionsResponse' does not conform to the 'Sendable' protocol
 4475 |     public var included: [IncludedItem]?
 4476 |     public var links: PagedDocumentLinks
/host/spi-builder-workspace/Sources/Swiftlane/Actions/iOS/ASC.swift:140:51: warning: non-sendable result type 'Response<BuildsResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
138 |                 limit: nil
139 |             )
140 |         let response = try await client.apiClient.send(request)
    |                                                   `- warning: non-sendable result type 'Response<BuildsResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
141 |         return response.value.data
142 |     }
/host/spi-builder-workspace/.build/checkouts/AppStoreConnect/Sources/CreateAPI/Entities.swift:8789:15: note: struct 'BuildsResponse' does not conform to the 'Sendable' protocol
 8787 | }
 8788 |
 8789 | public struct BuildsResponse: Codable {
      |               `- note: struct 'BuildsResponse' does not conform to the 'Sendable' protocol
 8790 |     public var included: [IncludedItem]?
 8791 |     public var meta: PagingInformation?
[1261/1275] Compiling Swiftlane ExportArchive.swift
/host/spi-builder-workspace/Sources/Swiftlane/Actions/Standard/Slack.swift:78:23: error: cannot find 'URLRequest' in scope
76 |         }
77 |
78 |         var request = URLRequest(url: requestUrl)
   |                       `- error: cannot find 'URLRequest' in scope
79 |         request.allHTTPHeaderFields = [
80 |             "Accept": "application/json"
/host/spi-builder-workspace/Sources/Swiftlane/Actions/Standard/Slack.swift:83:46: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
81 |         ]
82 |
83 |         let (data, _) = try await URLSession.shared.data(for: request)
   |                                              `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
84 |         _ = try JSONDecoder().decode(SendMessageResponse.self, from: data)
85 |     }
/host/spi-builder-workspace/Sources/Swiftlane/Actions/iOS/ASC.swift:32:51: warning: non-sendable result type 'Response<CertificatesResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
 30 |
 31 |         let request = Paths.certificates.get(parameters: params)
 32 |         let response = try await client.apiClient.send(request)
    |                                                   `- warning: non-sendable result type 'Response<CertificatesResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
 33 |         return response.value.data
 34 |     }
/host/spi-builder-workspace/.build/checkouts/AppStoreConnect/Sources/CreateAPI/Entities.swift:16105:15: note: struct 'CertificatesResponse' does not conform to the 'Sendable' protocol
16103 | }
16104 |
16105 | public struct CertificatesResponse: Codable {
      |               `- note: struct 'CertificatesResponse' does not conform to the 'Sendable' protocol
16106 |     public var meta: PagingInformation?
16107 |     public var links: PagedDocumentLinks
/host/spi-builder-workspace/Sources/Swiftlane/Actions/iOS/ASC.swift:8:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AppStoreConnect'
  6 | //
  7 |
  8 | import AppStoreConnect
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AppStoreConnect'
  9 | import Foundation
 10 |
/host/spi-builder-workspace/Sources/Swiftlane/Actions/iOS/ASC.swift:54:51: warning: non-sendable result type 'Response<ProfilesResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
 52 |
 53 |         let request = Paths.profiles.get(parameters: params)
 54 |         let response = try await client.apiClient.send(request)
    |                                                   `- warning: non-sendable result type 'Response<ProfilesResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
 55 |         return response.value.data
 56 |     }
/host/spi-builder-workspace/.build/checkouts/AppStoreConnect/Sources/CreateAPI/Entities.swift:18589:15: note: struct 'ProfilesResponse' does not conform to the 'Sendable' protocol
18587 | }
18588 |
18589 | public struct ProfilesResponse: Codable {
      |               `- note: struct 'ProfilesResponse' does not conform to the 'Sendable' protocol
18590 |     public var links: PagedDocumentLinks
18591 |     public var data: [Profile]
/host/spi-builder-workspace/Sources/Swiftlane/Actions/iOS/ASC.swift:126:51: warning: non-sendable result type 'Response<PreReleaseVersionsResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
124 |
125 |         let request = Paths.preReleaseVersions.get(parameters: params)
126 |         let response = try await client.apiClient.send(request)
    |                                                   `- warning: non-sendable result type 'Response<PreReleaseVersionsResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
127 |         return response.value.data
128 |     }
/host/spi-builder-workspace/.build/checkouts/AppStoreConnect/Sources/CreateAPI/Entities.swift:4474:15: note: struct 'PreReleaseVersionsResponse' does not conform to the 'Sendable' protocol
 4472 | }
 4473 |
 4474 | public struct PreReleaseVersionsResponse: Codable {
      |               `- note: struct 'PreReleaseVersionsResponse' does not conform to the 'Sendable' protocol
 4475 |     public var included: [IncludedItem]?
 4476 |     public var links: PagedDocumentLinks
/host/spi-builder-workspace/Sources/Swiftlane/Actions/iOS/ASC.swift:140:51: warning: non-sendable result type 'Response<BuildsResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
138 |                 limit: nil
139 |             )
140 |         let response = try await client.apiClient.send(request)
    |                                                   `- warning: non-sendable result type 'Response<BuildsResponse>' cannot be sent from actor-isolated context in call to instance method 'send'; this is an error in the Swift 6 language mode
141 |         return response.value.data
142 |     }
/host/spi-builder-workspace/.build/checkouts/AppStoreConnect/Sources/CreateAPI/Entities.swift:8789:15: note: struct 'BuildsResponse' does not conform to the 'Sendable' protocol
 8787 | }
 8788 |
 8789 | public struct BuildsResponse: Codable {
      |               `- note: struct 'BuildsResponse' does not conform to the 'Sendable' protocol
 8790 |     public var included: [IncludedItem]?
 8791 |     public var meta: PagingInformation?
[1262/1275] Compiling Swiftlane UploadASC.swift
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/CommandLine.swift:35:17: warning: 'launchPath' is deprecated: renamed to 'executableURL'
 33 |
 34 |         let process = Process()
 35 |         process.launchPath = "/bin/bash"
    |                 |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
    |                 `- note: use 'executableURL' instead
 36 |         process.arguments = ["-c", command]
 37 |         process.currentDirectoryURL = currentDirectoryURL
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/CommandLine.swift:79:17: warning: 'launch()' is deprecated: renamed to 'run'
 77 |         #endif
 78 |
 79 |         process.launch()
    |                 |- warning: 'launch()' is deprecated: renamed to 'run'
    |                 `- note: use 'run' instead
 80 |
 81 |         #if os(Linux)
[1263/1275] Compiling Swiftlane Xcode.swift
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/CommandLine.swift:35:17: warning: 'launchPath' is deprecated: renamed to 'executableURL'
 33 |
 34 |         let process = Process()
 35 |         process.launchPath = "/bin/bash"
    |                 |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
    |                 `- note: use 'executableURL' instead
 36 |         process.arguments = ["-c", command]
 37 |         process.currentDirectoryURL = currentDirectoryURL
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/CommandLine.swift:79:17: warning: 'launch()' is deprecated: renamed to 'run'
 77 |         #endif
 78 |
 79 |         process.launch()
    |                 |- warning: 'launch()' is deprecated: renamed to 'run'
    |                 `- note: use 'run' instead
 80 |
 81 |         #if os(Linux)
[1264/1275] Compiling Swiftlane Notarize.swift
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/CommandLine.swift:35:17: warning: 'launchPath' is deprecated: renamed to 'executableURL'
 33 |
 34 |         let process = Process()
 35 |         process.launchPath = "/bin/bash"
    |                 |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
    |                 `- note: use 'executableURL' instead
 36 |         process.arguments = ["-c", command]
 37 |         process.currentDirectoryURL = currentDirectoryURL
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/CommandLine.swift:79:17: warning: 'launch()' is deprecated: renamed to 'run'
 77 |         #endif
 78 |
 79 |         process.launch()
    |                 |- warning: 'launch()' is deprecated: renamed to 'run'
    |                 `- note: use 'run' instead
 80 |
 81 |         #if os(Linux)
[1265/1275] Compiling Swiftlane Args.swift
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/CommandLine.swift:35:17: warning: 'launchPath' is deprecated: renamed to 'executableURL'
 33 |
 34 |         let process = Process()
 35 |         process.launchPath = "/bin/bash"
    |                 |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
    |                 `- note: use 'executableURL' instead
 36 |         process.arguments = ["-c", command]
 37 |         process.currentDirectoryURL = currentDirectoryURL
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/CommandLine.swift:79:17: warning: 'launch()' is deprecated: renamed to 'run'
 77 |         #endif
 78 |
 79 |         process.launch()
    |                 |- warning: 'launch()' is deprecated: renamed to 'run'
    |                 `- note: use 'run' instead
 80 |
 81 |         #if os(Linux)
[1266/1275] Compiling Swiftlane CommandLine.swift
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/CommandLine.swift:35:17: warning: 'launchPath' is deprecated: renamed to 'executableURL'
 33 |
 34 |         let process = Process()
 35 |         process.launchPath = "/bin/bash"
    |                 |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
    |                 `- note: use 'executableURL' instead
 36 |         process.arguments = ["-c", command]
 37 |         process.currentDirectoryURL = currentDirectoryURL
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/CommandLine.swift:79:17: warning: 'launch()' is deprecated: renamed to 'run'
 77 |         #endif
 78 |
 79 |         process.launch()
    |                 |- warning: 'launch()' is deprecated: renamed to 'run'
    |                 `- note: use 'run' instead
 80 |
 81 |         #if os(Linux)
[1267/1275] Compiling Swiftlane GetBuildSettings.swift
[1268/1275] Compiling Swiftlane Keychain.swift
[1269/1275] Compiling Swiftlane Project.swift
[1270/1275] Compiling Swiftlane Screenshot.swift
[1271/1275] Compiling Swiftlane Test.swift
[1272/1275] Compiling Swiftlane URL+extension.swift
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:128:27: warning: static property 'iPhone' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Sdk' may have shared mutable state; this is an error in the Swift 6 language mode
119 |
120 | public enum Xcodebuild {
121 |     public struct Sdk {
    |                   `- note: consider making struct 'Sdk' conform to the 'Sendable' protocol
122 |         public let rawValue: String
123 |
    :
126 |         }
127 |
128 |         public static let iPhone = Sdk(rawValue: "iphoneos")
    |                           |- warning: static property 'iPhone' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Sdk' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'iPhone' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
129 |         public static let iPhoneSimulator = Sdk(rawValue: "iphonesimulator")
130 |     }
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:129:27: warning: static property 'iPhoneSimulator' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Sdk' may have shared mutable state; this is an error in the Swift 6 language mode
119 |
120 | public enum Xcodebuild {
121 |     public struct Sdk {
    |                   `- note: consider making struct 'Sdk' conform to the 'Sendable' protocol
122 |         public let rawValue: String
123 |
    :
127 |
128 |         public static let iPhone = Sdk(rawValue: "iphoneos")
129 |         public static let iPhoneSimulator = Sdk(rawValue: "iphonesimulator")
    |                           |- warning: static property 'iPhoneSimulator' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Sdk' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'iPhoneSimulator' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
130 |     }
131 |
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:139:27: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Configuration' may have shared mutable state; this is an error in the Swift 6 language mode
130 |     }
131 |
132 |     public struct Configuration {
    |                   `- note: consider making struct 'Configuration' conform to the 'Sendable' protocol
133 |         public let rawValue: String
134 |
    :
137 |         }
138 |
139 |         public static let debug = Configuration(rawValue: "DEBUG")
    |                           |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Configuration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'debug' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
140 |         public static let release = Configuration(rawValue: "RELEASE")
141 |     }
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:140:27: warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Configuration' may have shared mutable state; this is an error in the Swift 6 language mode
130 |     }
131 |
132 |     public struct Configuration {
    |                   `- note: consider making struct 'Configuration' conform to the 'Sendable' protocol
133 |         public let rawValue: String
134 |
    :
138 |
139 |         public static let debug = Configuration(rawValue: "DEBUG")
140 |         public static let release = Configuration(rawValue: "RELEASE")
    |                           |- warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Configuration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'release' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
141 |     }
142 |
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:150:27: warning: static property 'iOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
141 |     }
142 |
143 |     public struct Platform {
    |                   `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
144 |         public let rawValue: String
145 |
    :
148 |         }
149 |
150 |         public static let iOS = Platform(rawValue: "iOS")
    |                           |- warning: static property 'iOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'iOS' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 |         public static let iOSSimulator = Platform(rawValue: "iOS Simulator")
152 |         public static let tvOS = Platform(rawValue: "tvOS")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:151:27: warning: static property 'iOSSimulator' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
141 |     }
142 |
143 |     public struct Platform {
    |                   `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
144 |         public let rawValue: String
145 |
    :
149 |
150 |         public static let iOS = Platform(rawValue: "iOS")
151 |         public static let iOSSimulator = Platform(rawValue: "iOS Simulator")
    |                           |- warning: static property 'iOSSimulator' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'iOSSimulator' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
152 |         public static let tvOS = Platform(rawValue: "tvOS")
153 |         public static let tvOSSimulator = Platform(rawValue: "tvOS Simulator")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:152:27: warning: static property 'tvOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
141 |     }
142 |
143 |     public struct Platform {
    |                   `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
144 |         public let rawValue: String
145 |
    :
150 |         public static let iOS = Platform(rawValue: "iOS")
151 |         public static let iOSSimulator = Platform(rawValue: "iOS Simulator")
152 |         public static let tvOS = Platform(rawValue: "tvOS")
    |                           |- warning: static property 'tvOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'tvOS' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
153 |         public static let tvOSSimulator = Platform(rawValue: "tvOS Simulator")
154 |         public static let watchOS = Platform(rawValue: "watchOS")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:153:27: warning: static property 'tvOSSimulator' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
141 |     }
142 |
143 |     public struct Platform {
    |                   `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
144 |         public let rawValue: String
145 |
    :
151 |         public static let iOSSimulator = Platform(rawValue: "iOS Simulator")
152 |         public static let tvOS = Platform(rawValue: "tvOS")
153 |         public static let tvOSSimulator = Platform(rawValue: "tvOS Simulator")
    |                           |- warning: static property 'tvOSSimulator' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'tvOSSimulator' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 |         public static let watchOS = Platform(rawValue: "watchOS")
155 |         public static let watchOSSimulator = Platform(rawValue: "watchOS Simulator")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:154:27: warning: static property 'watchOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
141 |     }
142 |
143 |     public struct Platform {
    |                   `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
144 |         public let rawValue: String
145 |
    :
152 |         public static let tvOS = Platform(rawValue: "tvOS")
153 |         public static let tvOSSimulator = Platform(rawValue: "tvOS Simulator")
154 |         public static let watchOS = Platform(rawValue: "watchOS")
    |                           |- warning: static property 'watchOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'watchOS' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
155 |         public static let watchOSSimulator = Platform(rawValue: "watchOS Simulator")
156 |         public static let macOS = Platform(rawValue: "OSX")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:155:27: warning: static property 'watchOSSimulator' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
141 |     }
142 |
143 |     public struct Platform {
    |                   `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
144 |         public let rawValue: String
145 |
    :
153 |         public static let tvOSSimulator = Platform(rawValue: "tvOS Simulator")
154 |         public static let watchOS = Platform(rawValue: "watchOS")
155 |         public static let watchOSSimulator = Platform(rawValue: "watchOS Simulator")
    |                           |- warning: static property 'watchOSSimulator' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'watchOSSimulator' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 |         public static let macOS = Platform(rawValue: "OSX")
157 |     }
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:156:27: warning: static property 'macOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
141 |     }
142 |
143 |     public struct Platform {
    |                   `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
144 |         public let rawValue: String
145 |
    :
154 |         public static let watchOS = Platform(rawValue: "watchOS")
155 |         public static let watchOSSimulator = Platform(rawValue: "watchOS Simulator")
156 |         public static let macOS = Platform(rawValue: "OSX")
    |                           |- warning: static property 'macOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'macOS' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
157 |     }
158 |
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:166:27: warning: static property 'iPhone13' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Name' may have shared mutable state; this is an error in the Swift 6 language mode
157 |     }
158 |
159 |     public struct Name {
    |                   `- note: consider making struct 'Name' conform to the 'Sendable' protocol
160 |         public let rawValue: String
161 |
    :
164 |         }
165 |
166 |         public static let iPhone13 = Name(rawValue: "iPhone 13")
    |                           |- warning: static property 'iPhone13' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'iPhone13' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
167 |     }
168 |
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:176:27: warning: static property 'latest' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.OS' may have shared mutable state; this is an error in the Swift 6 language mode
167 |     }
168 |
169 |     public struct OS {
    |                   `- note: consider making struct 'OS' conform to the 'Sendable' protocol
170 |         public let rawValue: String
171 |
    :
174 |         }
175 |
176 |         public static let latest = OS(rawValue: "latest")
    |                           |- warning: static property 'latest' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.OS' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'latest' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
177 |     }
178 |
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:186:27: warning: static property 'genericiOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Destination' may have shared mutable state; this is an error in the Swift 6 language mode
177 |     }
178 |
179 |     public struct Destination: Equatable {
    |                   `- note: consider making struct 'Destination' conform to the 'Sendable' protocol
180 |         public let rawValue: String
181 |
    :
184 |         }
185 |
186 |         public static let genericiOS = Destination(rawValue: "generic/platform=iOS")
    |                           |- warning: static property 'genericiOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Destination' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'genericiOS' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
187 |     }
188 |
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:196:27: warning: static property 'appStore' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.ExportMethod' may have shared mutable state; this is an error in the Swift 6 language mode
187 |     }
188 |
189 |     public struct ExportMethod {
    |                   `- note: consider making struct 'ExportMethod' conform to the 'Sendable' protocol
190 |         public let rawValue: String
191 |
    :
194 |         }
195 |
196 |         public static let appStore = ExportMethod(rawValue: "app-store")
    |                           |- warning: static property 'appStore' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.ExportMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'appStore' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
197 |         public static let inHouse = ExportMethod(rawValue: "enterprise")
198 |         public static let adHoc = ExportMethod(rawValue: "ad-hoc")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:197:27: warning: static property 'inHouse' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.ExportMethod' may have shared mutable state; this is an error in the Swift 6 language mode
187 |     }
188 |
189 |     public struct ExportMethod {
    |                   `- note: consider making struct 'ExportMethod' conform to the 'Sendable' protocol
190 |         public let rawValue: String
191 |
    :
195 |
196 |         public static let appStore = ExportMethod(rawValue: "app-store")
197 |         public static let inHouse = ExportMethod(rawValue: "enterprise")
    |                           |- warning: static property 'inHouse' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.ExportMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'inHouse' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
198 |         public static let adHoc = ExportMethod(rawValue: "ad-hoc")
199 |         public static let development = ExportMethod(rawValue: "development")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:198:27: warning: static property 'adHoc' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.ExportMethod' may have shared mutable state; this is an error in the Swift 6 language mode
187 |     }
188 |
189 |     public struct ExportMethod {
    |                   `- note: consider making struct 'ExportMethod' conform to the 'Sendable' protocol
190 |         public let rawValue: String
191 |
    :
196 |         public static let appStore = ExportMethod(rawValue: "app-store")
197 |         public static let inHouse = ExportMethod(rawValue: "enterprise")
198 |         public static let adHoc = ExportMethod(rawValue: "ad-hoc")
    |                           |- warning: static property 'adHoc' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.ExportMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'adHoc' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
199 |         public static let development = ExportMethod(rawValue: "development")
200 |     }
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:199:27: warning: static property 'development' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.ExportMethod' may have shared mutable state; this is an error in the Swift 6 language mode
187 |     }
188 |
189 |     public struct ExportMethod {
    |                   `- note: consider making struct 'ExportMethod' conform to the 'Sendable' protocol
190 |         public let rawValue: String
191 |
    :
197 |         public static let inHouse = ExportMethod(rawValue: "enterprise")
198 |         public static let adHoc = ExportMethod(rawValue: "ad-hoc")
199 |         public static let development = ExportMethod(rawValue: "development")
    |                           |- warning: static property 'development' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.ExportMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'development' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
200 |     }
201 | }
/host/spi-builder-workspace/Sources/Swiftlane/Library/Vendor/XCParser.swift:14:5: warning: let 'xcparseCurrentVersion' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | import XCParseCore
 13 |
 14 | let xcparseCurrentVersion = Version(2, 2, 1)
    |     `- warning: let 'xcparseCurrentVersion' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 15 |
 16 | struct XCResultToolCompatability {
/host/spi-builder-workspace/.build/checkouts/swift-tools-support-core/Sources/TSCUtility/Version.swift:14:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 12 |
 13 | /// A struct representing a semver version.
 14 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 15 |
 16 |     /// The major version.
/host/spi-builder-workspace/Sources/Swiftlane/Library/Vendor/XCParser.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'TSCUtility'
  9 | import Foundation
 10 | import TSCBasic
 11 | import TSCUtility
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'TSCUtility'
 12 | import XCParseCore
 13 |
 14 | let xcparseCurrentVersion = Version(2, 2, 1)
    |     |- note: add '@MainActor' to make let 'xcparseCurrentVersion' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 15 |
 16 | struct XCResultToolCompatability {
/host/spi-builder-workspace/Sources/Swiftlane/Library/Vendor/XCParser.swift:274:69: warning: reference to var 'stdoutStream' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
272 |
273 |         let header = (displayName != "") ? "Exporting \"\(displayName)\" Attachments" : "Exporting Attachments"
274 |         let progressBar = PercentProgressAnimation(stream: TSCBasic.stdoutStream, header: header)
    |                                                                     `- warning: reference to var 'stdoutStream' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
275 |         progressBar.update(step: 0, total: attachments.count, text: "")
276 |
/host/spi-builder-workspace/.build/checkouts/swift-tools-support-core/Sources/TSCBasic/WritableByteStream.swift:783:12: note: var declared here
781 |
782 | /// Public stdout stream instance.
783 | public var stdoutStream: ThreadSafeOutputByteStream = try! ThreadSafeOutputByteStream(LocalFileOutputByteStream(
    |            `- note: var declared here
784 |     filePointer: TSCLibc.stdout,
785 |     closeOnDeinit: false))
[1273/1275] Compiling Swiftlane ALTool.swift
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:128:27: warning: static property 'iPhone' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Sdk' may have shared mutable state; this is an error in the Swift 6 language mode
119 |
120 | public enum Xcodebuild {
121 |     public struct Sdk {
    |                   `- note: consider making struct 'Sdk' conform to the 'Sendable' protocol
122 |         public let rawValue: String
123 |
    :
126 |         }
127 |
128 |         public static let iPhone = Sdk(rawValue: "iphoneos")
    |                           |- warning: static property 'iPhone' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Sdk' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'iPhone' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
129 |         public static let iPhoneSimulator = Sdk(rawValue: "iphonesimulator")
130 |     }
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:129:27: warning: static property 'iPhoneSimulator' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Sdk' may have shared mutable state; this is an error in the Swift 6 language mode
119 |
120 | public enum Xcodebuild {
121 |     public struct Sdk {
    |                   `- note: consider making struct 'Sdk' conform to the 'Sendable' protocol
122 |         public let rawValue: String
123 |
    :
127 |
128 |         public static let iPhone = Sdk(rawValue: "iphoneos")
129 |         public static let iPhoneSimulator = Sdk(rawValue: "iphonesimulator")
    |                           |- warning: static property 'iPhoneSimulator' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Sdk' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'iPhoneSimulator' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
130 |     }
131 |
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:139:27: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Configuration' may have shared mutable state; this is an error in the Swift 6 language mode
130 |     }
131 |
132 |     public struct Configuration {
    |                   `- note: consider making struct 'Configuration' conform to the 'Sendable' protocol
133 |         public let rawValue: String
134 |
    :
137 |         }
138 |
139 |         public static let debug = Configuration(rawValue: "DEBUG")
    |                           |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Configuration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'debug' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
140 |         public static let release = Configuration(rawValue: "RELEASE")
141 |     }
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:140:27: warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Configuration' may have shared mutable state; this is an error in the Swift 6 language mode
130 |     }
131 |
132 |     public struct Configuration {
    |                   `- note: consider making struct 'Configuration' conform to the 'Sendable' protocol
133 |         public let rawValue: String
134 |
    :
138 |
139 |         public static let debug = Configuration(rawValue: "DEBUG")
140 |         public static let release = Configuration(rawValue: "RELEASE")
    |                           |- warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Configuration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'release' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
141 |     }
142 |
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:150:27: warning: static property 'iOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
141 |     }
142 |
143 |     public struct Platform {
    |                   `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
144 |         public let rawValue: String
145 |
    :
148 |         }
149 |
150 |         public static let iOS = Platform(rawValue: "iOS")
    |                           |- warning: static property 'iOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'iOS' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 |         public static let iOSSimulator = Platform(rawValue: "iOS Simulator")
152 |         public static let tvOS = Platform(rawValue: "tvOS")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:151:27: warning: static property 'iOSSimulator' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
141 |     }
142 |
143 |     public struct Platform {
    |                   `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
144 |         public let rawValue: String
145 |
    :
149 |
150 |         public static let iOS = Platform(rawValue: "iOS")
151 |         public static let iOSSimulator = Platform(rawValue: "iOS Simulator")
    |                           |- warning: static property 'iOSSimulator' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'iOSSimulator' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
152 |         public static let tvOS = Platform(rawValue: "tvOS")
153 |         public static let tvOSSimulator = Platform(rawValue: "tvOS Simulator")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:152:27: warning: static property 'tvOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
141 |     }
142 |
143 |     public struct Platform {
    |                   `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
144 |         public let rawValue: String
145 |
    :
150 |         public static let iOS = Platform(rawValue: "iOS")
151 |         public static let iOSSimulator = Platform(rawValue: "iOS Simulator")
152 |         public static let tvOS = Platform(rawValue: "tvOS")
    |                           |- warning: static property 'tvOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'tvOS' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
153 |         public static let tvOSSimulator = Platform(rawValue: "tvOS Simulator")
154 |         public static let watchOS = Platform(rawValue: "watchOS")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:153:27: warning: static property 'tvOSSimulator' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
141 |     }
142 |
143 |     public struct Platform {
    |                   `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
144 |         public let rawValue: String
145 |
    :
151 |         public static let iOSSimulator = Platform(rawValue: "iOS Simulator")
152 |         public static let tvOS = Platform(rawValue: "tvOS")
153 |         public static let tvOSSimulator = Platform(rawValue: "tvOS Simulator")
    |                           |- warning: static property 'tvOSSimulator' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'tvOSSimulator' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 |         public static let watchOS = Platform(rawValue: "watchOS")
155 |         public static let watchOSSimulator = Platform(rawValue: "watchOS Simulator")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:154:27: warning: static property 'watchOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
141 |     }
142 |
143 |     public struct Platform {
    |                   `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
144 |         public let rawValue: String
145 |
    :
152 |         public static let tvOS = Platform(rawValue: "tvOS")
153 |         public static let tvOSSimulator = Platform(rawValue: "tvOS Simulator")
154 |         public static let watchOS = Platform(rawValue: "watchOS")
    |                           |- warning: static property 'watchOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'watchOS' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
155 |         public static let watchOSSimulator = Platform(rawValue: "watchOS Simulator")
156 |         public static let macOS = Platform(rawValue: "OSX")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:155:27: warning: static property 'watchOSSimulator' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
141 |     }
142 |
143 |     public struct Platform {
    |                   `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
144 |         public let rawValue: String
145 |
    :
153 |         public static let tvOSSimulator = Platform(rawValue: "tvOS Simulator")
154 |         public static let watchOS = Platform(rawValue: "watchOS")
155 |         public static let watchOSSimulator = Platform(rawValue: "watchOS Simulator")
    |                           |- warning: static property 'watchOSSimulator' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'watchOSSimulator' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 |         public static let macOS = Platform(rawValue: "OSX")
157 |     }
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:156:27: warning: static property 'macOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
141 |     }
142 |
143 |     public struct Platform {
    |                   `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
144 |         public let rawValue: String
145 |
    :
154 |         public static let watchOS = Platform(rawValue: "watchOS")
155 |         public static let watchOSSimulator = Platform(rawValue: "watchOS Simulator")
156 |         public static let macOS = Platform(rawValue: "OSX")
    |                           |- warning: static property 'macOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'macOS' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
157 |     }
158 |
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:166:27: warning: static property 'iPhone13' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Name' may have shared mutable state; this is an error in the Swift 6 language mode
157 |     }
158 |
159 |     public struct Name {
    |                   `- note: consider making struct 'Name' conform to the 'Sendable' protocol
160 |         public let rawValue: String
161 |
    :
164 |         }
165 |
166 |         public static let iPhone13 = Name(rawValue: "iPhone 13")
    |                           |- warning: static property 'iPhone13' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'iPhone13' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
167 |     }
168 |
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:176:27: warning: static property 'latest' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.OS' may have shared mutable state; this is an error in the Swift 6 language mode
167 |     }
168 |
169 |     public struct OS {
    |                   `- note: consider making struct 'OS' conform to the 'Sendable' protocol
170 |         public let rawValue: String
171 |
    :
174 |         }
175 |
176 |         public static let latest = OS(rawValue: "latest")
    |                           |- warning: static property 'latest' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.OS' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'latest' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
177 |     }
178 |
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:186:27: warning: static property 'genericiOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Destination' may have shared mutable state; this is an error in the Swift 6 language mode
177 |     }
178 |
179 |     public struct Destination: Equatable {
    |                   `- note: consider making struct 'Destination' conform to the 'Sendable' protocol
180 |         public let rawValue: String
181 |
    :
184 |         }
185 |
186 |         public static let genericiOS = Destination(rawValue: "generic/platform=iOS")
    |                           |- warning: static property 'genericiOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Destination' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'genericiOS' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
187 |     }
188 |
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:196:27: warning: static property 'appStore' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.ExportMethod' may have shared mutable state; this is an error in the Swift 6 language mode
187 |     }
188 |
189 |     public struct ExportMethod {
    |                   `- note: consider making struct 'ExportMethod' conform to the 'Sendable' protocol
190 |         public let rawValue: String
191 |
    :
194 |         }
195 |
196 |         public static let appStore = ExportMethod(rawValue: "app-store")
    |                           |- warning: static property 'appStore' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.ExportMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'appStore' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
197 |         public static let inHouse = ExportMethod(rawValue: "enterprise")
198 |         public static let adHoc = ExportMethod(rawValue: "ad-hoc")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:197:27: warning: static property 'inHouse' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.ExportMethod' may have shared mutable state; this is an error in the Swift 6 language mode
187 |     }
188 |
189 |     public struct ExportMethod {
    |                   `- note: consider making struct 'ExportMethod' conform to the 'Sendable' protocol
190 |         public let rawValue: String
191 |
    :
195 |
196 |         public static let appStore = ExportMethod(rawValue: "app-store")
197 |         public static let inHouse = ExportMethod(rawValue: "enterprise")
    |                           |- warning: static property 'inHouse' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.ExportMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'inHouse' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
198 |         public static let adHoc = ExportMethod(rawValue: "ad-hoc")
199 |         public static let development = ExportMethod(rawValue: "development")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:198:27: warning: static property 'adHoc' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.ExportMethod' may have shared mutable state; this is an error in the Swift 6 language mode
187 |     }
188 |
189 |     public struct ExportMethod {
    |                   `- note: consider making struct 'ExportMethod' conform to the 'Sendable' protocol
190 |         public let rawValue: String
191 |
    :
196 |         public static let appStore = ExportMethod(rawValue: "app-store")
197 |         public static let inHouse = ExportMethod(rawValue: "enterprise")
198 |         public static let adHoc = ExportMethod(rawValue: "ad-hoc")
    |                           |- warning: static property 'adHoc' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.ExportMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'adHoc' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
199 |         public static let development = ExportMethod(rawValue: "development")
200 |     }
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:199:27: warning: static property 'development' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.ExportMethod' may have shared mutable state; this is an error in the Swift 6 language mode
187 |     }
188 |
189 |     public struct ExportMethod {
    |                   `- note: consider making struct 'ExportMethod' conform to the 'Sendable' protocol
190 |         public let rawValue: String
191 |
    :
197 |         public static let inHouse = ExportMethod(rawValue: "enterprise")
198 |         public static let adHoc = ExportMethod(rawValue: "ad-hoc")
199 |         public static let development = ExportMethod(rawValue: "development")
    |                           |- warning: static property 'development' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.ExportMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'development' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
200 |     }
201 | }
/host/spi-builder-workspace/Sources/Swiftlane/Library/Vendor/XCParser.swift:14:5: warning: let 'xcparseCurrentVersion' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | import XCParseCore
 13 |
 14 | let xcparseCurrentVersion = Version(2, 2, 1)
    |     `- warning: let 'xcparseCurrentVersion' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 15 |
 16 | struct XCResultToolCompatability {
/host/spi-builder-workspace/.build/checkouts/swift-tools-support-core/Sources/TSCUtility/Version.swift:14:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 12 |
 13 | /// A struct representing a semver version.
 14 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 15 |
 16 |     /// The major version.
/host/spi-builder-workspace/Sources/Swiftlane/Library/Vendor/XCParser.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'TSCUtility'
  9 | import Foundation
 10 | import TSCBasic
 11 | import TSCUtility
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'TSCUtility'
 12 | import XCParseCore
 13 |
 14 | let xcparseCurrentVersion = Version(2, 2, 1)
    |     |- note: add '@MainActor' to make let 'xcparseCurrentVersion' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 15 |
 16 | struct XCResultToolCompatability {
/host/spi-builder-workspace/Sources/Swiftlane/Library/Vendor/XCParser.swift:274:69: warning: reference to var 'stdoutStream' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
272 |
273 |         let header = (displayName != "") ? "Exporting \"\(displayName)\" Attachments" : "Exporting Attachments"
274 |         let progressBar = PercentProgressAnimation(stream: TSCBasic.stdoutStream, header: header)
    |                                                                     `- warning: reference to var 'stdoutStream' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
275 |         progressBar.update(step: 0, total: attachments.count, text: "")
276 |
/host/spi-builder-workspace/.build/checkouts/swift-tools-support-core/Sources/TSCBasic/WritableByteStream.swift:783:12: note: var declared here
781 |
782 | /// Public stdout stream instance.
783 | public var stdoutStream: ThreadSafeOutputByteStream = try! ThreadSafeOutputByteStream(LocalFileOutputByteStream(
    |            `- note: var declared here
784 |     filePointer: TSCLibc.stdout,
785 |     closeOnDeinit: false))
[1274/1275] Compiling Swiftlane Xcodebuild.swift
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:128:27: warning: static property 'iPhone' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Sdk' may have shared mutable state; this is an error in the Swift 6 language mode
119 |
120 | public enum Xcodebuild {
121 |     public struct Sdk {
    |                   `- note: consider making struct 'Sdk' conform to the 'Sendable' protocol
122 |         public let rawValue: String
123 |
    :
126 |         }
127 |
128 |         public static let iPhone = Sdk(rawValue: "iphoneos")
    |                           |- warning: static property 'iPhone' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Sdk' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'iPhone' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
129 |         public static let iPhoneSimulator = Sdk(rawValue: "iphonesimulator")
130 |     }
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:129:27: warning: static property 'iPhoneSimulator' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Sdk' may have shared mutable state; this is an error in the Swift 6 language mode
119 |
120 | public enum Xcodebuild {
121 |     public struct Sdk {
    |                   `- note: consider making struct 'Sdk' conform to the 'Sendable' protocol
122 |         public let rawValue: String
123 |
    :
127 |
128 |         public static let iPhone = Sdk(rawValue: "iphoneos")
129 |         public static let iPhoneSimulator = Sdk(rawValue: "iphonesimulator")
    |                           |- warning: static property 'iPhoneSimulator' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Sdk' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'iPhoneSimulator' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
130 |     }
131 |
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:139:27: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Configuration' may have shared mutable state; this is an error in the Swift 6 language mode
130 |     }
131 |
132 |     public struct Configuration {
    |                   `- note: consider making struct 'Configuration' conform to the 'Sendable' protocol
133 |         public let rawValue: String
134 |
    :
137 |         }
138 |
139 |         public static let debug = Configuration(rawValue: "DEBUG")
    |                           |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Configuration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'debug' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
140 |         public static let release = Configuration(rawValue: "RELEASE")
141 |     }
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:140:27: warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Configuration' may have shared mutable state; this is an error in the Swift 6 language mode
130 |     }
131 |
132 |     public struct Configuration {
    |                   `- note: consider making struct 'Configuration' conform to the 'Sendable' protocol
133 |         public let rawValue: String
134 |
    :
138 |
139 |         public static let debug = Configuration(rawValue: "DEBUG")
140 |         public static let release = Configuration(rawValue: "RELEASE")
    |                           |- warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Configuration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'release' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
141 |     }
142 |
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:150:27: warning: static property 'iOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
141 |     }
142 |
143 |     public struct Platform {
    |                   `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
144 |         public let rawValue: String
145 |
    :
148 |         }
149 |
150 |         public static let iOS = Platform(rawValue: "iOS")
    |                           |- warning: static property 'iOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'iOS' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 |         public static let iOSSimulator = Platform(rawValue: "iOS Simulator")
152 |         public static let tvOS = Platform(rawValue: "tvOS")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:151:27: warning: static property 'iOSSimulator' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
141 |     }
142 |
143 |     public struct Platform {
    |                   `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
144 |         public let rawValue: String
145 |
    :
149 |
150 |         public static let iOS = Platform(rawValue: "iOS")
151 |         public static let iOSSimulator = Platform(rawValue: "iOS Simulator")
    |                           |- warning: static property 'iOSSimulator' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'iOSSimulator' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
152 |         public static let tvOS = Platform(rawValue: "tvOS")
153 |         public static let tvOSSimulator = Platform(rawValue: "tvOS Simulator")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:152:27: warning: static property 'tvOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
141 |     }
142 |
143 |     public struct Platform {
    |                   `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
144 |         public let rawValue: String
145 |
    :
150 |         public static let iOS = Platform(rawValue: "iOS")
151 |         public static let iOSSimulator = Platform(rawValue: "iOS Simulator")
152 |         public static let tvOS = Platform(rawValue: "tvOS")
    |                           |- warning: static property 'tvOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'tvOS' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
153 |         public static let tvOSSimulator = Platform(rawValue: "tvOS Simulator")
154 |         public static let watchOS = Platform(rawValue: "watchOS")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:153:27: warning: static property 'tvOSSimulator' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
141 |     }
142 |
143 |     public struct Platform {
    |                   `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
144 |         public let rawValue: String
145 |
    :
151 |         public static let iOSSimulator = Platform(rawValue: "iOS Simulator")
152 |         public static let tvOS = Platform(rawValue: "tvOS")
153 |         public static let tvOSSimulator = Platform(rawValue: "tvOS Simulator")
    |                           |- warning: static property 'tvOSSimulator' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'tvOSSimulator' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 |         public static let watchOS = Platform(rawValue: "watchOS")
155 |         public static let watchOSSimulator = Platform(rawValue: "watchOS Simulator")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:154:27: warning: static property 'watchOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
141 |     }
142 |
143 |     public struct Platform {
    |                   `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
144 |         public let rawValue: String
145 |
    :
152 |         public static let tvOS = Platform(rawValue: "tvOS")
153 |         public static let tvOSSimulator = Platform(rawValue: "tvOS Simulator")
154 |         public static let watchOS = Platform(rawValue: "watchOS")
    |                           |- warning: static property 'watchOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'watchOS' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
155 |         public static let watchOSSimulator = Platform(rawValue: "watchOS Simulator")
156 |         public static let macOS = Platform(rawValue: "OSX")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:155:27: warning: static property 'watchOSSimulator' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
141 |     }
142 |
143 |     public struct Platform {
    |                   `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
144 |         public let rawValue: String
145 |
    :
153 |         public static let tvOSSimulator = Platform(rawValue: "tvOS Simulator")
154 |         public static let watchOS = Platform(rawValue: "watchOS")
155 |         public static let watchOSSimulator = Platform(rawValue: "watchOS Simulator")
    |                           |- warning: static property 'watchOSSimulator' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'watchOSSimulator' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 |         public static let macOS = Platform(rawValue: "OSX")
157 |     }
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:156:27: warning: static property 'macOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
141 |     }
142 |
143 |     public struct Platform {
    |                   `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
144 |         public let rawValue: String
145 |
    :
154 |         public static let watchOS = Platform(rawValue: "watchOS")
155 |         public static let watchOSSimulator = Platform(rawValue: "watchOS Simulator")
156 |         public static let macOS = Platform(rawValue: "OSX")
    |                           |- warning: static property 'macOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'macOS' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
157 |     }
158 |
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:166:27: warning: static property 'iPhone13' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Name' may have shared mutable state; this is an error in the Swift 6 language mode
157 |     }
158 |
159 |     public struct Name {
    |                   `- note: consider making struct 'Name' conform to the 'Sendable' protocol
160 |         public let rawValue: String
161 |
    :
164 |         }
165 |
166 |         public static let iPhone13 = Name(rawValue: "iPhone 13")
    |                           |- warning: static property 'iPhone13' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'iPhone13' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
167 |     }
168 |
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:176:27: warning: static property 'latest' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.OS' may have shared mutable state; this is an error in the Swift 6 language mode
167 |     }
168 |
169 |     public struct OS {
    |                   `- note: consider making struct 'OS' conform to the 'Sendable' protocol
170 |         public let rawValue: String
171 |
    :
174 |         }
175 |
176 |         public static let latest = OS(rawValue: "latest")
    |                           |- warning: static property 'latest' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.OS' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'latest' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
177 |     }
178 |
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:186:27: warning: static property 'genericiOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Destination' may have shared mutable state; this is an error in the Swift 6 language mode
177 |     }
178 |
179 |     public struct Destination: Equatable {
    |                   `- note: consider making struct 'Destination' conform to the 'Sendable' protocol
180 |         public let rawValue: String
181 |
    :
184 |         }
185 |
186 |         public static let genericiOS = Destination(rawValue: "generic/platform=iOS")
    |                           |- warning: static property 'genericiOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Destination' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'genericiOS' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
187 |     }
188 |
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:196:27: warning: static property 'appStore' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.ExportMethod' may have shared mutable state; this is an error in the Swift 6 language mode
187 |     }
188 |
189 |     public struct ExportMethod {
    |                   `- note: consider making struct 'ExportMethod' conform to the 'Sendable' protocol
190 |         public let rawValue: String
191 |
    :
194 |         }
195 |
196 |         public static let appStore = ExportMethod(rawValue: "app-store")
    |                           |- warning: static property 'appStore' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.ExportMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'appStore' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
197 |         public static let inHouse = ExportMethod(rawValue: "enterprise")
198 |         public static let adHoc = ExportMethod(rawValue: "ad-hoc")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:197:27: warning: static property 'inHouse' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.ExportMethod' may have shared mutable state; this is an error in the Swift 6 language mode
187 |     }
188 |
189 |     public struct ExportMethod {
    |                   `- note: consider making struct 'ExportMethod' conform to the 'Sendable' protocol
190 |         public let rawValue: String
191 |
    :
195 |
196 |         public static let appStore = ExportMethod(rawValue: "app-store")
197 |         public static let inHouse = ExportMethod(rawValue: "enterprise")
    |                           |- warning: static property 'inHouse' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.ExportMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'inHouse' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
198 |         public static let adHoc = ExportMethod(rawValue: "ad-hoc")
199 |         public static let development = ExportMethod(rawValue: "development")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:198:27: warning: static property 'adHoc' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.ExportMethod' may have shared mutable state; this is an error in the Swift 6 language mode
187 |     }
188 |
189 |     public struct ExportMethod {
    |                   `- note: consider making struct 'ExportMethod' conform to the 'Sendable' protocol
190 |         public let rawValue: String
191 |
    :
196 |         public static let appStore = ExportMethod(rawValue: "app-store")
197 |         public static let inHouse = ExportMethod(rawValue: "enterprise")
198 |         public static let adHoc = ExportMethod(rawValue: "ad-hoc")
    |                           |- warning: static property 'adHoc' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.ExportMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'adHoc' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
199 |         public static let development = ExportMethod(rawValue: "development")
200 |     }
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:199:27: warning: static property 'development' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.ExportMethod' may have shared mutable state; this is an error in the Swift 6 language mode
187 |     }
188 |
189 |     public struct ExportMethod {
    |                   `- note: consider making struct 'ExportMethod' conform to the 'Sendable' protocol
190 |         public let rawValue: String
191 |
    :
197 |         public static let inHouse = ExportMethod(rawValue: "enterprise")
198 |         public static let adHoc = ExportMethod(rawValue: "ad-hoc")
199 |         public static let development = ExportMethod(rawValue: "development")
    |                           |- warning: static property 'development' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.ExportMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'development' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
200 |     }
201 | }
/host/spi-builder-workspace/Sources/Swiftlane/Library/Vendor/XCParser.swift:14:5: warning: let 'xcparseCurrentVersion' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | import XCParseCore
 13 |
 14 | let xcparseCurrentVersion = Version(2, 2, 1)
    |     `- warning: let 'xcparseCurrentVersion' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 15 |
 16 | struct XCResultToolCompatability {
/host/spi-builder-workspace/.build/checkouts/swift-tools-support-core/Sources/TSCUtility/Version.swift:14:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 12 |
 13 | /// A struct representing a semver version.
 14 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 15 |
 16 |     /// The major version.
/host/spi-builder-workspace/Sources/Swiftlane/Library/Vendor/XCParser.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'TSCUtility'
  9 | import Foundation
 10 | import TSCBasic
 11 | import TSCUtility
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'TSCUtility'
 12 | import XCParseCore
 13 |
 14 | let xcparseCurrentVersion = Version(2, 2, 1)
    |     |- note: add '@MainActor' to make let 'xcparseCurrentVersion' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 15 |
 16 | struct XCResultToolCompatability {
/host/spi-builder-workspace/Sources/Swiftlane/Library/Vendor/XCParser.swift:274:69: warning: reference to var 'stdoutStream' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
272 |
273 |         let header = (displayName != "") ? "Exporting \"\(displayName)\" Attachments" : "Exporting Attachments"
274 |         let progressBar = PercentProgressAnimation(stream: TSCBasic.stdoutStream, header: header)
    |                                                                     `- warning: reference to var 'stdoutStream' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
275 |         progressBar.update(step: 0, total: attachments.count, text: "")
276 |
/host/spi-builder-workspace/.build/checkouts/swift-tools-support-core/Sources/TSCBasic/WritableByteStream.swift:783:12: note: var declared here
781 |
782 | /// Public stdout stream instance.
783 | public var stdoutStream: ThreadSafeOutputByteStream = try! ThreadSafeOutputByteStream(LocalFileOutputByteStream(
    |            `- note: var declared here
784 |     filePointer: TSCLibc.stdout,
785 |     closeOnDeinit: false))
[1275/1275] Compiling Swiftlane XCParser.swift
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:128:27: warning: static property 'iPhone' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Sdk' may have shared mutable state; this is an error in the Swift 6 language mode
119 |
120 | public enum Xcodebuild {
121 |     public struct Sdk {
    |                   `- note: consider making struct 'Sdk' conform to the 'Sendable' protocol
122 |         public let rawValue: String
123 |
    :
126 |         }
127 |
128 |         public static let iPhone = Sdk(rawValue: "iphoneos")
    |                           |- warning: static property 'iPhone' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Sdk' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'iPhone' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
129 |         public static let iPhoneSimulator = Sdk(rawValue: "iphonesimulator")
130 |     }
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:129:27: warning: static property 'iPhoneSimulator' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Sdk' may have shared mutable state; this is an error in the Swift 6 language mode
119 |
120 | public enum Xcodebuild {
121 |     public struct Sdk {
    |                   `- note: consider making struct 'Sdk' conform to the 'Sendable' protocol
122 |         public let rawValue: String
123 |
    :
127 |
128 |         public static let iPhone = Sdk(rawValue: "iphoneos")
129 |         public static let iPhoneSimulator = Sdk(rawValue: "iphonesimulator")
    |                           |- warning: static property 'iPhoneSimulator' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Sdk' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'iPhoneSimulator' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
130 |     }
131 |
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:139:27: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Configuration' may have shared mutable state; this is an error in the Swift 6 language mode
130 |     }
131 |
132 |     public struct Configuration {
    |                   `- note: consider making struct 'Configuration' conform to the 'Sendable' protocol
133 |         public let rawValue: String
134 |
    :
137 |         }
138 |
139 |         public static let debug = Configuration(rawValue: "DEBUG")
    |                           |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Configuration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'debug' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
140 |         public static let release = Configuration(rawValue: "RELEASE")
141 |     }
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:140:27: warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Configuration' may have shared mutable state; this is an error in the Swift 6 language mode
130 |     }
131 |
132 |     public struct Configuration {
    |                   `- note: consider making struct 'Configuration' conform to the 'Sendable' protocol
133 |         public let rawValue: String
134 |
    :
138 |
139 |         public static let debug = Configuration(rawValue: "DEBUG")
140 |         public static let release = Configuration(rawValue: "RELEASE")
    |                           |- warning: static property 'release' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Configuration' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'release' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
141 |     }
142 |
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:150:27: warning: static property 'iOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
141 |     }
142 |
143 |     public struct Platform {
    |                   `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
144 |         public let rawValue: String
145 |
    :
148 |         }
149 |
150 |         public static let iOS = Platform(rawValue: "iOS")
    |                           |- warning: static property 'iOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'iOS' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
151 |         public static let iOSSimulator = Platform(rawValue: "iOS Simulator")
152 |         public static let tvOS = Platform(rawValue: "tvOS")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:151:27: warning: static property 'iOSSimulator' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
141 |     }
142 |
143 |     public struct Platform {
    |                   `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
144 |         public let rawValue: String
145 |
    :
149 |
150 |         public static let iOS = Platform(rawValue: "iOS")
151 |         public static let iOSSimulator = Platform(rawValue: "iOS Simulator")
    |                           |- warning: static property 'iOSSimulator' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'iOSSimulator' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
152 |         public static let tvOS = Platform(rawValue: "tvOS")
153 |         public static let tvOSSimulator = Platform(rawValue: "tvOS Simulator")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:152:27: warning: static property 'tvOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
141 |     }
142 |
143 |     public struct Platform {
    |                   `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
144 |         public let rawValue: String
145 |
    :
150 |         public static let iOS = Platform(rawValue: "iOS")
151 |         public static let iOSSimulator = Platform(rawValue: "iOS Simulator")
152 |         public static let tvOS = Platform(rawValue: "tvOS")
    |                           |- warning: static property 'tvOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'tvOS' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
153 |         public static let tvOSSimulator = Platform(rawValue: "tvOS Simulator")
154 |         public static let watchOS = Platform(rawValue: "watchOS")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:153:27: warning: static property 'tvOSSimulator' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
141 |     }
142 |
143 |     public struct Platform {
    |                   `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
144 |         public let rawValue: String
145 |
    :
151 |         public static let iOSSimulator = Platform(rawValue: "iOS Simulator")
152 |         public static let tvOS = Platform(rawValue: "tvOS")
153 |         public static let tvOSSimulator = Platform(rawValue: "tvOS Simulator")
    |                           |- warning: static property 'tvOSSimulator' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'tvOSSimulator' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
154 |         public static let watchOS = Platform(rawValue: "watchOS")
155 |         public static let watchOSSimulator = Platform(rawValue: "watchOS Simulator")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:154:27: warning: static property 'watchOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
141 |     }
142 |
143 |     public struct Platform {
    |                   `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
144 |         public let rawValue: String
145 |
    :
152 |         public static let tvOS = Platform(rawValue: "tvOS")
153 |         public static let tvOSSimulator = Platform(rawValue: "tvOS Simulator")
154 |         public static let watchOS = Platform(rawValue: "watchOS")
    |                           |- warning: static property 'watchOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'watchOS' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
155 |         public static let watchOSSimulator = Platform(rawValue: "watchOS Simulator")
156 |         public static let macOS = Platform(rawValue: "OSX")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:155:27: warning: static property 'watchOSSimulator' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
141 |     }
142 |
143 |     public struct Platform {
    |                   `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
144 |         public let rawValue: String
145 |
    :
153 |         public static let tvOSSimulator = Platform(rawValue: "tvOS Simulator")
154 |         public static let watchOS = Platform(rawValue: "watchOS")
155 |         public static let watchOSSimulator = Platform(rawValue: "watchOS Simulator")
    |                           |- warning: static property 'watchOSSimulator' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'watchOSSimulator' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
156 |         public static let macOS = Platform(rawValue: "OSX")
157 |     }
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:156:27: warning: static property 'macOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
141 |     }
142 |
143 |     public struct Platform {
    |                   `- note: consider making struct 'Platform' conform to the 'Sendable' protocol
144 |         public let rawValue: String
145 |
    :
154 |         public static let watchOS = Platform(rawValue: "watchOS")
155 |         public static let watchOSSimulator = Platform(rawValue: "watchOS Simulator")
156 |         public static let macOS = Platform(rawValue: "OSX")
    |                           |- warning: static property 'macOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Platform' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'macOS' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
157 |     }
158 |
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:166:27: warning: static property 'iPhone13' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Name' may have shared mutable state; this is an error in the Swift 6 language mode
157 |     }
158 |
159 |     public struct Name {
    |                   `- note: consider making struct 'Name' conform to the 'Sendable' protocol
160 |         public let rawValue: String
161 |
    :
164 |         }
165 |
166 |         public static let iPhone13 = Name(rawValue: "iPhone 13")
    |                           |- warning: static property 'iPhone13' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Name' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'iPhone13' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
167 |     }
168 |
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:176:27: warning: static property 'latest' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.OS' may have shared mutable state; this is an error in the Swift 6 language mode
167 |     }
168 |
169 |     public struct OS {
    |                   `- note: consider making struct 'OS' conform to the 'Sendable' protocol
170 |         public let rawValue: String
171 |
    :
174 |         }
175 |
176 |         public static let latest = OS(rawValue: "latest")
    |                           |- warning: static property 'latest' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.OS' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'latest' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
177 |     }
178 |
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:186:27: warning: static property 'genericiOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Destination' may have shared mutable state; this is an error in the Swift 6 language mode
177 |     }
178 |
179 |     public struct Destination: Equatable {
    |                   `- note: consider making struct 'Destination' conform to the 'Sendable' protocol
180 |         public let rawValue: String
181 |
    :
184 |         }
185 |
186 |         public static let genericiOS = Destination(rawValue: "generic/platform=iOS")
    |                           |- warning: static property 'genericiOS' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.Destination' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'genericiOS' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
187 |     }
188 |
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:196:27: warning: static property 'appStore' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.ExportMethod' may have shared mutable state; this is an error in the Swift 6 language mode
187 |     }
188 |
189 |     public struct ExportMethod {
    |                   `- note: consider making struct 'ExportMethod' conform to the 'Sendable' protocol
190 |         public let rawValue: String
191 |
    :
194 |         }
195 |
196 |         public static let appStore = ExportMethod(rawValue: "app-store")
    |                           |- warning: static property 'appStore' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.ExportMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'appStore' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
197 |         public static let inHouse = ExportMethod(rawValue: "enterprise")
198 |         public static let adHoc = ExportMethod(rawValue: "ad-hoc")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:197:27: warning: static property 'inHouse' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.ExportMethod' may have shared mutable state; this is an error in the Swift 6 language mode
187 |     }
188 |
189 |     public struct ExportMethod {
    |                   `- note: consider making struct 'ExportMethod' conform to the 'Sendable' protocol
190 |         public let rawValue: String
191 |
    :
195 |
196 |         public static let appStore = ExportMethod(rawValue: "app-store")
197 |         public static let inHouse = ExportMethod(rawValue: "enterprise")
    |                           |- warning: static property 'inHouse' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.ExportMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'inHouse' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
198 |         public static let adHoc = ExportMethod(rawValue: "ad-hoc")
199 |         public static let development = ExportMethod(rawValue: "development")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:198:27: warning: static property 'adHoc' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.ExportMethod' may have shared mutable state; this is an error in the Swift 6 language mode
187 |     }
188 |
189 |     public struct ExportMethod {
    |                   `- note: consider making struct 'ExportMethod' conform to the 'Sendable' protocol
190 |         public let rawValue: String
191 |
    :
196 |         public static let appStore = ExportMethod(rawValue: "app-store")
197 |         public static let inHouse = ExportMethod(rawValue: "enterprise")
198 |         public static let adHoc = ExportMethod(rawValue: "ad-hoc")
    |                           |- warning: static property 'adHoc' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.ExportMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'adHoc' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
199 |         public static let development = ExportMethod(rawValue: "development")
200 |     }
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:199:27: warning: static property 'development' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.ExportMethod' may have shared mutable state; this is an error in the Swift 6 language mode
187 |     }
188 |
189 |     public struct ExportMethod {
    |                   `- note: consider making struct 'ExportMethod' conform to the 'Sendable' protocol
190 |         public let rawValue: String
191 |
    :
197 |         public static let inHouse = ExportMethod(rawValue: "enterprise")
198 |         public static let adHoc = ExportMethod(rawValue: "ad-hoc")
199 |         public static let development = ExportMethod(rawValue: "development")
    |                           |- warning: static property 'development' is not concurrency-safe because non-'Sendable' type 'Xcodebuild.ExportMethod' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'development' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
200 |     }
201 | }
/host/spi-builder-workspace/Sources/Swiftlane/Library/Vendor/XCParser.swift:14:5: warning: let 'xcparseCurrentVersion' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 12 | import XCParseCore
 13 |
 14 | let xcparseCurrentVersion = Version(2, 2, 1)
    |     `- warning: let 'xcparseCurrentVersion' is not concurrency-safe because non-'Sendable' type 'Version' may have shared mutable state; this is an error in the Swift 6 language mode
 15 |
 16 | struct XCResultToolCompatability {
/host/spi-builder-workspace/.build/checkouts/swift-tools-support-core/Sources/TSCUtility/Version.swift:14:15: note: struct 'Version' does not conform to the 'Sendable' protocol
 12 |
 13 | /// A struct representing a semver version.
 14 | public struct Version {
    |               `- note: struct 'Version' does not conform to the 'Sendable' protocol
 15 |
 16 |     /// The major version.
/host/spi-builder-workspace/Sources/Swiftlane/Library/Vendor/XCParser.swift:11:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'TSCUtility'
  9 | import Foundation
 10 | import TSCBasic
 11 | import TSCUtility
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'TSCUtility'
 12 | import XCParseCore
 13 |
 14 | let xcparseCurrentVersion = Version(2, 2, 1)
    |     |- note: add '@MainActor' to make let 'xcparseCurrentVersion' part of global actor 'MainActor'
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 15 |
 16 | struct XCResultToolCompatability {
/host/spi-builder-workspace/Sources/Swiftlane/Library/Vendor/XCParser.swift:274:69: warning: reference to var 'stdoutStream' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
272 |
273 |         let header = (displayName != "") ? "Exporting \"\(displayName)\" Attachments" : "Exporting Attachments"
274 |         let progressBar = PercentProgressAnimation(stream: TSCBasic.stdoutStream, header: header)
    |                                                                     `- warning: reference to var 'stdoutStream' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
275 |         progressBar.update(step: 0, total: attachments.count, text: "")
276 |
/host/spi-builder-workspace/.build/checkouts/swift-tools-support-core/Sources/TSCBasic/WritableByteStream.swift:783:12: note: var declared here
781 |
782 | /// Public stdout stream instance.
783 | public var stdoutStream: ThreadSafeOutputByteStream = try! ThreadSafeOutputByteStream(LocalFileOutputByteStream(
    |            `- note: var declared here
784 |     filePointer: TSCLibc.stdout,
785 |     closeOnDeinit: false))
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
warning: 'xcbeautify': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /host/spi-builder-workspace/.build/checkouts/xcbeautify/Sources/XcbeautifyLib/BUILD
[0/1] Planning build
[1/1] Compiling plugin GenerateManual
Building for debugging...
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/49] Emitting module URLQueryEncoder
[4/49] Compiling TSCLibc libc.swift
[5/50] Emitting module TSCLibc
[6/78] Compiling XMLCoder DoubleBox.swift
[7/78] Compiling XMLCoder FloatBox.swift
[8/78] Compiling XMLCoder IntBox.swift
[9/83] Compiling NaiveDate NaiveDateFormatter.swift
[10/97] Compiling Colorizer StringBackgroundColorizer.swift
[11/97] Compiling CryptoBoringWrapper CryptoKitErrors_boring.swift
[12/97] Compiling Colorizer Colorizer.swift
[13/97] Compiling Colorizer StringForegroundColorizer.swift
[14/97] Compiling Colorizer StringStyle.swift
[15/97] Emitting module Colorizer
[16/97] Compiling Colorizer StringStyleColorizer.swift
[19/98] Compiling XMLCoder KeyedBox.swift
[20/98] Compiling XMLCoder NullBox.swift
[21/98] Compiling XMLCoder SharedBox.swift
[22/98] Compiling Get Request.swift
[23/98] Emitting module CryptoBoringWrapper
[24/98] Compiling CryptoBoringWrapper BoringSSLAEAD.swift
[25/101] Emitting module Get
[26/106] Compiling CryptoBoringWrapper FiniteFieldArithmeticContext.swift
[27/106] Compiling CryptoBoringWrapper RandomBytes.swift
[28/106] Compiling SystemPackage Util.swift
[29/106] Compiling SystemPackage UtilConsumers.swift
[30/106] Compiling XMLCoder ValueBox.swift
[31/106] Compiling XMLCoder Element.swift
[32/106] Compiling Get APIClient.swift
[33/106] Compiling Get Helpers.swift
[34/106] Emitting module XMLCoder
[35/113] Compiling SwiftyXMLParser Element.swift
[42/113] Compiling XMLCoder SingleKeyedBox.swift
[43/113] Compiling XMLCoder DateBox.swift
[44/113] Compiling XMLCoder DecimalBox.swift
[45/113] Compiling XMLCoder StringBox.swift
[46/113] Compiling SwiftyXMLParser XML.swift
[47/113] Compiling XMLCoder Attribute.swift
[48/113] Compiling XMLCoder BoolBox.swift
[49/113] Compiling XMLCoder Box.swift
[50/113] Compiling XMLCoder ChoiceBox.swift
[51/113] Compiling XMLCoder DataBox.swift
[55/113] Compiling NaiveDate NaiveDate.swift
[56/113] Emitting module NaiveDate
[57/113] Compiling NaiveDate NaiveDateFormatStyle.swift
[58/113] Compiling SwiftyXMLParser Error.swift
[59/113] Compiling SwiftyXMLParser Parser.swift
[60/113] Compiling URLQueryEncoder URLQueryEncoder.swift
[62/114] Compiling XMLCoder UIntBox.swift
[63/114] Compiling XMLCoder URLBox.swift
[64/114] Compiling XMLCoder UnkeyedBox.swift
[69/115] Compiling CryptoBoringWrapper EllipticCurvePoint.swift
[70/115] Compiling CryptoBoringWrapper EllipticCurve.swift
[71/115] Compiling CryptoBoringWrapper ArbitraryPrecisionInteger.swift
[72/116] Emitting module SwiftyXMLParser
[73/116] Compiling SwiftyXMLParser Accessor.swift
[83/116] Emitting module SystemPackage
[87/118] Compiling Files Files.swift
[88/118] Emitting module Files
[90/119] Compiling XMLCoder XMLKeyedDecodingContainer.swift
[91/119] Compiling XMLCoder XMLUnkeyedDecodingContainer.swift
[92/119] Compiling XMLCoder DynamicNodeEncoding.swift
[93/119] Compiling XMLCoder EncodingErrorExtension.swift
[94/119] Compiling XMLCoder SingleValueEncodingContainer.swift
[95/119] Compiling XMLCoder XMLChoiceEncodingContainer.swift
[96/119] Compiling XMLCoder XMLCoderElement.swift
[97/119] Compiling XMLCoder XMLDocumentType.swift
[98/119] Compiling XMLCoder XMLHeader.swift
[99/119] Compiling XMLCoder XMLKey.swift
[100/119] Compiling XMLCoder XMLStackParser.swift
[101/119] Compiling XMLCoder DecodingErrorExtension.swift
[102/119] Compiling XMLCoder DynamicNodeDecoding.swift
[103/119] Compiling XMLCoder SingleValueDecodingContainer.swift
[104/119] Compiling XMLCoder XMLChoiceDecodingContainer.swift
[105/119] Compiling XMLCoder XMLDecoder.swift
[106/119] Compiling XMLCoder XMLDecoderImplementation.swift
[107/119] Compiling XMLCoder XMLDecodingStorage.swift
[110/119] Compiling XMLCoder KeyedStorage.swift
[111/119] Compiling XMLCoder Metatypes.swift
[112/119] Compiling XMLCoder String+Extensions.swift
[113/119] Compiling XMLCoder XMLChoiceCodingKey.swift
[114/119] Compiling XMLCoder XMLEncoder.swift
[115/119] Compiling XMLCoder XMLEncoderImplementation.swift
[116/119] Compiling XMLCoder XMLEncodingStorage.swift
[117/119] Compiling XMLCoder XMLKeyedEncodingContainer.swift
[118/119] Compiling XMLCoder XMLReferencingEncoder.swift
[119/119] Compiling XMLCoder XMLUnkeyedEncodingContainer.swift
[121/247] Compiling XcbeautifyLib String+Colored.swift
[122/247] Compiling XcbeautifyLib String+Matchable.swift
[123/249] Compiling XcbeautifyLib String+Substring.swift
[124/249] Compiling XcbeautifyLib TestSummary.swift
[125/249] Compiling XcbeautifyLib Array+Safe.swift
[126/249] Compiling XcbeautifyLib CaptureGroups.swift
[127/249] Compiling XcbeautifyLib Constants.swift
[128/249] Compiling XcbeautifyLib JunitReporter.swift
[129/249] Compiling XcbeautifyLib Matchable.swift
[130/249] Emitting module XcbeautifyLib
[131/249] Compiling TSCBasic Result.swift
[132/249] Compiling TSCBasic SortedArray.swift
[133/249] Compiling TSCBasic StringConversions.swift
[134/249] Compiling TSCBasic SynchronizedQueue.swift
[135/249] Compiling TSCBasic TemporaryFile.swift
[136/254] Compiling TSCBasic Process.swift
[137/254] Compiling TSCBasic ProcessEnv.swift
[138/254] Compiling TSCBasic ProcessSet.swift
[139/254] Compiling TSCBasic RegEx.swift
[145/254] Compiling TSCBasic TerminalController.swift
[146/263] Compiling XcbeautifyLib Pattern.swift
[147/263] Compiling XcbeautifyLib Regex.swift
[148/263] Compiling XcbeautifyLib OutputHandler.swift
[149/263] Compiling XcbeautifyLib Parser.swift
[150/263] Emitting module TSCBasic
[151/263] Compiling TSCBasic OrderedDictionary.swift
[152/263] Compiling TSCBasic OrderedSet.swift
[153/263] Compiling TSCBasic Path.swift
[154/263] Compiling TSCBasic HashAlgorithms.swift
[155/263] Compiling TSCBasic JSON.swift
[156/263] Compiling TSCBasic JSONMapper.swift
[157/263] Compiling TSCBasic KeyedPair.swift
[158/263] Compiling TSCBasic LazyCache.swift
[159/263] Compiling TSCBasic Lock.swift
[160/263] Compiling TSCBasic PathShims.swift
[161/263] Compiling TSCBasic OSLog.swift
[162/263] Compiling TSCBasic ObjectIdentifierProtocol.swift
[171/263] Compiling Crypto SymmetricKeys.swift
[172/263] Compiling Crypto HMAC.swift
[173/263] Compiling Crypto MACFunctions.swift
[174/263] Compiling Crypto MessageAuthenticationCode.swift
[175/263] Compiling Crypto AES.swift
[176/263] Compiling Crypto ECDSASignature_boring.swift
[177/263] Compiling Crypto ECDSA_boring.swift
[178/263] Compiling Crypto EdDSA_boring.swift
[179/263] Compiling Crypto ECDSA.swift
[180/263] Compiling Crypto Ed25519.swift
[181/263] Compiling Crypto HKDF.swift
[182/263] Compiling Crypto AESWrap.swift
[183/263] Compiling Crypto AESWrap_boring.swift
[184/263] Compiling Crypto Ed25519_boring.swift
[185/263] Compiling Crypto NISTCurvesKeys_boring.swift
[186/263] Compiling Crypto X25519Keys_boring.swift
[187/263] Compiling Crypto Curve25519.swift
[188/263] Compiling Crypto Ed25519Keys.swift
[189/263] Compiling Crypto NISTCurvesKeys.swift
[190/263] Compiling Crypto X25519Keys.swift
[191/263] Compiling TSCBasic Thread.swift
[192/263] Compiling TSCBasic Tuple.swift
[193/263] Compiling TSCBasic WritableByteStream.swift
[194/263] Compiling TSCBasic misc.swift
[195/263] Compiling Crypto Insecure.swift
[196/263] Compiling Crypto Insecure_HashFunctions.swift
[197/263] Compiling Crypto KEM.swift
[198/263] Compiling Crypto ECDH_boring.swift
[199/263] Compiling Crypto DH.swift
[200/263] Compiling Crypto ECDH.swift
[208/263] Compiling XcbeautifyLib GitHubActionsRenderer.swift
[209/263] Compiling XcbeautifyLib OutputRendering.swift
[211/263] Emitting module Crypto
[214/263] Compiling XcbeautifyLib TerminalRenderer.swift
[215/263] Compiling XcbeautifyLib String+CapturedGroups.swift
[240/264] Compiling TSCBasic DiagnosticsEngine.swift
[257/265] Compiling Crypto Signature.swift
[258/265] Compiling Crypto CryptoKitErrors_boring.swift
[259/265] Compiling Crypto RNG_boring.swift
[260/265] Compiling Crypto SafeCompare_boring.swift
[261/265] Compiling Crypto Zeroization_boring.swift
[262/265] Compiling Crypto PrettyBytes.swift
[263/265] Compiling Crypto SafeCompare.swift
[264/265] Compiling Crypto SecureBytes.swift
[265/265] Compiling Crypto Zeroization.swift
[267/349] Compiling JWTKit JWTAlgorithm.swift
[268/349] Compiling JWTKit JWTError.swift
[269/349] Compiling JWTKit JWTHeader.swift
[270/349] Compiling JWTKit JWTParser.swift
[271/349] Compiling JWTKit JWTPayload.swift
[272/349] Compiling JWTKit JWTSerializer.swift
[273/355] Compiling JWTKit JWTClaim.swift
[274/355] Compiling JWTKit JWTMultiValueClaim.swift
[275/355] Compiling JWTKit JWTUnixEpochClaim.swift
[276/355] Compiling JWTKit LocaleClaim.swift
[277/355] Compiling JWTKit NotBeforeClaim.swift
[278/355] Compiling JWTKit SubjectClaim.swift
[279/355] Compiling JWTKit ECDSAError.swift
[280/355] Compiling JWTKit AudienceClaim.swift
[281/355] Compiling JWTKit BoolClaim.swift
[282/355] Compiling JWTKit ExpirationClaim.swift
[283/355] Compiling JWTKit GoogleHostedDomainClaim.swift
[284/355] Compiling JWTKit IDClaim.swift
[285/355] Compiling JWTKit IssuedAtClaim.swift
[286/355] Compiling JWTKit IssuerClaim.swift
[287/355] Compiling JWTKit ECDSAKey.swift
[288/355] Compiling JWTKit ECDSASigner.swift
[289/355] Compiling JWTKit JWTSigner+ECDSA.swift
[290/355] Compiling JWTKit EdDSAError.swift
[291/355] Compiling JWTKit EdDSAKey.swift
[292/355] Compiling JWTKit EdDSASigner.swift
[293/355] Compiling JWTKit JWTSigner+EdDSA.swift
[294/355] Emitting module JWTKit
[300/360] Compiling JWTKit OctetKeyPair.swift
[301/360] Compiling JWTKit HMACError.swift
[302/360] Compiling TSCUtility Verbosity.swift
[303/360] Compiling TSCUtility Version.swift
[304/360] Compiling TSCUtility Versioning.swift
[305/360] Compiling TSCUtility dlopen.swift
[306/360] Compiling TSCUtility misc.swift
[307/360] Compiling JWTKit JWTSigner.swift
[308/360] Compiling JWTKit JWTSigners.swift
[309/360] Compiling JWTKit JWTSigner+UnsecuredNone.swift
[310/360] Compiling JWTKit UnsecuredNoneSigner.swift
[311/360] Compiling JWTKit JWTSigner+RSA.swift
[312/360] Compiling JWTKit RSAError.swift
[313/360] Compiling JWTKit RSAKey.swift
[314/360] Compiling JWTKit RSASigner.swift
[315/360] Compiling JWTKit Base64URL.swift
[316/360] Compiling JWTKit BigNumber.swift
[317/360] Compiling JWTKit CustomizedJSONCoders.swift
[318/360] Compiling JWTKit Exports.swift
[329/360] Compiling JWTKit OpenSSLSigner.swift
[330/360] Compiling JWTKit Utilities.swift
[331/360] Compiling JWTKit AppleIdentityToken.swift
[332/360] Compiling JWTKit GoogleIdentityToken.swift
[333/360] Compiling JWTKit MicrosoftIdentitiyToken.swift
[334/360] Compiling JWTKit X5CVerifier.swift
[346/361] Emitting module TSCUtility
[363/425] Compiling AppStoreConnect DateDecodingStrategy+extensions.swift
[364/425] Compiling AppStoreConnect JWT.swift
[365/425] Compiling XCParseCore ActionAbstractTestSummary.swift
[366/425] Compiling XCParseCore ActionDeviceRecord.swift
[367/425] Compiling XCParseCore ActionPlatformRecord.swift
[368/425] Compiling XCParseCore ActionRecord.swift
[369/425] Compiling XCParseCore ActionResult.swift
[370/425] Compiling XCParseCore ActionRunDestinationRecord.swift
[371/425] Compiling XCParseCore ActionSDKRecord.swift
[372/425] Compiling XCParseCore ActionTestActivitySummary.swift
[373/433] Compiling XCParseCore Reference.swift
[374/433] Compiling XCParseCore ResultIssueSummaries.swift
[375/433] Compiling XCParseCore ResultMetrics.swift
[376/433] Compiling XCParseCore SortedKeyValueArray.swift
[377/433] Compiling XCParseCore SortedKeyValueArrayPair.swift
[378/433] Compiling XCParseCore SourceCodeContext.swift
[379/433] Compiling XCParseCore SourceCodeFrame.swift
[380/433] Compiling XCParseCore SourceCodeLocation.swift
[381/433] Compiling XCParseCore ConsoleLogItem.swift
[382/433] Compiling XCParseCore ConsoleLogSection.swift
[383/433] Compiling XCParseCore DocumentLocation.swift
[384/433] Compiling XCParseCore EntityIdentifier.swift
[385/433] Compiling XCParseCore String+ASCII.swift
[386/433] Compiling XCParseCore URL+Directory.swift
[387/433] Compiling XCParseCore IssueSummary.swift
[388/433] Compiling XCParseCore ObjectID.swift
[389/433] Emitting module XCParseCore
[390/433] Compiling XCParseCore ActionTestAttachment.swift
[391/433] Compiling XCParseCore ActionTestConfiguration.swift
[392/433] Compiling XCParseCore ActionTestExpectedFailure.swift
[393/433] Compiling XCParseCore ActionTestFailureSummary.swift
[394/433] Compiling XCParseCore ActionTestMetadata.swift
[395/433] Compiling XCParseCore ActionTestNoticeSummary.swift
[396/433] Compiling XCParseCore ActionTestPerformanceMetricSummary.swift
[397/433] Compiling XCParseCore ActionTestPlanRunSummaries.swift
[398/433] Compiling XCParseCore ActivityLogMessage.swift
[399/433] Compiling XCParseCore ActivityLogMessageAnnotation.swift
[400/433] Compiling XCParseCore ActivityLogSection.swift
[401/433] Compiling XCParseCore ActivityLogTargetBuildSection.swift
[402/433] Compiling XCParseCore ActivityLogUnitTestSection.swift
[403/433] Compiling XCParseCore ArchiveInfo.swift
[404/433] Compiling XCParseCore CodeCoverageInfo.swift
[405/433] Compiling XCParseCore Console.swift
[406/433] Compiling XCParseCore ActivityLogAnalyzerControlFlowStep.swift
[407/433] Compiling XCParseCore ActivityLogAnalyzerControlFlowStepEdge.swift
[408/433] Compiling XCParseCore ActivityLogAnalyzerEventStep.swift
[409/433] Compiling XCParseCore ActivityLogAnalyzerResultMessage.swift
[410/433] Compiling XCParseCore ActivityLogAnalyzerStep.swift
[411/433] Compiling XCParseCore ActivityLogAnalyzerWarningMessage.swift
[412/433] Compiling XCParseCore ActivityLogCommandInvocationSection.swift
[413/433] Compiling XCParseCore ActivityLogMajorSection.swift
[414/433] Compiling XCParseCore ActionTestPlanRunSummary.swift
[415/433] Compiling XCParseCore ActionTestRepetitionPolicySummary.swift
[416/433] Compiling XCParseCore ActionTestSummary.swift
[417/433] Compiling XCParseCore ActionTestSummaryGroup.swift
[418/433] Compiling XCParseCore ActionTestSummaryIdentifiableObject.swift
[419/433] Compiling XCParseCore ActionTestableSummary.swift
[420/433] Compiling XCParseCore ActionsInvocationMetadata.swift
[421/433] Compiling XCParseCore ActionsInvocationRecord.swift
[422/433] Compiling XCParseCore SourceCodeSymbolInfo.swift
[423/433] Compiling XCParseCore TestAssociatedError.swift
[424/433] Compiling XCParseCore TestFailureIssueSummary.swift
[425/433] Compiling XCParseCore TypeDefinition.swift
[426/433] Compiling XCParseCore Version+XCPTooling.swift
[427/433] Compiling XCParseCore XCPResultDecoding.swift
[428/433] Compiling XCParseCore XCResult.swift
[429/433] Compiling XCParseCore XCResultToolCommand.swift
[431/434] Compiling AppStoreConnect Paths.swift
[432/434] Emitting module AppStoreConnect
[433/434] Compiling AppStoreConnect Entities.swift
[434/434] Compiling AppStoreConnect Client.swift
[436/468] Compiling Swiftlane Download.swift
/host/spi-builder-workspace/Sources/Swiftlane/Actions/File/Download.swift:25:46: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
23 |         Settings.cs.action("Download")
24 |
25 |         let (data, _) = try await URLSession.shared.data(from: url)
   |                                              `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
26 |         try await Settings.fs.save(data: data, toFile: toFile)
27 |     }
/host/spi-builder-workspace/Sources/Swiftlane/Actions/Standard/PrintWorkingDirectory.swift:19:17: warning: 'launchPath' is deprecated: renamed to 'executableURL'
17 |
18 |         let process = Process()
19 |         process.launchPath = "/bin/pwd"
   |                 |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
   |                 `- note: use 'executableURL' instead
20 |
21 |         try Settings.cli.run(process: process)
/host/spi-builder-workspace/Sources/Swiftlane/Actions/Standard/RunScript.swift:20:17: warning: 'launchPath' is deprecated: renamed to 'executableURL'
18 |     func run() async throws -> String {
19 |         let process = Process()
20 |         process.launchPath = "/bin/bash"
   |                 |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
   |                 `- note: use 'executableURL' instead
21 |         process.arguments = [script]
22 |         process.currentDirectoryURL = workflow?.directory
[437/468] Compiling Swiftlane MoveFile.swift
/host/spi-builder-workspace/Sources/Swiftlane/Actions/File/Download.swift:25:46: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
23 |         Settings.cs.action("Download")
24 |
25 |         let (data, _) = try await URLSession.shared.data(from: url)
   |                                              `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
26 |         try await Settings.fs.save(data: data, toFile: toFile)
27 |     }
/host/spi-builder-workspace/Sources/Swiftlane/Actions/Standard/PrintWorkingDirectory.swift:19:17: warning: 'launchPath' is deprecated: renamed to 'executableURL'
17 |
18 |         let process = Process()
19 |         process.launchPath = "/bin/pwd"
   |                 |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
   |                 `- note: use 'executableURL' instead
20 |
21 |         try Settings.cli.run(process: process)
/host/spi-builder-workspace/Sources/Swiftlane/Actions/Standard/RunScript.swift:20:17: warning: 'launchPath' is deprecated: renamed to 'executableURL'
18 |     func run() async throws -> String {
19 |         let process = Process()
20 |         process.launchPath = "/bin/bash"
   |                 |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
   |                 `- note: use 'executableURL' instead
21 |         process.arguments = [script]
22 |         process.currentDirectoryURL = workflow?.directory
[438/468] Compiling Swiftlane AppCenter.swift
/host/spi-builder-workspace/Sources/Swiftlane/Actions/File/Download.swift:25:46: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
23 |         Settings.cs.action("Download")
24 |
25 |         let (data, _) = try await URLSession.shared.data(from: url)
   |                                              `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
26 |         try await Settings.fs.save(data: data, toFile: toFile)
27 |     }
/host/spi-builder-workspace/Sources/Swiftlane/Actions/Standard/PrintWorkingDirectory.swift:19:17: warning: 'launchPath' is deprecated: renamed to 'executableURL'
17 |
18 |         let process = Process()
19 |         process.launchPath = "/bin/pwd"
   |                 |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
   |                 `- note: use 'executableURL' instead
20 |
21 |         try Settings.cli.run(process: process)
/host/spi-builder-workspace/Sources/Swiftlane/Actions/Standard/RunScript.swift:20:17: warning: 'launchPath' is deprecated: renamed to 'executableURL'
18 |     func run() async throws -> String {
19 |         let process = Process()
20 |         process.launchPath = "/bin/bash"
   |                 |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
   |                 `- note: use 'executableURL' instead
21 |         process.arguments = [script]
22 |         process.currentDirectoryURL = workflow?.directory
[439/468] Compiling Swiftlane PrintWorkingDirectory.swift
/host/spi-builder-workspace/Sources/Swiftlane/Actions/File/Download.swift:25:46: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
23 |         Settings.cs.action("Download")
24 |
25 |         let (data, _) = try await URLSession.shared.data(from: url)
   |                                              `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
26 |         try await Settings.fs.save(data: data, toFile: toFile)
27 |     }
/host/spi-builder-workspace/Sources/Swiftlane/Actions/Standard/PrintWorkingDirectory.swift:19:17: warning: 'launchPath' is deprecated: renamed to 'executableURL'
17 |
18 |         let process = Process()
19 |         process.launchPath = "/bin/pwd"
   |                 |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
   |                 `- note: use 'executableURL' instead
20 |
21 |         try Settings.cli.run(process: process)
/host/spi-builder-workspace/Sources/Swiftlane/Actions/Standard/RunScript.swift:20:17: warning: 'launchPath' is deprecated: renamed to 'executableURL'
18 |     func run() async throws -> String {
19 |         let process = Process()
20 |         process.launchPath = "/bin/bash"
   |                 |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
   |                 `- note: use 'executableURL' instead
21 |         process.arguments = [script]
22 |         process.currentDirectoryURL = workflow?.directory
[440/468] Compiling Swiftlane RunScript.swift
/host/spi-builder-workspace/Sources/Swiftlane/Actions/File/Download.swift:25:46: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
23 |         Settings.cs.action("Download")
24 |
25 |         let (data, _) = try await URLSession.shared.data(from: url)
   |                                              `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
26 |         try await Settings.fs.save(data: data, toFile: toFile)
27 |     }
/host/spi-builder-workspace/Sources/Swiftlane/Actions/Standard/PrintWorkingDirectory.swift:19:17: warning: 'launchPath' is deprecated: renamed to 'executableURL'
17 |
18 |         let process = Process()
19 |         process.launchPath = "/bin/pwd"
   |                 |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
   |                 `- note: use 'executableURL' instead
20 |
21 |         try Settings.cli.run(process: process)
/host/spi-builder-workspace/Sources/Swiftlane/Actions/Standard/RunScript.swift:20:17: warning: 'launchPath' is deprecated: renamed to 'executableURL'
18 |     func run() async throws -> String {
19 |         let process = Process()
20 |         process.launchPath = "/bin/bash"
   |                 |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
   |                 `- note: use 'executableURL' instead
21 |         process.arguments = [script]
22 |         process.currentDirectoryURL = workflow?.directory
[441/468] Compiling Swiftlane Slack.swift
/host/spi-builder-workspace/Sources/Swiftlane/Actions/Standard/Slack.swift:78:23: error: cannot find 'URLRequest' in scope
76 |         }
77 |
78 |         var request = URLRequest(url: requestUrl)
   |                       `- error: cannot find 'URLRequest' in scope
79 |         request.allHTTPHeaderFields = [
80 |             "Accept": "application/json"
/host/spi-builder-workspace/Sources/Swiftlane/Actions/Standard/Slack.swift:83:46: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
81 |         ]
82 |
83 |         let (data, _) = try await URLSession.shared.data(for: request)
   |                                              `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
84 |         _ = try JSONDecoder().decode(SendMessageResponse.self, from: data)
85 |     }
[442/468] Compiling Swiftlane ASC.swift
/host/spi-builder-workspace/Sources/Swiftlane/Actions/Standard/Slack.swift:78:23: error: cannot find 'URLRequest' in scope
76 |         }
77 |
78 |         var request = URLRequest(url: requestUrl)
   |                       `- error: cannot find 'URLRequest' in scope
79 |         request.allHTTPHeaderFields = [
80 |             "Accept": "application/json"
/host/spi-builder-workspace/Sources/Swiftlane/Actions/Standard/Slack.swift:83:46: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
81 |         ]
82 |
83 |         let (data, _) = try await URLSession.shared.data(for: request)
   |                                              `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
84 |         _ = try JSONDecoder().decode(SendMessageResponse.self, from: data)
85 |     }
[443/468] Compiling Swiftlane Archive.swift
/host/spi-builder-workspace/Sources/Swiftlane/Actions/Standard/Slack.swift:78:23: error: cannot find 'URLRequest' in scope
76 |         }
77 |
78 |         var request = URLRequest(url: requestUrl)
   |                       `- error: cannot find 'URLRequest' in scope
79 |         request.allHTTPHeaderFields = [
80 |             "Accept": "application/json"
/host/spi-builder-workspace/Sources/Swiftlane/Actions/Standard/Slack.swift:83:46: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
81 |         ]
82 |
83 |         let (data, _) = try await URLSession.shared.data(for: request)
   |                                              `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
84 |         _ = try JSONDecoder().decode(SendMessageResponse.self, from: data)
85 |     }
[444/468] Compiling Swiftlane Build.swift
/host/spi-builder-workspace/Sources/Swiftlane/Actions/Standard/Slack.swift:78:23: error: cannot find 'URLRequest' in scope
76 |         }
77 |
78 |         var request = URLRequest(url: requestUrl)
   |                       `- error: cannot find 'URLRequest' in scope
79 |         request.allHTTPHeaderFields = [
80 |             "Accept": "application/json"
/host/spi-builder-workspace/Sources/Swiftlane/Actions/Standard/Slack.swift:83:46: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
81 |         ]
82 |
83 |         let (data, _) = try await URLSession.shared.data(for: request)
   |                                              `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
84 |         _ = try JSONDecoder().decode(SendMessageResponse.self, from: data)
85 |     }
[445/468] Compiling Swiftlane ExportArchive.swift
/host/spi-builder-workspace/Sources/Swiftlane/Actions/Standard/Slack.swift:78:23: error: cannot find 'URLRequest' in scope
76 |         }
77 |
78 |         var request = URLRequest(url: requestUrl)
   |                       `- error: cannot find 'URLRequest' in scope
79 |         request.allHTTPHeaderFields = [
80 |             "Accept": "application/json"
/host/spi-builder-workspace/Sources/Swiftlane/Actions/Standard/Slack.swift:83:46: error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
81 |         ]
82 |
83 |         let (data, _) = try await URLSession.shared.data(for: request)
   |                                              `- error: type 'URLSession' (aka 'AnyObject') has no member 'shared'
84 |         _ = try JSONDecoder().decode(SendMessageResponse.self, from: data)
85 |     }
[446/472] Emitting module Swiftlane
[447/472] Compiling Swiftlane FileSystem.swift
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/FileSystem.swift:31:17: warning: 'launchPath' is deprecated: renamed to 'executableURL'
29 |     public func currentDirectory() async throws -> URL {
30 |         let process = Process()
31 |         process.launchPath = "/bin/pwd"
   |                 |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
   |                 `- note: use 'executableURL' instead
32 |
33 |         let string = try Settings.cli.run(process: process)
[448/472] Compiling Swiftlane PlistBuilder.swift
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/FileSystem.swift:31:17: warning: 'launchPath' is deprecated: renamed to 'executableURL'
29 |     public func currentDirectory() async throws -> URL {
30 |         let process = Process()
31 |         process.launchPath = "/bin/pwd"
   |                 |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
   |                 `- note: use 'executableURL' instead
32 |
33 |         let string = try Settings.cli.run(process: process)
[449/472] Compiling Swiftlane Settings.swift
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/FileSystem.swift:31:17: warning: 'launchPath' is deprecated: renamed to 'executableURL'
29 |     public func currentDirectory() async throws -> URL {
30 |         let process = Process()
31 |         process.launchPath = "/bin/pwd"
   |                 |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
   |                 `- note: use 'executableURL' instead
32 |
33 |         let string = try Settings.cli.run(process: process)
[450/472] Compiling Swiftlane SwiftlaneError.swift
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/FileSystem.swift:31:17: warning: 'launchPath' is deprecated: renamed to 'executableURL'
29 |     public func currentDirectory() async throws -> URL {
30 |         let process = Process()
31 |         process.launchPath = "/bin/pwd"
   |                 |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
   |                 `- note: use 'executableURL' instead
32 |
33 |         let string = try Settings.cli.run(process: process)
[451/472] Compiling Swiftlane GetBuildSettings.swift
[452/472] Compiling Swiftlane Keychain.swift
[453/472] Compiling Swiftlane Project.swift
[454/472] Compiling Swiftlane Screenshot.swift
[455/472] Compiling Swiftlane Test.swift
[456/472] Compiling Swiftlane Workflow.swift
[457/472] Compiling Swiftlane Bool+extensions.swift
[458/472] Compiling Swiftlane Data+extensions.swift
[459/472] Compiling Swiftlane String+extensions.swift
[460/472] Compiling Swiftlane UploadASC.swift
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/CommandLine.swift:35:17: warning: 'launchPath' is deprecated: renamed to 'executableURL'
 33 |
 34 |         let process = Process()
 35 |         process.launchPath = "/bin/bash"
    |                 |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
    |                 `- note: use 'executableURL' instead
 36 |         process.arguments = ["-c", command]
 37 |         process.currentDirectoryURL = currentDirectoryURL
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/CommandLine.swift:79:17: warning: 'launch()' is deprecated: renamed to 'run'
 77 |         #endif
 78 |
 79 |         process.launch()
    |                 |- warning: 'launch()' is deprecated: renamed to 'run'
    |                 `- note: use 'run' instead
 80 |
 81 |         #if os(Linux)
[461/472] Compiling Swiftlane Xcode.swift
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/CommandLine.swift:35:17: warning: 'launchPath' is deprecated: renamed to 'executableURL'
 33 |
 34 |         let process = Process()
 35 |         process.launchPath = "/bin/bash"
    |                 |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
    |                 `- note: use 'executableURL' instead
 36 |         process.arguments = ["-c", command]
 37 |         process.currentDirectoryURL = currentDirectoryURL
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/CommandLine.swift:79:17: warning: 'launch()' is deprecated: renamed to 'run'
 77 |         #endif
 78 |
 79 |         process.launch()
    |                 |- warning: 'launch()' is deprecated: renamed to 'run'
    |                 `- note: use 'run' instead
 80 |
 81 |         #if os(Linux)
[462/472] Compiling Swiftlane Notarize.swift
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/CommandLine.swift:35:17: warning: 'launchPath' is deprecated: renamed to 'executableURL'
 33 |
 34 |         let process = Process()
 35 |         process.launchPath = "/bin/bash"
    |                 |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
    |                 `- note: use 'executableURL' instead
 36 |         process.arguments = ["-c", command]
 37 |         process.currentDirectoryURL = currentDirectoryURL
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/CommandLine.swift:79:17: warning: 'launch()' is deprecated: renamed to 'run'
 77 |         #endif
 78 |
 79 |         process.launch()
    |                 |- warning: 'launch()' is deprecated: renamed to 'run'
    |                 `- note: use 'run' instead
 80 |
 81 |         #if os(Linux)
[463/472] Compiling Swiftlane Args.swift
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/CommandLine.swift:35:17: warning: 'launchPath' is deprecated: renamed to 'executableURL'
 33 |
 34 |         let process = Process()
 35 |         process.launchPath = "/bin/bash"
    |                 |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
    |                 `- note: use 'executableURL' instead
 36 |         process.arguments = ["-c", command]
 37 |         process.currentDirectoryURL = currentDirectoryURL
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/CommandLine.swift:79:17: warning: 'launch()' is deprecated: renamed to 'run'
 77 |         #endif
 78 |
 79 |         process.launch()
    |                 |- warning: 'launch()' is deprecated: renamed to 'run'
    |                 `- note: use 'run' instead
 80 |
 81 |         #if os(Linux)
[464/472] Compiling Swiftlane CommandLine.swift
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/CommandLine.swift:35:17: warning: 'launchPath' is deprecated: renamed to 'executableURL'
 33 |
 34 |         let process = Process()
 35 |         process.launchPath = "/bin/bash"
    |                 |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
    |                 `- note: use 'executableURL' instead
 36 |         process.arguments = ["-c", command]
 37 |         process.currentDirectoryURL = currentDirectoryURL
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/CommandLine.swift:79:17: warning: 'launch()' is deprecated: renamed to 'run'
 77 |         #endif
 78 |
 79 |         process.launch()
    |                 |- warning: 'launch()' is deprecated: renamed to 'run'
    |                 `- note: use 'run' instead
 80 |
 81 |         #if os(Linux)
[465/472] Compiling Swiftlane ProcessHandler.swift
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/XcodebuildProcessHandler.swift:23:44: error: missing arguments for parameters 'renderer', 'additionalLines' in call
21 |         guard
22 |             !data.isEmpty,
23 |             let line = XcbeautifyLib.Parser().parse(
   |                                            `- error: missing arguments for parameters 'renderer', 'additionalLines' in call
24 |                 line: data.toString(),
25 |                 additionalLines: { nil }
/host/spi-builder-workspace/.build/checkouts/xcbeautify/Sources/XcbeautifyLib/Parser.swift:102:12: note: 'init(colored:renderer:preserveUnbeautifiedLines:additionalLines:)' declared here
100 |     // MARK: - Init
101 |
102 |     public init(
    |            `- note: 'init(colored:renderer:preserveUnbeautifiedLines:additionalLines:)' declared here
103 |         colored: Bool = true,
104 |         renderer: Renderer,
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/XcodebuildProcessHandler.swift:25:34: error: extra argument 'additionalLines' in call
23 |             let line = XcbeautifyLib.Parser().parse(
24 |                 line: data.toString(),
25 |                 additionalLines: { nil }
   |                                  `- error: extra argument 'additionalLines' in call
26 |             ),
27 |             !line.isEmpty
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/XcodebuildProcessHandler.swift:25:36: error: 'nil' requires a contextual type
23 |             let line = XcbeautifyLib.Parser().parse(
24 |                 line: data.toString(),
25 |                 additionalLines: { nil }
   |                                    `- error: 'nil' requires a contextual type
26 |             ),
27 |             !line.isEmpty
[466/472] Compiling Swiftlane XcodebuildProcessHandler.swift
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/XcodebuildProcessHandler.swift:23:44: error: missing arguments for parameters 'renderer', 'additionalLines' in call
21 |         guard
22 |             !data.isEmpty,
23 |             let line = XcbeautifyLib.Parser().parse(
   |                                            `- error: missing arguments for parameters 'renderer', 'additionalLines' in call
24 |                 line: data.toString(),
25 |                 additionalLines: { nil }
/host/spi-builder-workspace/.build/checkouts/xcbeautify/Sources/XcbeautifyLib/Parser.swift:102:12: note: 'init(colored:renderer:preserveUnbeautifiedLines:additionalLines:)' declared here
100 |     // MARK: - Init
101 |
102 |     public init(
    |            `- note: 'init(colored:renderer:preserveUnbeautifiedLines:additionalLines:)' declared here
103 |         colored: Bool = true,
104 |         renderer: Renderer,
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/XcodebuildProcessHandler.swift:25:34: error: extra argument 'additionalLines' in call
23 |             let line = XcbeautifyLib.Parser().parse(
24 |                 line: data.toString(),
25 |                 additionalLines: { nil }
   |                                  `- error: extra argument 'additionalLines' in call
26 |             ),
27 |             !line.isEmpty
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/XcodebuildProcessHandler.swift:25:36: error: 'nil' requires a contextual type
23 |             let line = XcbeautifyLib.Parser().parse(
24 |                 line: data.toString(),
25 |                 additionalLines: { nil }
   |                                    `- error: 'nil' requires a contextual type
26 |             ),
27 |             !line.isEmpty
[467/472] Compiling Swiftlane Console.swift
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/XcodebuildProcessHandler.swift:23:44: error: missing arguments for parameters 'renderer', 'additionalLines' in call
21 |         guard
22 |             !data.isEmpty,
23 |             let line = XcbeautifyLib.Parser().parse(
   |                                            `- error: missing arguments for parameters 'renderer', 'additionalLines' in call
24 |                 line: data.toString(),
25 |                 additionalLines: { nil }
/host/spi-builder-workspace/.build/checkouts/xcbeautify/Sources/XcbeautifyLib/Parser.swift:102:12: note: 'init(colored:renderer:preserveUnbeautifiedLines:additionalLines:)' declared here
100 |     // MARK: - Init
101 |
102 |     public init(
    |            `- note: 'init(colored:renderer:preserveUnbeautifiedLines:additionalLines:)' declared here
103 |         colored: Bool = true,
104 |         renderer: Renderer,
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/XcodebuildProcessHandler.swift:25:34: error: extra argument 'additionalLines' in call
23 |             let line = XcbeautifyLib.Parser().parse(
24 |                 line: data.toString(),
25 |                 additionalLines: { nil }
   |                                  `- error: extra argument 'additionalLines' in call
26 |             ),
27 |             !line.isEmpty
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/XcodebuildProcessHandler.swift:25:36: error: 'nil' requires a contextual type
23 |             let line = XcbeautifyLib.Parser().parse(
24 |                 line: data.toString(),
25 |                 additionalLines: { nil }
   |                                    `- error: 'nil' requires a contextual type
26 |             ),
27 |             !line.isEmpty
[468/472] Compiling Swiftlane Environment.swift
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/XcodebuildProcessHandler.swift:23:44: error: missing arguments for parameters 'renderer', 'additionalLines' in call
21 |         guard
22 |             !data.isEmpty,
23 |             let line = XcbeautifyLib.Parser().parse(
   |                                            `- error: missing arguments for parameters 'renderer', 'additionalLines' in call
24 |                 line: data.toString(),
25 |                 additionalLines: { nil }
/host/spi-builder-workspace/.build/checkouts/xcbeautify/Sources/XcbeautifyLib/Parser.swift:102:12: note: 'init(colored:renderer:preserveUnbeautifiedLines:additionalLines:)' declared here
100 |     // MARK: - Init
101 |
102 |     public init(
    |            `- note: 'init(colored:renderer:preserveUnbeautifiedLines:additionalLines:)' declared here
103 |         colored: Bool = true,
104 |         renderer: Renderer,
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/XcodebuildProcessHandler.swift:25:34: error: extra argument 'additionalLines' in call
23 |             let line = XcbeautifyLib.Parser().parse(
24 |                 line: data.toString(),
25 |                 additionalLines: { nil }
   |                                  `- error: extra argument 'additionalLines' in call
26 |             ),
27 |             !line.isEmpty
/host/spi-builder-workspace/Sources/Swiftlane/Library/Core/CommandLine/XcodebuildProcessHandler.swift:25:36: error: 'nil' requires a contextual type
23 |             let line = XcbeautifyLib.Parser().parse(
24 |                 line: data.toString(),
25 |                 additionalLines: { nil }
   |                                    `- error: 'nil' requires a contextual type
26 |             ),
27 |             !line.isEmpty
[469/472] Compiling Swiftlane URL+extension.swift
[470/472] Compiling Swiftlane ALTool.swift
[471/472] Compiling Swiftlane Xcodebuild.swift
[472/472] Compiling Swiftlane XCParser.swift
BUILD FAILURE 6.1 linux