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 main (61d9fb), with Swift 6.1 for Linux on 26 Apr 2025 20:22:59 UTC.

Build Command

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

203 |         public static let adHoc = ExportMethod(rawValue: "ad-hoc")
204 |         public static let development = ExportMethod(rawValue: "development")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:203: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: Encodable {
    |                   `- note: consider making struct 'ExportMethod' conform to the 'Sendable' protocol
190 |         public let rawValue: String
191 |
    :
201 |         public static let appStore = ExportMethod(rawValue: "app-store")
202 |         public static let inHouse = ExportMethod(rawValue: "enterprise")
203 |         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
204 |         public static let development = ExportMethod(rawValue: "development")
205 |     }
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:204: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: Encodable {
    |                   `- note: consider making struct 'ExportMethod' conform to the 'Sendable' protocol
190 |         public let rawValue: String
191 |
    :
202 |         public static let inHouse = ExportMethod(rawValue: "enterprise")
203 |         public static let adHoc = ExportMethod(rawValue: "ad-hoc")
204 |         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
205 |     }
206 | }
/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 {
[1237/1272] 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)
/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 |
[1238/1272] 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 |
[1239/1272] 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 |
[1240/1272] 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 |
[1241/1272] 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)
[1242/1272] 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)
[1243/1272] 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)
[1244/1272] 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)
[1245/1272] 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)
[1246/1272] Compiling Swiftlane ProcessHandler.swift
[1247/1272] Compiling Swiftlane XcodebuildProcessHandler.swift
[1248/1272] Compiling Swiftlane Console.swift
[1249/1272] Compiling Swiftlane Environment.swift
[1250/1272] Compiling Swiftlane Workflow.swift
[1251/1272] Compiling Swiftlane Bool+extensions.swift
[1252/1272] Compiling Swiftlane Data+extensions.swift
[1253/1272] Compiling Swiftlane String+extensions.swift
[1254/1272] Compiling Swiftlane GetBuildSettings.swift
[1255/1272] Compiling Swiftlane Keychain.swift
[1256/1272] Compiling Swiftlane Project.swift
[1257/1272] Compiling Swiftlane Screenshot.swift
[1258/1272] Compiling Swiftlane Test.swift
[1259/1272] 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
[1260/1272] 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
[1261/1272] 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
[1262/1272] 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
[1263/1272] 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
[1264/1272] 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?
[1265/1272] 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?
[1266/1272] 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?
[1267/1272] 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?
[1268/1272] 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?
[1269/1272] 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:201: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: Encodable {
    |                   `- note: consider making struct 'ExportMethod' conform to the 'Sendable' protocol
190 |         public let rawValue: String
191 |
    :
199 |         }
200 |
201 |         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
202 |         public static let inHouse = ExportMethod(rawValue: "enterprise")
203 |         public static let adHoc = ExportMethod(rawValue: "ad-hoc")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:202: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: Encodable {
    |                   `- note: consider making struct 'ExportMethod' conform to the 'Sendable' protocol
190 |         public let rawValue: String
191 |
    :
200 |
201 |         public static let appStore = ExportMethod(rawValue: "app-store")
202 |         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
203 |         public static let adHoc = ExportMethod(rawValue: "ad-hoc")
204 |         public static let development = ExportMethod(rawValue: "development")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:203: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: Encodable {
    |                   `- note: consider making struct 'ExportMethod' conform to the 'Sendable' protocol
190 |         public let rawValue: String
191 |
    :
201 |         public static let appStore = ExportMethod(rawValue: "app-store")
202 |         public static let inHouse = ExportMethod(rawValue: "enterprise")
203 |         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
204 |         public static let development = ExportMethod(rawValue: "development")
205 |     }
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:204: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: Encodable {
    |                   `- note: consider making struct 'ExportMethod' conform to the 'Sendable' protocol
190 |         public let rawValue: String
191 |
    :
202 |         public static let inHouse = ExportMethod(rawValue: "enterprise")
203 |         public static let adHoc = ExportMethod(rawValue: "ad-hoc")
204 |         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
205 |     }
206 | }
/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))
[1270/1272] 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:201: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: Encodable {
    |                   `- note: consider making struct 'ExportMethod' conform to the 'Sendable' protocol
190 |         public let rawValue: String
191 |
    :
199 |         }
200 |
201 |         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
202 |         public static let inHouse = ExportMethod(rawValue: "enterprise")
203 |         public static let adHoc = ExportMethod(rawValue: "ad-hoc")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:202: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: Encodable {
    |                   `- note: consider making struct 'ExportMethod' conform to the 'Sendable' protocol
190 |         public let rawValue: String
191 |
    :
200 |
201 |         public static let appStore = ExportMethod(rawValue: "app-store")
202 |         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
203 |         public static let adHoc = ExportMethod(rawValue: "ad-hoc")
204 |         public static let development = ExportMethod(rawValue: "development")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:203: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: Encodable {
    |                   `- note: consider making struct 'ExportMethod' conform to the 'Sendable' protocol
190 |         public let rawValue: String
191 |
    :
201 |         public static let appStore = ExportMethod(rawValue: "app-store")
202 |         public static let inHouse = ExportMethod(rawValue: "enterprise")
203 |         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
204 |         public static let development = ExportMethod(rawValue: "development")
205 |     }
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:204: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: Encodable {
    |                   `- note: consider making struct 'ExportMethod' conform to the 'Sendable' protocol
190 |         public let rawValue: String
191 |
    :
202 |         public static let inHouse = ExportMethod(rawValue: "enterprise")
203 |         public static let adHoc = ExportMethod(rawValue: "ad-hoc")
204 |         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
205 |     }
206 | }
/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))
[1271/1272] 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:201: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: Encodable {
    |                   `- note: consider making struct 'ExportMethod' conform to the 'Sendable' protocol
190 |         public let rawValue: String
191 |
    :
199 |         }
200 |
201 |         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
202 |         public static let inHouse = ExportMethod(rawValue: "enterprise")
203 |         public static let adHoc = ExportMethod(rawValue: "ad-hoc")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:202: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: Encodable {
    |                   `- note: consider making struct 'ExportMethod' conform to the 'Sendable' protocol
190 |         public let rawValue: String
191 |
    :
200 |
201 |         public static let appStore = ExportMethod(rawValue: "app-store")
202 |         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
203 |         public static let adHoc = ExportMethod(rawValue: "ad-hoc")
204 |         public static let development = ExportMethod(rawValue: "development")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:203: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: Encodable {
    |                   `- note: consider making struct 'ExportMethod' conform to the 'Sendable' protocol
190 |         public let rawValue: String
191 |
    :
201 |         public static let appStore = ExportMethod(rawValue: "app-store")
202 |         public static let inHouse = ExportMethod(rawValue: "enterprise")
203 |         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
204 |         public static let development = ExportMethod(rawValue: "development")
205 |     }
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:204: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: Encodable {
    |                   `- note: consider making struct 'ExportMethod' conform to the 'Sendable' protocol
190 |         public let rawValue: String
191 |
    :
202 |         public static let inHouse = ExportMethod(rawValue: "enterprise")
203 |         public static let adHoc = ExportMethod(rawValue: "ad-hoc")
204 |         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
205 |     }
206 | }
/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))
[1272/1272] 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:201: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: Encodable {
    |                   `- note: consider making struct 'ExportMethod' conform to the 'Sendable' protocol
190 |         public let rawValue: String
191 |
    :
199 |         }
200 |
201 |         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
202 |         public static let inHouse = ExportMethod(rawValue: "enterprise")
203 |         public static let adHoc = ExportMethod(rawValue: "ad-hoc")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:202: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: Encodable {
    |                   `- note: consider making struct 'ExportMethod' conform to the 'Sendable' protocol
190 |         public let rawValue: String
191 |
    :
200 |
201 |         public static let appStore = ExportMethod(rawValue: "app-store")
202 |         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
203 |         public static let adHoc = ExportMethod(rawValue: "ad-hoc")
204 |         public static let development = ExportMethod(rawValue: "development")
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:203: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: Encodable {
    |                   `- note: consider making struct 'ExportMethod' conform to the 'Sendable' protocol
190 |         public let rawValue: String
191 |
    :
201 |         public static let appStore = ExportMethod(rawValue: "app-store")
202 |         public static let inHouse = ExportMethod(rawValue: "enterprise")
203 |         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
204 |         public static let development = ExportMethod(rawValue: "development")
205 |     }
/host/spi-builder-workspace/Sources/Swiftlane/Library/Tools/Xcodebuild.swift:204: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: Encodable {
    |                   `- note: consider making struct 'ExportMethod' conform to the 'Sendable' protocol
190 |         public let rawValue: String
191 |
    :
202 |         public static let inHouse = ExportMethod(rawValue: "enterprise")
203 |         public static let adHoc = ExportMethod(rawValue: "ad-hoc")
204 |         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
205 |     }
206 | }
/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-1":/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/94] Emitting module TSCLibc
[4/94] Compiling TSCLibc libc.swift
[5/95] Compiling Colorizer StringBackgroundColorizer.swift
[6/95] Compiling CryptoBoringWrapper RandomBytes.swift
[7/95] Compiling Colorizer StringStyleColorizer.swift
[8/95] Emitting module Colorizer
[9/95] Compiling Colorizer Colorizer.swift
[11/95] Compiling CryptoBoringWrapper CryptoKitErrors_boring.swift
[12/95] Compiling NaiveDate NaiveDateFormatter.swift
[13/95] Compiling Get Request.swift
[14/95] Compiling CryptoBoringWrapper FiniteFieldArithmeticContext.swift
[15/95] Compiling Colorizer StringStyle.swift
[16/95] Compiling Colorizer StringForegroundColorizer.swift
[17/95] Compiling CryptoBoringWrapper BoringSSLAEAD.swift
[18/96] Emitting module CryptoBoringWrapper
[19/96] Compiling CryptoBoringWrapper EllipticCurve.swift
[20/96] Emitting module NaiveDate
[21/96] Compiling NaiveDate NaiveDate.swift
[22/96] Compiling Get Helpers.swift
[24/102] Compiling SystemPackage FilePath.swift
[25/102] Compiling SystemPackage FilePathComponentView.swift
[26/102] Compiling SystemPackage FilePathSyntax.swift
[27/102] Compiling SystemPackage FilePathWindows.swift
[28/102] Compiling SystemPackage FilePermissions.swift
[29/102] Compiling SystemPackage CInterop.swift
[30/102] Compiling SystemPackage Constants.swift
[33/108] Compiling SystemPackage Exports.swift
[34/108] Compiling SystemPackage Mocking.swift
[35/108] Compiling SystemPackage Syscalls.swift
[36/108] Compiling SystemPackage WindowsSyscallAdapters.swift
[37/110] Compiling Get APIClient.swift
[38/110] Emitting module Get
[39/111] Compiling SwiftyXMLParser Error.swift
[44/111] Compiling SystemPackage PlatformString.swift
[45/111] Compiling SystemPackage SystemString.swift
[46/111] Compiling NaiveDate NaiveDateFormatStyle.swift
[47/111] Compiling CryptoBoringWrapper EllipticCurvePoint.swift
[48/111] Compiling SystemPackage FilePathComponents.swift
[49/111] Compiling SystemPackage FilePathParsing.swift
[50/111] Compiling SystemPackage FilePathString.swift
[51/111] Compiling SystemPackage Errno.swift
[52/111] Compiling SystemPackage FileDescriptor.swift
[53/111] Compiling SystemPackage FileHelpers.swift
[54/111] Compiling SystemPackage FileOperations.swift
[55/112] Compiling CryptoBoringWrapper ArbitraryPrecisionInteger.swift
[56/113] Compiling SwiftyXMLParser Element.swift
[58/115] Compiling SwiftyXMLParser XML.swift
[59/115] Emitting module URLQueryEncoder
[60/115] Compiling URLQueryEncoder URLQueryEncoder.swift
[64/116] Emitting module XMLCoder
[66/116] Emitting module SystemPackage
[67/116] Compiling SwiftyXMLParser Parser.swift
[72/116] Compiling SystemPackage Util.swift
[73/116] Compiling SystemPackage UtilConsumers.swift
[74/116] Compiling SwiftyXMLParser Accessor.swift
[75/116] Emitting module SwiftyXMLParser
[76/117] Compiling XMLCoder XMLKeyedDecodingContainer.swift
[77/117] Compiling XMLCoder XMLUnkeyedDecodingContainer.swift
[78/117] Compiling XMLCoder DynamicNodeEncoding.swift
[79/117] Compiling XMLCoder EncodingErrorExtension.swift
[80/117] Compiling XMLCoder SingleValueEncodingContainer.swift
[81/117] Compiling XMLCoder XMLChoiceEncodingContainer.swift
[83/128] Compiling Crypto ASN1.swift
[84/128] Compiling Crypto ASN1Any.swift
[85/128] Compiling Crypto ASN1BitString.swift
[86/129] Compiling Crypto ChaChaPoly.swift
[87/129] Compiling Crypto Cipher.swift
[88/129] Compiling Crypto Nonces.swift
[89/135] Compiling Crypto AES-GCM.swift
[90/135] Compiling Crypto AES-GCM_boring.swift
[91/135] Compiling Crypto ChaChaPoly_boring.swift
[93/189] Compiling Crypto SubjectPublicKeyInfo.swift
[94/189] Compiling Crypto CryptoKitErrors.swift
[95/189] Compiling Crypto Digest_boring.swift
[96/189] Compiling Crypto Digest.swift
[97/189] Compiling Crypto Digests.swift
[98/189] Compiling Crypto HashFunctions.swift
[99/189] Compiling Crypto HPKE-KEM-Curve25519.swift
[100/189] Compiling Crypto HPKE-NIST-EC-KEMs.swift
[101/189] Compiling Crypto HPKE-KEM.swift
[102/189] Compiling Crypto HPKE-Errors.swift
[103/189] Compiling Crypto PKCS8PrivateKey.swift
[104/189] Compiling Crypto SEC1PrivateKey.swift
[105/189] Compiling Crypto HPKE-Ciphersuite.swift
[106/189] Compiling Crypto HPKE-KDF.swift
[107/189] Compiling Crypto HPKE-KexKeyDerivation.swift
[108/189] Compiling Crypto HPKE-LabeledExtract.swift
[109/189] Compiling Crypto HPKE-Utils.swift
[110/189] Compiling Crypto DHKEM.swift
[111/189] Emitting module Files
[112/189] Compiling Files Files.swift
[114/230] Compiling Crypto Insecure.swift
[115/230] Compiling Crypto Insecure_HashFunctions.swift
[116/230] Compiling Crypto KEM.swift
[117/230] Compiling Crypto ECDH_boring.swift
[118/230] Compiling Crypto DH.swift
[119/230] Compiling Crypto ECDH.swift
[121/245] Emitting module TSCBasic
[122/250] Compiling TSCBasic JSONMapper.swift
[123/250] Compiling TSCBasic KeyedPair.swift
[124/250] Compiling TSCBasic LazyCache.swift
[125/250] Compiling TSCBasic Lock.swift
[126/250] Compiling TSCBasic OSLog.swift
[127/250] Compiling TSCBasic ObjectIdentifierProtocol.swift
[128/250] Compiling TSCBasic OrderedDictionary.swift
[129/250] Compiling TSCBasic OrderedSet.swift
[130/250] Compiling TSCBasic Path.swift
[131/250] Compiling TSCBasic Result.swift
[132/250] Compiling TSCBasic Thread.swift
[133/250] Compiling TSCBasic Tuple.swift
[134/250] Compiling TSCBasic WritableByteStream.swift
[135/250] Compiling TSCBasic misc.swift
[142/259] Compiling XcbeautifyLib String+Substring.swift
[143/260] Compiling TSCBasic SortedArray.swift
[144/260] Compiling TSCBasic StringConversions.swift
[145/260] Compiling TSCBasic SynchronizedQueue.swift
[146/260] Compiling TSCBasic TemporaryFile.swift
[147/260] Compiling TSCBasic PathShims.swift
[148/260] Compiling TSCBasic Process.swift
[149/260] Compiling TSCBasic ProcessEnv.swift
[150/260] Compiling TSCBasic ProcessSet.swift
[151/260] Compiling TSCBasic RegEx.swift
[152/260] Compiling TSCBasic TerminalController.swift
[158/260] Compiling Crypto SymmetricKeys.swift
[159/260] Compiling Crypto HMAC.swift
[160/260] Compiling Crypto MACFunctions.swift
[161/260] Compiling Crypto MessageAuthenticationCode.swift
[162/260] Compiling Crypto AES.swift
[163/260] Compiling Crypto ECDSASignature_boring.swift
[164/260] Compiling Crypto ECDSA_boring.swift
[165/260] Compiling Crypto EdDSA_boring.swift
[166/260] Compiling Crypto ECDSA.swift
[167/260] Compiling Crypto Ed25519.swift
[168/260] Compiling Crypto HKDF.swift
[169/260] Compiling Crypto AESWrap.swift
[170/260] Compiling Crypto AESWrap_boring.swift
[171/260] Compiling Crypto Ed25519_boring.swift
[172/260] Compiling Crypto NISTCurvesKeys_boring.swift
[173/260] Compiling Crypto X25519Keys_boring.swift
[174/260] Compiling Crypto Curve25519.swift
[175/260] Compiling Crypto Ed25519Keys.swift
[176/260] Compiling Crypto NISTCurvesKeys.swift
[177/260] Compiling Crypto X25519Keys.swift
[178/260] Compiling XcbeautifyLib String+CapturedGroups.swift
[179/260] Compiling XcbeautifyLib String+Colored.swift
[180/260] Compiling XcbeautifyLib TestSummary.swift
[181/260] Compiling XcbeautifyLib Array+Safe.swift
[182/260] Compiling XcbeautifyLib CaptureGroups.swift
[183/260] Compiling XcbeautifyLib Constants.swift
[184/260] Compiling XcbeautifyLib JunitReporter.swift
[185/260] Compiling XcbeautifyLib OutputHandler.swift
[186/260] Compiling XcbeautifyLib Parser.swift
[193/260] Compiling XcbeautifyLib OutputRendering.swift
[194/260] Compiling XcbeautifyLib TerminalRenderer.swift
[195/260] Compiling XcbeautifyLib Regex.swift
[196/260] Compiling XcbeautifyLib GitHubActionsRenderer.swift
[197/260] Emitting module Crypto
[202/260] Compiling TSCBasic DictionaryExtensions.swift
[203/260] Compiling TSCBasic DictionaryLiteralExtensions.swift
[204/260] Compiling TSCBasic EditDistance.swift
[205/260] Compiling TSCBasic FileInfo.swift
[206/260] Compiling TSCBasic FileSystem.swift
[207/260] Compiling TSCBasic GraphAlgorithms.swift
[208/260] Compiling TSCBasic HashAlgorithms.swift
[209/260] Compiling TSCBasic JSON.swift
[226/260] Emitting module XcbeautifyLib
[248/261] Compiling Crypto Signature.swift
[249/261] Compiling Crypto CryptoKitErrors_boring.swift
[250/261] Compiling Crypto RNG_boring.swift
[251/261] Compiling Crypto SafeCompare_boring.swift
[252/261] Compiling Crypto Zeroization_boring.swift
[253/261] Compiling Crypto PrettyBytes.swift
[254/261] Compiling Crypto SafeCompare.swift
[255/261] Compiling Crypto SecureBytes.swift
[256/261] Compiling Crypto Zeroization.swift
[264/346] Compiling TSCUtility BitstreamWriter.swift
[265/346] Compiling TSCUtility BuildFlags.swift
[266/346] Compiling TSCUtility CollectionExtensions.swift
[267/346] Compiling TSCUtility Hex.swift
[268/346] Compiling TSCUtility IndexStore.swift
[269/346] Compiling TSCUtility InterruptHandler.swift
[270/346] Compiling TSCUtility JSONMessageStreamingParser.swift
[271/346] Compiling TSCUtility ArgumentParser.swift
[272/346] Compiling TSCUtility ArgumentParserShellCompletion.swift
[273/346] Compiling TSCUtility Array+Extensions.swift
[274/346] Compiling TSCUtility Bits.swift
[275/346] Compiling TSCUtility PolymorphicCodable.swift
[276/346] Compiling TSCUtility ProgressAnimation.swift
[277/346] Compiling TSCUtility SQLite.swift
[278/352] Compiling JWTKit JWTSigner.swift
[279/352] Compiling JWTKit JWTSigners.swift
[280/352] Compiling JWTKit JWTSigner+UnsecuredNone.swift
[281/352] Compiling JWTKit UnsecuredNoneSigner.swift
[282/352] Compiling JWTKit JWTSigner+RSA.swift
[283/352] Compiling JWTKit RSAError.swift
[284/352] Compiling TSCUtility URL.swift
[285/352] Compiling JWTKit JWTError.swift
[286/352] Compiling JWTKit JWTHeader.swift
[287/352] Compiling JWTKit JWTParser.swift
[288/352] Compiling JWTKit JWTPayload.swift
[289/352] Compiling JWTKit JWTSerializer.swift
[290/352] Compiling TSCUtility SerializedDiagnostics.swift
[291/352] Compiling TSCUtility SimplePersistence.swift
[292/352] Compiling TSCUtility StringExtensions.swift
[293/352] Compiling TSCUtility StringMangling.swift
[294/352] Compiling TSCUtility Tracing.swift
[295/352] Compiling TSCUtility Triple.swift
[296/352] Compiling TSCUtility OSLog.swift
[297/352] Compiling TSCUtility OrderedZip.swift
[298/352] Compiling TSCUtility PersistenceCache.swift
[299/352] Compiling TSCUtility PkgConfig.swift
[300/352] Compiling TSCUtility Platform.swift
[301/352] Compiling TSCUtility Bitstream.swift
[302/352] Compiling TSCUtility BitstreamReader.swift
[303/352] Compiling TSCUtility Netrc.swift
[304/352] Compiling TSCUtility Context.swift
[305/352] Compiling TSCUtility Diagnostics.swift
[306/352] Compiling TSCUtility FSWatch.swift
[307/352] Compiling TSCUtility FloatingPointExtensions.swift
[308/352] Compiling TSCUtility Git.swift
[309/352] Compiling TSCUtility Archiver.swift
[310/352] Emitting module JWTKit
[316/357] Compiling JWTKit OpenSSLSigner.swift
[317/357] Compiling JWTKit Utilities.swift
[318/357] Compiling JWTKit AppleIdentityToken.swift
[319/357] Compiling JWTKit GoogleIdentityToken.swift
[320/357] Compiling JWTKit MicrosoftIdentitiyToken.swift
[321/357] Compiling JWTKit X5CVerifier.swift
[333/358] Compiling TSCUtility Verbosity.swift
[334/358] Compiling TSCUtility Version.swift
[335/358] Compiling TSCUtility Versioning.swift
[336/358] Compiling TSCUtility dlopen.swift
[337/358] Compiling TSCUtility misc.swift
[343/358] Emitting module TSCUtility
[360/365] Compiling AppStoreConnect JWT.swift
[361/365] Compiling AppStoreConnect DateDecodingStrategy+extensions.swift
[362/422] Compiling XCParseCore ActionTestAttachment.swift
[363/422] Compiling XCParseCore ActionTestConfiguration.swift
[364/422] Compiling XCParseCore ActionTestExpectedFailure.swift
[365/422] Compiling XCParseCore ActionTestFailureSummary.swift
[366/422] Compiling XCParseCore ActionTestMetadata.swift
[367/422] Compiling XCParseCore ActionTestNoticeSummary.swift
[368/422] Compiling XCParseCore ActionTestPerformanceMetricSummary.swift
[369/422] Compiling XCParseCore ActionTestPlanRunSummaries.swift
[370/430] Compiling XCParseCore ConsoleLogItem.swift
[371/430] Compiling XCParseCore ConsoleLogSection.swift
[372/430] Compiling XCParseCore DocumentLocation.swift
[373/430] Compiling XCParseCore EntityIdentifier.swift
[374/430] Compiling XCParseCore String+ASCII.swift
[375/430] Compiling XCParseCore URL+Directory.swift
[376/430] Compiling XCParseCore IssueSummary.swift
[377/430] Compiling XCParseCore ObjectID.swift
[378/430] Compiling XCParseCore ActivityLogMessage.swift
[379/430] Compiling XCParseCore ActivityLogMessageAnnotation.swift
[380/430] Compiling XCParseCore ActivityLogSection.swift
[381/430] Compiling XCParseCore ActivityLogTargetBuildSection.swift
[382/430] Compiling XCParseCore ActivityLogUnitTestSection.swift
[383/430] Compiling XCParseCore ArchiveInfo.swift
[384/430] Compiling XCParseCore CodeCoverageInfo.swift
[385/430] Compiling XCParseCore Console.swift
[386/430] Compiling XCParseCore Reference.swift
[387/430] Compiling XCParseCore ResultIssueSummaries.swift
[388/430] Compiling XCParseCore ResultMetrics.swift
[389/430] Compiling XCParseCore SortedKeyValueArray.swift
[390/430] Compiling XCParseCore SortedKeyValueArrayPair.swift
[391/430] Compiling XCParseCore SourceCodeContext.swift
[392/430] Compiling XCParseCore SourceCodeFrame.swift
[393/430] Compiling XCParseCore SourceCodeLocation.swift
[394/430] Emitting module XCParseCore
[395/430] Compiling XCParseCore ActionAbstractTestSummary.swift
[396/430] Compiling XCParseCore ActionDeviceRecord.swift
[397/430] Compiling XCParseCore ActionPlatformRecord.swift
[398/430] Compiling XCParseCore ActionRecord.swift
[399/430] Compiling XCParseCore ActionResult.swift
[400/430] Compiling XCParseCore ActionRunDestinationRecord.swift
[401/430] Compiling XCParseCore ActionSDKRecord.swift
[402/430] Compiling XCParseCore ActionTestActivitySummary.swift
[403/430] Compiling XCParseCore ActivityLogAnalyzerControlFlowStep.swift
[404/430] Compiling XCParseCore ActivityLogAnalyzerControlFlowStepEdge.swift
[405/430] Compiling XCParseCore ActivityLogAnalyzerEventStep.swift
[406/430] Compiling XCParseCore ActivityLogAnalyzerResultMessage.swift
[407/430] Compiling XCParseCore ActivityLogAnalyzerStep.swift
[408/430] Compiling XCParseCore ActivityLogAnalyzerWarningMessage.swift
[409/430] Compiling XCParseCore ActivityLogCommandInvocationSection.swift
[410/430] Compiling XCParseCore ActivityLogMajorSection.swift
[411/430] Compiling XCParseCore ActionTestPlanRunSummary.swift
[412/430] Compiling XCParseCore ActionTestRepetitionPolicySummary.swift
[413/430] Compiling XCParseCore ActionTestSummary.swift
[414/430] Compiling XCParseCore ActionTestSummaryGroup.swift
[415/430] Compiling XCParseCore ActionTestSummaryIdentifiableObject.swift
[416/430] Compiling XCParseCore ActionTestableSummary.swift
[417/430] Compiling XCParseCore ActionsInvocationMetadata.swift
[418/430] Compiling XCParseCore ActionsInvocationRecord.swift
[419/430] Compiling XCParseCore SourceCodeSymbolInfo.swift
[420/430] Compiling XCParseCore TestAssociatedError.swift
[421/430] Compiling XCParseCore TestFailureIssueSummary.swift
[422/430] Compiling XCParseCore TypeDefinition.swift
[423/430] Compiling XCParseCore Version+XCPTooling.swift
[424/430] Compiling XCParseCore XCPResultDecoding.swift
[425/430] Compiling XCParseCore XCResult.swift
[426/430] Compiling XCParseCore XCResultToolCommand.swift
[428/431] Compiling AppStoreConnect Paths.swift
[429/431] Compiling AppStoreConnect Client.swift
[430/431] Emitting module AppStoreConnect
[431/431] Compiling AppStoreConnect Entities.swift
[433/465] 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
[434/465] 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
[435/465] 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
[436/465] 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
[437/465] 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
[438/469] Emitting module Swiftlane
[439/469] Compiling Swiftlane GetBuildSettings.swift
[440/469] Compiling Swiftlane Keychain.swift
[441/469] Compiling Swiftlane Project.swift
[442/469] Compiling Swiftlane Screenshot.swift
[443/469] Compiling Swiftlane Test.swift
[444/469] Compiling Swiftlane Workflow.swift
[445/469] Compiling Swiftlane Bool+extensions.swift
[446/469] Compiling Swiftlane Data+extensions.swift
[447/469] Compiling Swiftlane String+extensions.swift
[448/469] Compiling Swiftlane ProcessHandler.swift
[449/469] Compiling Swiftlane XcodebuildProcessHandler.swift
[450/469] Compiling Swiftlane Console.swift
[451/469] Compiling Swiftlane Environment.swift
[452/469] 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)
[453/469] 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)
[454/469] 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)
[455/469] 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)
[456/469] 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)
[457/469] 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)
[458/469] 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)
[459/469] 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)
[460/469] 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)
[461/469] 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 |     }
[462/469] 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 |     }
[463/469] 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 |     }
[464/469] 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 |     }
[465/469] 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 |     }
[466/469] Compiling Swiftlane URL+extension.swift
[467/469] Compiling Swiftlane ALTool.swift
[468/469] Compiling Swiftlane Xcodebuild.swift
[469/469] Compiling Swiftlane XCParser.swift
BUILD FAILURE 6.1 linux