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

Successful build of SwiftXcodeProj, reference 8.11.0 (182a1f), with Swift 6.1 for Linux on 30 Apr 2025 02:23:01 UTC.

Swift 6 data race errors: 28

Build Command

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

Build Log

/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/CommentedString.swift:32:24: warning: static property 'specialCheckCharacters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 |     /// Set of characters that are invalid.
32 |     private static var specialCheckCharacters = CharacterSet(charactersIn: "_/")
   |                        |- warning: static property 'specialCheckCharacters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'specialCheckCharacters' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'specialCheckCharacters' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// Returns a valid string for Xcode projects.
[47/112] Compiling SwiftXcodeProj XCScheme+TestPlanReference.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme.swift:6:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSchemeError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  4 |
  5 | public enum XCSchemeError: Error, CustomStringConvertible {
  6 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSchemeError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  7 |     case missing(property: String)
  8 |
/host/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import AEXML
  2 | import Foundation
  3 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  4 |
  5 | public enum XCSchemeError: Error, CustomStringConvertible {
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCSchemeManagement.swift:6:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSchemeManagementError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  4 | public enum XCSchemeManagementError: Error, Equatable, LocalizedError, CustomStringConvertible {
  5 |     /// Thrown when the user tries to initialize a XCSchemeManagement instace passing a path to a file that doesn't exist.
  6 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSchemeManagementError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  7 |
  8 |     public var description: String {
/host/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCSchemeManagement.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | public enum XCSchemeManagementError: Error, Equatable, LocalizedError, CustomStringConvertible {
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/CommentedString.swift:22:24: warning: static property 'invalidCharacters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Set of characters that are invalid.
22 |     private static var invalidCharacters: CharacterSet = {
   |                        |- warning: static property 'invalidCharacters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'invalidCharacters' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'invalidCharacters' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |         var invalidSet = CharacterSet(charactersIn: "_$")
24 |         invalidSet.insert(charactersIn: UnicodeScalar(".") ... UnicodeScalar("9"))
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/CommentedString.swift:32:24: warning: static property 'specialCheckCharacters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 |     /// Set of characters that are invalid.
32 |     private static var specialCheckCharacters = CharacterSet(charactersIn: "_/")
   |                        |- warning: static property 'specialCheckCharacters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'specialCheckCharacters' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'specialCheckCharacters' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// Returns a valid string for Xcode projects.
[48/112] Compiling SwiftXcodeProj XCScheme+TestableReference.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme.swift:6:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSchemeError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  4 |
  5 | public enum XCSchemeError: Error, CustomStringConvertible {
  6 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSchemeError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  7 |     case missing(property: String)
  8 |
/host/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import AEXML
  2 | import Foundation
  3 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  4 |
  5 | public enum XCSchemeError: Error, CustomStringConvertible {
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCSchemeManagement.swift:6:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSchemeManagementError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  4 | public enum XCSchemeManagementError: Error, Equatable, LocalizedError, CustomStringConvertible {
  5 |     /// Thrown when the user tries to initialize a XCSchemeManagement instace passing a path to a file that doesn't exist.
  6 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSchemeManagementError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  7 |
  8 |     public var description: String {
/host/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCSchemeManagement.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | public enum XCSchemeManagementError: Error, Equatable, LocalizedError, CustomStringConvertible {
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/CommentedString.swift:22:24: warning: static property 'invalidCharacters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Set of characters that are invalid.
22 |     private static var invalidCharacters: CharacterSet = {
   |                        |- warning: static property 'invalidCharacters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'invalidCharacters' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'invalidCharacters' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |         var invalidSet = CharacterSet(charactersIn: "_$")
24 |         invalidSet.insert(charactersIn: UnicodeScalar(".") ... UnicodeScalar("9"))
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/CommentedString.swift:32:24: warning: static property 'specialCheckCharacters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 |     /// Set of characters that are invalid.
32 |     private static var specialCheckCharacters = CharacterSet(charactersIn: "_/")
   |                        |- warning: static property 'specialCheckCharacters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'specialCheckCharacters' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'specialCheckCharacters' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// Returns a valid string for Xcode projects.
[49/112] Compiling SwiftXcodeProj XCScheme.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme.swift:6:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSchemeError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  4 |
  5 | public enum XCSchemeError: Error, CustomStringConvertible {
  6 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSchemeError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  7 |     case missing(property: String)
  8 |
/host/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import AEXML
  2 | import Foundation
  3 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  4 |
  5 | public enum XCSchemeError: Error, CustomStringConvertible {
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCSchemeManagement.swift:6:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSchemeManagementError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  4 | public enum XCSchemeManagementError: Error, Equatable, LocalizedError, CustomStringConvertible {
  5 |     /// Thrown when the user tries to initialize a XCSchemeManagement instace passing a path to a file that doesn't exist.
  6 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSchemeManagementError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  7 |
  8 |     public var description: String {
/host/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCSchemeManagement.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | public enum XCSchemeManagementError: Error, Equatable, LocalizedError, CustomStringConvertible {
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/CommentedString.swift:22:24: warning: static property 'invalidCharacters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Set of characters that are invalid.
22 |     private static var invalidCharacters: CharacterSet = {
   |                        |- warning: static property 'invalidCharacters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'invalidCharacters' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'invalidCharacters' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |         var invalidSet = CharacterSet(charactersIn: "_$")
24 |         invalidSet.insert(charactersIn: UnicodeScalar(".") ... UnicodeScalar("9"))
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/CommentedString.swift:32:24: warning: static property 'specialCheckCharacters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 |     /// Set of characters that are invalid.
32 |     private static var specialCheckCharacters = CharacterSet(charactersIn: "_/")
   |                        |- warning: static property 'specialCheckCharacters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'specialCheckCharacters' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'specialCheckCharacters' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// Returns a valid string for Xcode projects.
[50/112] Compiling SwiftXcodeProj XCSchemeManagement.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme.swift:6:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSchemeError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  4 |
  5 | public enum XCSchemeError: Error, CustomStringConvertible {
  6 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSchemeError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  7 |     case missing(property: String)
  8 |
/host/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import AEXML
  2 | import Foundation
  3 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  4 |
  5 | public enum XCSchemeError: Error, CustomStringConvertible {
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCSchemeManagement.swift:6:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSchemeManagementError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  4 | public enum XCSchemeManagementError: Error, Equatable, LocalizedError, CustomStringConvertible {
  5 |     /// Thrown when the user tries to initialize a XCSchemeManagement instace passing a path to a file that doesn't exist.
  6 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSchemeManagementError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  7 |
  8 |     public var description: String {
/host/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCSchemeManagement.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | public enum XCSchemeManagementError: Error, Equatable, LocalizedError, CustomStringConvertible {
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/CommentedString.swift:22:24: warning: static property 'invalidCharacters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Set of characters that are invalid.
22 |     private static var invalidCharacters: CharacterSet = {
   |                        |- warning: static property 'invalidCharacters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'invalidCharacters' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'invalidCharacters' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |         var invalidSet = CharacterSet(charactersIn: "_$")
24 |         invalidSet.insert(charactersIn: UnicodeScalar(".") ... UnicodeScalar("9"))
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/CommentedString.swift:32:24: warning: static property 'specialCheckCharacters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 |     /// Set of characters that are invalid.
32 |     private static var specialCheckCharacters = CharacterSet(charactersIn: "_/")
   |                        |- warning: static property 'specialCheckCharacters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'specialCheckCharacters' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'specialCheckCharacters' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// Returns a valid string for Xcode projects.
[51/112] Compiling SwiftXcodeProj BuildSettingsProvider.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme.swift:6:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSchemeError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  4 |
  5 | public enum XCSchemeError: Error, CustomStringConvertible {
  6 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSchemeError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  7 |     case missing(property: String)
  8 |
/host/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import AEXML
  2 | import Foundation
  3 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  4 |
  5 | public enum XCSchemeError: Error, CustomStringConvertible {
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCSchemeManagement.swift:6:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSchemeManagementError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  4 | public enum XCSchemeManagementError: Error, Equatable, LocalizedError, CustomStringConvertible {
  5 |     /// Thrown when the user tries to initialize a XCSchemeManagement instace passing a path to a file that doesn't exist.
  6 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSchemeManagementError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  7 |
  8 |     public var description: String {
/host/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCSchemeManagement.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | public enum XCSchemeManagementError: Error, Equatable, LocalizedError, CustomStringConvertible {
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/CommentedString.swift:22:24: warning: static property 'invalidCharacters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Set of characters that are invalid.
22 |     private static var invalidCharacters: CharacterSet = {
   |                        |- warning: static property 'invalidCharacters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'invalidCharacters' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'invalidCharacters' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |         var invalidSet = CharacterSet(charactersIn: "_$")
24 |         invalidSet.insert(charactersIn: UnicodeScalar(".") ... UnicodeScalar("9"))
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/CommentedString.swift:32:24: warning: static property 'specialCheckCharacters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 |     /// Set of characters that are invalid.
32 |     private static var specialCheckCharacters = CharacterSet(charactersIn: "_/")
   |                        |- warning: static property 'specialCheckCharacters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'specialCheckCharacters' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'specialCheckCharacters' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// Returns a valid string for Xcode projects.
[52/112] Compiling SwiftXcodeProj CommentedString.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme.swift:6:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSchemeError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  4 |
  5 | public enum XCSchemeError: Error, CustomStringConvertible {
  6 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSchemeError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  7 |     case missing(property: String)
  8 |
/host/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import AEXML
  2 | import Foundation
  3 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  4 |
  5 | public enum XCSchemeError: Error, CustomStringConvertible {
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCSchemeManagement.swift:6:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSchemeManagementError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  4 | public enum XCSchemeManagementError: Error, Equatable, LocalizedError, CustomStringConvertible {
  5 |     /// Thrown when the user tries to initialize a XCSchemeManagement instace passing a path to a file that doesn't exist.
  6 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'XCSchemeManagementError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  7 |
  8 |     public var description: String {
/host/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCSchemeManagement.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | public enum XCSchemeManagementError: Error, Equatable, LocalizedError, CustomStringConvertible {
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/CommentedString.swift:22:24: warning: static property 'invalidCharacters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Set of characters that are invalid.
22 |     private static var invalidCharacters: CharacterSet = {
   |                        |- warning: static property 'invalidCharacters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'invalidCharacters' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'invalidCharacters' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |         var invalidSet = CharacterSet(charactersIn: "_$")
24 |         invalidSet.insert(charactersIn: UnicodeScalar(".") ... UnicodeScalar("9"))
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/CommentedString.swift:32:24: warning: static property 'specialCheckCharacters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 |     /// Set of characters that are invalid.
32 |     private static var specialCheckCharacters = CharacterSet(charactersIn: "_/")
   |                        |- warning: static property 'specialCheckCharacters' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                        |- note: convert 'specialCheckCharacters' to a 'let' constant to make 'Sendable' shared state immutable
   |                        |- note: add '@MainActor' to make static property 'specialCheckCharacters' part of global actor 'MainActor'
   |                        `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 |     /// Returns a valid string for Xcode projects.
[53/112] Compiling SwiftXcodeProj PBXReferenceProxy.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:6:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  4 | public enum WorkspaceSettingsError: Error {
  5 |     /// thrown when the settings file was not found.
  6 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  7 | }
  8 |
/host/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | public enum WorkspaceSettingsError: Error {
[54/112] Compiling SwiftXcodeProj PBXTarget.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:6:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  4 | public enum WorkspaceSettingsError: Error {
  5 |     /// thrown when the settings file was not found.
  6 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  7 | }
  8 |
/host/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | public enum WorkspaceSettingsError: Error {
[55/112] Compiling SwiftXcodeProj PBXTargetDependency.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:6:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  4 | public enum WorkspaceSettingsError: Error {
  5 |     /// thrown when the settings file was not found.
  6 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  7 | }
  8 |
/host/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | public enum WorkspaceSettingsError: Error {
[56/112] Compiling SwiftXcodeProj WorkspaceSettings.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:6:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  4 | public enum WorkspaceSettingsError: Error {
  5 |     /// thrown when the settings file was not found.
  6 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  7 | }
  8 |
/host/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | public enum WorkspaceSettingsError: Error {
[57/112] Compiling SwiftXcodeProj XCBreakpointList.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:6:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  4 | public enum WorkspaceSettingsError: Error {
  5 |     /// thrown when the settings file was not found.
  6 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  7 | }
  8 |
/host/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | public enum WorkspaceSettingsError: Error {
[58/112] Compiling SwiftXcodeProj XCDebugger.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:6:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  4 | public enum WorkspaceSettingsError: Error {
  5 |     /// thrown when the settings file was not found.
  6 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  7 | }
  8 |
/host/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | public enum WorkspaceSettingsError: Error {
[59/112] Compiling SwiftXcodeProj XCSharedData.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:6:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  4 | public enum WorkspaceSettingsError: Error {
  5 |     /// thrown when the settings file was not found.
  6 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  7 | }
  8 |
/host/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | public enum WorkspaceSettingsError: Error {
[60/112] Compiling SwiftXcodeProj XCUserData.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:6:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  4 | public enum WorkspaceSettingsError: Error {
  5 |     /// thrown when the settings file was not found.
  6 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  7 | }
  8 |
/host/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | public enum WorkspaceSettingsError: Error {
[61/112] Compiling SwiftXcodeProj Xcode.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:6:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  4 | public enum WorkspaceSettingsError: Error {
  5 |     /// thrown when the settings file was not found.
  6 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  7 | }
  8 |
/host/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | public enum WorkspaceSettingsError: Error {
[62/112] Compiling SwiftXcodeProj XcodeProj.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:6:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  4 | public enum WorkspaceSettingsError: Error {
  5 |     /// thrown when the settings file was not found.
  6 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  7 | }
  8 |
/host/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | public enum WorkspaceSettingsError: Error {
[63/112] Compiling SwiftXcodeProj Writable.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:6:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  4 | public enum WorkspaceSettingsError: Error {
  5 |     /// thrown when the settings file was not found.
  6 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  7 | }
  8 |
/host/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | public enum WorkspaceSettingsError: Error {
[64/112] Compiling SwiftXcodeProj XCScheme+AditionalOption.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:6:10: warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  4 | public enum WorkspaceSettingsError: Error {
  5 |     /// thrown when the settings file was not found.
  6 |     case notFound(path: Path)
    |          `- warning: associated value 'notFound(path:)' of 'Sendable'-conforming enum 'WorkspaceSettingsError' has non-sendable type 'Path'; this is an error in the Swift 6 language mode
  7 | }
  8 |
/host/spi-builder-workspace/.build/checkouts/PathKit/Sources/PathKit.swift:17:15: note: struct 'Path' does not conform to the 'Sendable' protocol
 15 |
 16 | /// Represents a filesystem path.
 17 | public struct Path {
    |               `- note: struct 'Path' does not conform to the 'Sendable' protocol
 18 |   /// The character used by the OS to separate two path elements
 19 |   public static let separator = "/"
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Project/WorkspaceSettings.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  1 | import Foundation
  2 | import PathKit
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'PathKit'
  3 |
  4 | public enum WorkspaceSettingsError: Error {
[65/112] Compiling SwiftXcodeProj XCScheme+AnalyzeAction.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:10:35: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  8 |             public enum BuildFor {
  9 |                 case running, testing, profiling, archiving, analyzing
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
    |                                   |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:11:35: warning: static property 'indexing' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  9 |                 case running, testing, profiling, archiving, analyzing
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
    |                                   |- warning: static property 'indexing' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'indexing' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'indexing' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
 13 |             }
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:12:35: warning: static property 'testOnly' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
    |                                   |- warning: static property 'testOnly' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'testOnly' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'testOnly' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 13 |             }
 14 |
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:31:28: warning: static property 'defaultLaunchStyle' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.Style' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     // swiftlint:disable:next type_body_length
  7 |     public final class LaunchAction: SerialAction {
  8 |         public enum Style: String {
    |                     `- note: consider making enum 'Style' conform to the 'Sendable' protocol
  9 |             case auto = "0"
 10 |             case wait = "1"
    :
 29 |         private static let defaultBuildConfiguration = "Debug"
 30 |         public static let defaultDebugServiceExtension = "internal"
 31 |         private static let defaultLaunchStyle = Style.auto
    |                            |- warning: static property 'defaultLaunchStyle' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.Style' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: add '@MainActor' to make static property 'defaultLaunchStyle' part of global actor 'MainActor'
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:32:27: warning: static property 'defaultGPUFrameCaptureMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUFrameCaptureMode' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |         }
 13 |
 14 |         public enum GPUFrameCaptureMode: String {
    |                     `- note: consider making enum 'GPUFrameCaptureMode' conform to the 'Sendable' protocol
 15 |             case autoEnabled = "0"
 16 |             case metal = "1"
    :
 30 |         public static let defaultDebugServiceExtension = "internal"
 31 |         private static let defaultLaunchStyle = Style.auto
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
    |                           |- warning: static property 'defaultGPUFrameCaptureMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUFrameCaptureMode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'defaultGPUFrameCaptureMode' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
 34 |
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:33:27: warning: static property 'defaultGPUValidationMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUValidationMode' may have shared mutable state; this is an error in the Swift 6 language mode
 19 |         }
 20 |
 21 |         public enum GPUValidationMode: String {
    |                     `- note: consider making enum 'GPUValidationMode' conform to the 'Sendable' protocol
 22 |             case enabled = "0"
 23 |             case disabled = "1"
    :
 31 |         private static let defaultLaunchStyle = Style.auto
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
    |                           |- warning: static property 'defaultGPUValidationMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUValidationMode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'defaultGPUValidationMode' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |
 35 |         // MARK: - Attributes
[66/112] Compiling SwiftXcodeProj XCScheme+ArchiveAction.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:10:35: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  8 |             public enum BuildFor {
  9 |                 case running, testing, profiling, archiving, analyzing
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
    |                                   |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:11:35: warning: static property 'indexing' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  9 |                 case running, testing, profiling, archiving, analyzing
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
    |                                   |- warning: static property 'indexing' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'indexing' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'indexing' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
 13 |             }
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:12:35: warning: static property 'testOnly' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
    |                                   |- warning: static property 'testOnly' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'testOnly' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'testOnly' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 13 |             }
 14 |
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:31:28: warning: static property 'defaultLaunchStyle' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.Style' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     // swiftlint:disable:next type_body_length
  7 |     public final class LaunchAction: SerialAction {
  8 |         public enum Style: String {
    |                     `- note: consider making enum 'Style' conform to the 'Sendable' protocol
  9 |             case auto = "0"
 10 |             case wait = "1"
    :
 29 |         private static let defaultBuildConfiguration = "Debug"
 30 |         public static let defaultDebugServiceExtension = "internal"
 31 |         private static let defaultLaunchStyle = Style.auto
    |                            |- warning: static property 'defaultLaunchStyle' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.Style' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: add '@MainActor' to make static property 'defaultLaunchStyle' part of global actor 'MainActor'
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:32:27: warning: static property 'defaultGPUFrameCaptureMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUFrameCaptureMode' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |         }
 13 |
 14 |         public enum GPUFrameCaptureMode: String {
    |                     `- note: consider making enum 'GPUFrameCaptureMode' conform to the 'Sendable' protocol
 15 |             case autoEnabled = "0"
 16 |             case metal = "1"
    :
 30 |         public static let defaultDebugServiceExtension = "internal"
 31 |         private static let defaultLaunchStyle = Style.auto
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
    |                           |- warning: static property 'defaultGPUFrameCaptureMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUFrameCaptureMode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'defaultGPUFrameCaptureMode' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
 34 |
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:33:27: warning: static property 'defaultGPUValidationMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUValidationMode' may have shared mutable state; this is an error in the Swift 6 language mode
 19 |         }
 20 |
 21 |         public enum GPUValidationMode: String {
    |                     `- note: consider making enum 'GPUValidationMode' conform to the 'Sendable' protocol
 22 |             case enabled = "0"
 23 |             case disabled = "1"
    :
 31 |         private static let defaultLaunchStyle = Style.auto
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
    |                           |- warning: static property 'defaultGPUValidationMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUValidationMode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'defaultGPUValidationMode' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |
 35 |         // MARK: - Attributes
[67/112] Compiling SwiftXcodeProj XCScheme+BuildAction.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:10:35: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  8 |             public enum BuildFor {
  9 |                 case running, testing, profiling, archiving, analyzing
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
    |                                   |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:11:35: warning: static property 'indexing' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  9 |                 case running, testing, profiling, archiving, analyzing
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
    |                                   |- warning: static property 'indexing' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'indexing' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'indexing' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
 13 |             }
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:12:35: warning: static property 'testOnly' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
    |                                   |- warning: static property 'testOnly' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'testOnly' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'testOnly' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 13 |             }
 14 |
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:31:28: warning: static property 'defaultLaunchStyle' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.Style' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     // swiftlint:disable:next type_body_length
  7 |     public final class LaunchAction: SerialAction {
  8 |         public enum Style: String {
    |                     `- note: consider making enum 'Style' conform to the 'Sendable' protocol
  9 |             case auto = "0"
 10 |             case wait = "1"
    :
 29 |         private static let defaultBuildConfiguration = "Debug"
 30 |         public static let defaultDebugServiceExtension = "internal"
 31 |         private static let defaultLaunchStyle = Style.auto
    |                            |- warning: static property 'defaultLaunchStyle' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.Style' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: add '@MainActor' to make static property 'defaultLaunchStyle' part of global actor 'MainActor'
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:32:27: warning: static property 'defaultGPUFrameCaptureMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUFrameCaptureMode' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |         }
 13 |
 14 |         public enum GPUFrameCaptureMode: String {
    |                     `- note: consider making enum 'GPUFrameCaptureMode' conform to the 'Sendable' protocol
 15 |             case autoEnabled = "0"
 16 |             case metal = "1"
    :
 30 |         public static let defaultDebugServiceExtension = "internal"
 31 |         private static let defaultLaunchStyle = Style.auto
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
    |                           |- warning: static property 'defaultGPUFrameCaptureMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUFrameCaptureMode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'defaultGPUFrameCaptureMode' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
 34 |
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:33:27: warning: static property 'defaultGPUValidationMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUValidationMode' may have shared mutable state; this is an error in the Swift 6 language mode
 19 |         }
 20 |
 21 |         public enum GPUValidationMode: String {
    |                     `- note: consider making enum 'GPUValidationMode' conform to the 'Sendable' protocol
 22 |             case enabled = "0"
 23 |             case disabled = "1"
    :
 31 |         private static let defaultLaunchStyle = Style.auto
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
    |                           |- warning: static property 'defaultGPUValidationMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUValidationMode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'defaultGPUValidationMode' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |
 35 |         // MARK: - Attributes
[68/112] Compiling SwiftXcodeProj XCScheme+BuildableProductRunnable.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:10:35: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  8 |             public enum BuildFor {
  9 |                 case running, testing, profiling, archiving, analyzing
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
    |                                   |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:11:35: warning: static property 'indexing' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  9 |                 case running, testing, profiling, archiving, analyzing
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
    |                                   |- warning: static property 'indexing' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'indexing' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'indexing' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
 13 |             }
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:12:35: warning: static property 'testOnly' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
    |                                   |- warning: static property 'testOnly' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'testOnly' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'testOnly' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 13 |             }
 14 |
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:31:28: warning: static property 'defaultLaunchStyle' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.Style' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     // swiftlint:disable:next type_body_length
  7 |     public final class LaunchAction: SerialAction {
  8 |         public enum Style: String {
    |                     `- note: consider making enum 'Style' conform to the 'Sendable' protocol
  9 |             case auto = "0"
 10 |             case wait = "1"
    :
 29 |         private static let defaultBuildConfiguration = "Debug"
 30 |         public static let defaultDebugServiceExtension = "internal"
 31 |         private static let defaultLaunchStyle = Style.auto
    |                            |- warning: static property 'defaultLaunchStyle' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.Style' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: add '@MainActor' to make static property 'defaultLaunchStyle' part of global actor 'MainActor'
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:32:27: warning: static property 'defaultGPUFrameCaptureMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUFrameCaptureMode' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |         }
 13 |
 14 |         public enum GPUFrameCaptureMode: String {
    |                     `- note: consider making enum 'GPUFrameCaptureMode' conform to the 'Sendable' protocol
 15 |             case autoEnabled = "0"
 16 |             case metal = "1"
    :
 30 |         public static let defaultDebugServiceExtension = "internal"
 31 |         private static let defaultLaunchStyle = Style.auto
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
    |                           |- warning: static property 'defaultGPUFrameCaptureMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUFrameCaptureMode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'defaultGPUFrameCaptureMode' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
 34 |
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:33:27: warning: static property 'defaultGPUValidationMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUValidationMode' may have shared mutable state; this is an error in the Swift 6 language mode
 19 |         }
 20 |
 21 |         public enum GPUValidationMode: String {
    |                     `- note: consider making enum 'GPUValidationMode' conform to the 'Sendable' protocol
 22 |             case enabled = "0"
 23 |             case disabled = "1"
    :
 31 |         private static let defaultLaunchStyle = Style.auto
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
    |                           |- warning: static property 'defaultGPUValidationMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUValidationMode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'defaultGPUValidationMode' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |
 35 |         // MARK: - Attributes
[69/112] Compiling SwiftXcodeProj XCScheme+BuildableReference.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:10:35: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  8 |             public enum BuildFor {
  9 |                 case running, testing, profiling, archiving, analyzing
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
    |                                   |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:11:35: warning: static property 'indexing' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  9 |                 case running, testing, profiling, archiving, analyzing
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
    |                                   |- warning: static property 'indexing' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'indexing' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'indexing' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
 13 |             }
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:12:35: warning: static property 'testOnly' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
    |                                   |- warning: static property 'testOnly' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'testOnly' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'testOnly' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 13 |             }
 14 |
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:31:28: warning: static property 'defaultLaunchStyle' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.Style' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     // swiftlint:disable:next type_body_length
  7 |     public final class LaunchAction: SerialAction {
  8 |         public enum Style: String {
    |                     `- note: consider making enum 'Style' conform to the 'Sendable' protocol
  9 |             case auto = "0"
 10 |             case wait = "1"
    :
 29 |         private static let defaultBuildConfiguration = "Debug"
 30 |         public static let defaultDebugServiceExtension = "internal"
 31 |         private static let defaultLaunchStyle = Style.auto
    |                            |- warning: static property 'defaultLaunchStyle' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.Style' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: add '@MainActor' to make static property 'defaultLaunchStyle' part of global actor 'MainActor'
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:32:27: warning: static property 'defaultGPUFrameCaptureMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUFrameCaptureMode' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |         }
 13 |
 14 |         public enum GPUFrameCaptureMode: String {
    |                     `- note: consider making enum 'GPUFrameCaptureMode' conform to the 'Sendable' protocol
 15 |             case autoEnabled = "0"
 16 |             case metal = "1"
    :
 30 |         public static let defaultDebugServiceExtension = "internal"
 31 |         private static let defaultLaunchStyle = Style.auto
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
    |                           |- warning: static property 'defaultGPUFrameCaptureMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUFrameCaptureMode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'defaultGPUFrameCaptureMode' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
 34 |
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:33:27: warning: static property 'defaultGPUValidationMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUValidationMode' may have shared mutable state; this is an error in the Swift 6 language mode
 19 |         }
 20 |
 21 |         public enum GPUValidationMode: String {
    |                     `- note: consider making enum 'GPUValidationMode' conform to the 'Sendable' protocol
 22 |             case enabled = "0"
 23 |             case disabled = "1"
    :
 31 |         private static let defaultLaunchStyle = Style.auto
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
    |                           |- warning: static property 'defaultGPUValidationMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUValidationMode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'defaultGPUValidationMode' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |
 35 |         // MARK: - Attributes
[70/112] Compiling SwiftXcodeProj XCScheme+CommandLineArguments.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:10:35: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  8 |             public enum BuildFor {
  9 |                 case running, testing, profiling, archiving, analyzing
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
    |                                   |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:11:35: warning: static property 'indexing' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  9 |                 case running, testing, profiling, archiving, analyzing
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
    |                                   |- warning: static property 'indexing' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'indexing' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'indexing' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
 13 |             }
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:12:35: warning: static property 'testOnly' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
    |                                   |- warning: static property 'testOnly' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'testOnly' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'testOnly' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 13 |             }
 14 |
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:31:28: warning: static property 'defaultLaunchStyle' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.Style' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     // swiftlint:disable:next type_body_length
  7 |     public final class LaunchAction: SerialAction {
  8 |         public enum Style: String {
    |                     `- note: consider making enum 'Style' conform to the 'Sendable' protocol
  9 |             case auto = "0"
 10 |             case wait = "1"
    :
 29 |         private static let defaultBuildConfiguration = "Debug"
 30 |         public static let defaultDebugServiceExtension = "internal"
 31 |         private static let defaultLaunchStyle = Style.auto
    |                            |- warning: static property 'defaultLaunchStyle' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.Style' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: add '@MainActor' to make static property 'defaultLaunchStyle' part of global actor 'MainActor'
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:32:27: warning: static property 'defaultGPUFrameCaptureMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUFrameCaptureMode' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |         }
 13 |
 14 |         public enum GPUFrameCaptureMode: String {
    |                     `- note: consider making enum 'GPUFrameCaptureMode' conform to the 'Sendable' protocol
 15 |             case autoEnabled = "0"
 16 |             case metal = "1"
    :
 30 |         public static let defaultDebugServiceExtension = "internal"
 31 |         private static let defaultLaunchStyle = Style.auto
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
    |                           |- warning: static property 'defaultGPUFrameCaptureMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUFrameCaptureMode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'defaultGPUFrameCaptureMode' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
 34 |
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:33:27: warning: static property 'defaultGPUValidationMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUValidationMode' may have shared mutable state; this is an error in the Swift 6 language mode
 19 |         }
 20 |
 21 |         public enum GPUValidationMode: String {
    |                     `- note: consider making enum 'GPUValidationMode' conform to the 'Sendable' protocol
 22 |             case enabled = "0"
 23 |             case disabled = "1"
    :
 31 |         private static let defaultLaunchStyle = Style.auto
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
    |                           |- warning: static property 'defaultGPUValidationMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUValidationMode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'defaultGPUValidationMode' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |
 35 |         // MARK: - Attributes
[71/112] Compiling SwiftXcodeProj XCScheme+EnvironmentVariable.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:10:35: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  8 |             public enum BuildFor {
  9 |                 case running, testing, profiling, archiving, analyzing
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
    |                                   |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:11:35: warning: static property 'indexing' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  9 |                 case running, testing, profiling, archiving, analyzing
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
    |                                   |- warning: static property 'indexing' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'indexing' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'indexing' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
 13 |             }
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:12:35: warning: static property 'testOnly' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
    |                                   |- warning: static property 'testOnly' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'testOnly' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'testOnly' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 13 |             }
 14 |
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:31:28: warning: static property 'defaultLaunchStyle' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.Style' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     // swiftlint:disable:next type_body_length
  7 |     public final class LaunchAction: SerialAction {
  8 |         public enum Style: String {
    |                     `- note: consider making enum 'Style' conform to the 'Sendable' protocol
  9 |             case auto = "0"
 10 |             case wait = "1"
    :
 29 |         private static let defaultBuildConfiguration = "Debug"
 30 |         public static let defaultDebugServiceExtension = "internal"
 31 |         private static let defaultLaunchStyle = Style.auto
    |                            |- warning: static property 'defaultLaunchStyle' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.Style' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: add '@MainActor' to make static property 'defaultLaunchStyle' part of global actor 'MainActor'
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:32:27: warning: static property 'defaultGPUFrameCaptureMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUFrameCaptureMode' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |         }
 13 |
 14 |         public enum GPUFrameCaptureMode: String {
    |                     `- note: consider making enum 'GPUFrameCaptureMode' conform to the 'Sendable' protocol
 15 |             case autoEnabled = "0"
 16 |             case metal = "1"
    :
 30 |         public static let defaultDebugServiceExtension = "internal"
 31 |         private static let defaultLaunchStyle = Style.auto
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
    |                           |- warning: static property 'defaultGPUFrameCaptureMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUFrameCaptureMode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'defaultGPUFrameCaptureMode' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
 34 |
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:33:27: warning: static property 'defaultGPUValidationMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUValidationMode' may have shared mutable state; this is an error in the Swift 6 language mode
 19 |         }
 20 |
 21 |         public enum GPUValidationMode: String {
    |                     `- note: consider making enum 'GPUValidationMode' conform to the 'Sendable' protocol
 22 |             case enabled = "0"
 23 |             case disabled = "1"
    :
 31 |         private static let defaultLaunchStyle = Style.auto
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
    |                           |- warning: static property 'defaultGPUValidationMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUValidationMode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'defaultGPUValidationMode' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |
 35 |         // MARK: - Attributes
[72/112] Compiling SwiftXcodeProj XCScheme+ExecutionAction.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:10:35: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  8 |             public enum BuildFor {
  9 |                 case running, testing, profiling, archiving, analyzing
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
    |                                   |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:11:35: warning: static property 'indexing' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  9 |                 case running, testing, profiling, archiving, analyzing
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
    |                                   |- warning: static property 'indexing' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'indexing' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'indexing' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
 13 |             }
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:12:35: warning: static property 'testOnly' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
    |                                   |- warning: static property 'testOnly' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'testOnly' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'testOnly' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 13 |             }
 14 |
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:31:28: warning: static property 'defaultLaunchStyle' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.Style' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     // swiftlint:disable:next type_body_length
  7 |     public final class LaunchAction: SerialAction {
  8 |         public enum Style: String {
    |                     `- note: consider making enum 'Style' conform to the 'Sendable' protocol
  9 |             case auto = "0"
 10 |             case wait = "1"
    :
 29 |         private static let defaultBuildConfiguration = "Debug"
 30 |         public static let defaultDebugServiceExtension = "internal"
 31 |         private static let defaultLaunchStyle = Style.auto
    |                            |- warning: static property 'defaultLaunchStyle' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.Style' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: add '@MainActor' to make static property 'defaultLaunchStyle' part of global actor 'MainActor'
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:32:27: warning: static property 'defaultGPUFrameCaptureMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUFrameCaptureMode' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |         }
 13 |
 14 |         public enum GPUFrameCaptureMode: String {
    |                     `- note: consider making enum 'GPUFrameCaptureMode' conform to the 'Sendable' protocol
 15 |             case autoEnabled = "0"
 16 |             case metal = "1"
    :
 30 |         public static let defaultDebugServiceExtension = "internal"
 31 |         private static let defaultLaunchStyle = Style.auto
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
    |                           |- warning: static property 'defaultGPUFrameCaptureMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUFrameCaptureMode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'defaultGPUFrameCaptureMode' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
 34 |
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:33:27: warning: static property 'defaultGPUValidationMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUValidationMode' may have shared mutable state; this is an error in the Swift 6 language mode
 19 |         }
 20 |
 21 |         public enum GPUValidationMode: String {
    |                     `- note: consider making enum 'GPUValidationMode' conform to the 'Sendable' protocol
 22 |             case enabled = "0"
 23 |             case disabled = "1"
    :
 31 |         private static let defaultLaunchStyle = Style.auto
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
    |                           |- warning: static property 'defaultGPUValidationMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUValidationMode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'defaultGPUValidationMode' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |
 35 |         // MARK: - Attributes
[73/112] Compiling SwiftXcodeProj XCScheme+LaunchAction.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:10:35: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  8 |             public enum BuildFor {
  9 |                 case running, testing, profiling, archiving, analyzing
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
    |                                   |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:11:35: warning: static property 'indexing' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  9 |                 case running, testing, profiling, archiving, analyzing
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
    |                                   |- warning: static property 'indexing' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'indexing' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'indexing' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
 13 |             }
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:12:35: warning: static property 'testOnly' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
    |                                   |- warning: static property 'testOnly' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'testOnly' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'testOnly' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 13 |             }
 14 |
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:31:28: warning: static property 'defaultLaunchStyle' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.Style' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     // swiftlint:disable:next type_body_length
  7 |     public final class LaunchAction: SerialAction {
  8 |         public enum Style: String {
    |                     `- note: consider making enum 'Style' conform to the 'Sendable' protocol
  9 |             case auto = "0"
 10 |             case wait = "1"
    :
 29 |         private static let defaultBuildConfiguration = "Debug"
 30 |         public static let defaultDebugServiceExtension = "internal"
 31 |         private static let defaultLaunchStyle = Style.auto
    |                            |- warning: static property 'defaultLaunchStyle' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.Style' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: add '@MainActor' to make static property 'defaultLaunchStyle' part of global actor 'MainActor'
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:32:27: warning: static property 'defaultGPUFrameCaptureMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUFrameCaptureMode' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |         }
 13 |
 14 |         public enum GPUFrameCaptureMode: String {
    |                     `- note: consider making enum 'GPUFrameCaptureMode' conform to the 'Sendable' protocol
 15 |             case autoEnabled = "0"
 16 |             case metal = "1"
    :
 30 |         public static let defaultDebugServiceExtension = "internal"
 31 |         private static let defaultLaunchStyle = Style.auto
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
    |                           |- warning: static property 'defaultGPUFrameCaptureMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUFrameCaptureMode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'defaultGPUFrameCaptureMode' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
 34 |
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:33:27: warning: static property 'defaultGPUValidationMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUValidationMode' may have shared mutable state; this is an error in the Swift 6 language mode
 19 |         }
 20 |
 21 |         public enum GPUValidationMode: String {
    |                     `- note: consider making enum 'GPUValidationMode' conform to the 'Sendable' protocol
 22 |             case enabled = "0"
 23 |             case disabled = "1"
    :
 31 |         private static let defaultLaunchStyle = Style.auto
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
    |                           |- warning: static property 'defaultGPUValidationMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUValidationMode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'defaultGPUValidationMode' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |
 35 |         // MARK: - Attributes
[74/112] Compiling SwiftXcodeProj XCScheme+LocationScenarioReference.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:10:35: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  8 |             public enum BuildFor {
  9 |                 case running, testing, profiling, archiving, analyzing
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
    |                                   |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:11:35: warning: static property 'indexing' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  9 |                 case running, testing, profiling, archiving, analyzing
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
    |                                   |- warning: static property 'indexing' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'indexing' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'indexing' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
 13 |             }
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:12:35: warning: static property 'testOnly' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
    |                                   |- warning: static property 'testOnly' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'testOnly' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'testOnly' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 13 |             }
 14 |
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:31:28: warning: static property 'defaultLaunchStyle' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.Style' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     // swiftlint:disable:next type_body_length
  7 |     public final class LaunchAction: SerialAction {
  8 |         public enum Style: String {
    |                     `- note: consider making enum 'Style' conform to the 'Sendable' protocol
  9 |             case auto = "0"
 10 |             case wait = "1"
    :
 29 |         private static let defaultBuildConfiguration = "Debug"
 30 |         public static let defaultDebugServiceExtension = "internal"
 31 |         private static let defaultLaunchStyle = Style.auto
    |                            |- warning: static property 'defaultLaunchStyle' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.Style' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: add '@MainActor' to make static property 'defaultLaunchStyle' part of global actor 'MainActor'
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:32:27: warning: static property 'defaultGPUFrameCaptureMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUFrameCaptureMode' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |         }
 13 |
 14 |         public enum GPUFrameCaptureMode: String {
    |                     `- note: consider making enum 'GPUFrameCaptureMode' conform to the 'Sendable' protocol
 15 |             case autoEnabled = "0"
 16 |             case metal = "1"
    :
 30 |         public static let defaultDebugServiceExtension = "internal"
 31 |         private static let defaultLaunchStyle = Style.auto
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
    |                           |- warning: static property 'defaultGPUFrameCaptureMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUFrameCaptureMode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'defaultGPUFrameCaptureMode' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
 34 |
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:33:27: warning: static property 'defaultGPUValidationMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUValidationMode' may have shared mutable state; this is an error in the Swift 6 language mode
 19 |         }
 20 |
 21 |         public enum GPUValidationMode: String {
    |                     `- note: consider making enum 'GPUValidationMode' conform to the 'Sendable' protocol
 22 |             case enabled = "0"
 23 |             case disabled = "1"
    :
 31 |         private static let defaultLaunchStyle = Style.auto
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
    |                           |- warning: static property 'defaultGPUValidationMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUValidationMode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'defaultGPUValidationMode' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |
 35 |         // MARK: - Attributes
[75/112] Compiling SwiftXcodeProj XCScheme+PathRunnable.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:10:35: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  8 |             public enum BuildFor {
  9 |                 case running, testing, profiling, archiving, analyzing
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
    |                                   |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:11:35: warning: static property 'indexing' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  9 |                 case running, testing, profiling, archiving, analyzing
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
    |                                   |- warning: static property 'indexing' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'indexing' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'indexing' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
 13 |             }
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:12:35: warning: static property 'testOnly' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
    |                                   |- warning: static property 'testOnly' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'testOnly' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'testOnly' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 13 |             }
 14 |
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:31:28: warning: static property 'defaultLaunchStyle' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.Style' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     // swiftlint:disable:next type_body_length
  7 |     public final class LaunchAction: SerialAction {
  8 |         public enum Style: String {
    |                     `- note: consider making enum 'Style' conform to the 'Sendable' protocol
  9 |             case auto = "0"
 10 |             case wait = "1"
    :
 29 |         private static let defaultBuildConfiguration = "Debug"
 30 |         public static let defaultDebugServiceExtension = "internal"
 31 |         private static let defaultLaunchStyle = Style.auto
    |                            |- warning: static property 'defaultLaunchStyle' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.Style' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: add '@MainActor' to make static property 'defaultLaunchStyle' part of global actor 'MainActor'
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:32:27: warning: static property 'defaultGPUFrameCaptureMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUFrameCaptureMode' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |         }
 13 |
 14 |         public enum GPUFrameCaptureMode: String {
    |                     `- note: consider making enum 'GPUFrameCaptureMode' conform to the 'Sendable' protocol
 15 |             case autoEnabled = "0"
 16 |             case metal = "1"
    :
 30 |         public static let defaultDebugServiceExtension = "internal"
 31 |         private static let defaultLaunchStyle = Style.auto
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
    |                           |- warning: static property 'defaultGPUFrameCaptureMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUFrameCaptureMode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'defaultGPUFrameCaptureMode' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
 34 |
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:33:27: warning: static property 'defaultGPUValidationMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUValidationMode' may have shared mutable state; this is an error in the Swift 6 language mode
 19 |         }
 20 |
 21 |         public enum GPUValidationMode: String {
    |                     `- note: consider making enum 'GPUValidationMode' conform to the 'Sendable' protocol
 22 |             case enabled = "0"
 23 |             case disabled = "1"
    :
 31 |         private static let defaultLaunchStyle = Style.auto
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
    |                           |- warning: static property 'defaultGPUValidationMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUValidationMode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'defaultGPUValidationMode' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |
 35 |         // MARK: - Attributes
[76/112] Compiling SwiftXcodeProj XCScheme+ProfileAction.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:10:35: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  8 |             public enum BuildFor {
  9 |                 case running, testing, profiling, archiving, analyzing
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
    |                                   |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:11:35: warning: static property 'indexing' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
  9 |                 case running, testing, profiling, archiving, analyzing
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
    |                                   |- warning: static property 'indexing' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'indexing' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'indexing' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
 13 |             }
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+BuildAction.swift:12:35: warning: static property 'testOnly' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 10 |                 public static var `default`: [BuildFor] = [.running, .testing, .archiving, .analyzing]
 11 |                 public static var indexing: [BuildFor] = [.testing, .analyzing, .archiving]
 12 |                 public static var testOnly: [BuildFor] = [.testing, .analyzing]
    |                                   |- warning: static property 'testOnly' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                   |- note: convert 'testOnly' to a 'let' constant to make 'Sendable' shared state immutable
    |                                   |- note: add '@MainActor' to make static property 'testOnly' part of global actor 'MainActor'
    |                                   `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 13 |             }
 14 |
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:31:28: warning: static property 'defaultLaunchStyle' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.Style' may have shared mutable state; this is an error in the Swift 6 language mode
  6 |     // swiftlint:disable:next type_body_length
  7 |     public final class LaunchAction: SerialAction {
  8 |         public enum Style: String {
    |                     `- note: consider making enum 'Style' conform to the 'Sendable' protocol
  9 |             case auto = "0"
 10 |             case wait = "1"
    :
 29 |         private static let defaultBuildConfiguration = "Debug"
 30 |         public static let defaultDebugServiceExtension = "internal"
 31 |         private static let defaultLaunchStyle = Style.auto
    |                            |- warning: static property 'defaultLaunchStyle' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.Style' may have shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: add '@MainActor' to make static property 'defaultLaunchStyle' part of global actor 'MainActor'
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:32:27: warning: static property 'defaultGPUFrameCaptureMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUFrameCaptureMode' may have shared mutable state; this is an error in the Swift 6 language mode
 12 |         }
 13 |
 14 |         public enum GPUFrameCaptureMode: String {
    |                     `- note: consider making enum 'GPUFrameCaptureMode' conform to the 'Sendable' protocol
 15 |             case autoEnabled = "0"
 16 |             case metal = "1"
    :
 30 |         public static let defaultDebugServiceExtension = "internal"
 31 |         private static let defaultLaunchStyle = Style.auto
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
    |                           |- warning: static property 'defaultGPUFrameCaptureMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUFrameCaptureMode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'defaultGPUFrameCaptureMode' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
 34 |
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Scheme/XCScheme+LaunchAction.swift:33:27: warning: static property 'defaultGPUValidationMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUValidationMode' may have shared mutable state; this is an error in the Swift 6 language mode
 19 |         }
 20 |
 21 |         public enum GPUValidationMode: String {
    |                     `- note: consider making enum 'GPUValidationMode' conform to the 'Sendable' protocol
 22 |             case enabled = "0"
 23 |             case disabled = "1"
    :
 31 |         private static let defaultLaunchStyle = Style.auto
 32 |         public static let defaultGPUFrameCaptureMode = GPUFrameCaptureMode.autoEnabled
 33 |         public static let defaultGPUValidationMode = GPUValidationMode.enabled
    |                           |- warning: static property 'defaultGPUValidationMode' is not concurrency-safe because non-'Sendable' type 'XCScheme.LaunchAction.GPUValidationMode' may have shared mutable state; this is an error in the Swift 6 language mode
    |                           |- note: add '@MainActor' to make static property 'defaultGPUValidationMode' part of global actor 'MainActor'
    |                           `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |
 35 |         // MARK: - Attributes
[77/112] Compiling SwiftXcodeProj PBXOutputSettings.swift
[78/112] Compiling SwiftXcodeProj PBXProj.swift
[79/112] Compiling SwiftXcodeProj PBXProjEncoder.swift
[80/112] Compiling SwiftXcodeProj PBXProject.swift
[81/112] Compiling SwiftXcodeProj Equality.generated.swift
[82/112] Compiling SwiftXcodeProj Sourcery.swift
[83/112] Compiling SwiftXcodeProj XCRemoteSwiftPackageReference.swift
[84/112] Compiling SwiftXcodeProj XCSwiftPackageProductDependency.swift
[85/112] Compiling SwiftXcodeProj PBXAggregateTarget.swift
[86/112] Compiling SwiftXcodeProj PBXLegacyTarget.swift
[87/112] Compiling SwiftXcodeProj PBXNativeTarget.swift
[88/112] Compiling SwiftXcodeProj PBXProductType.swift
[89/112] Compiling SwiftXcodeProj PBXBuildPhase.swift
[90/112] Compiling SwiftXcodeProj PBXBuildRule.swift
[91/112] Compiling SwiftXcodeProj PBXCopyFilesBuildPhase.swift
[92/112] Compiling SwiftXcodeProj PBXFrameworksBuildPhase.swift
[93/112] Compiling SwiftXcodeProj PBXHeadersBuildPhase.swift
[94/112] Compiling SwiftXcodeProj PBXResourcesBuildPhase.swift
[95/112] Compiling SwiftXcodeProj PBXRezBuildPhase.swift
[96/112] Compiling SwiftXcodeProj PBXShellScriptBuildPhase.swift
[97/112] Compiling SwiftXcodeProj PBXSourcesBuildPhase.swift
[98/112] Compiling SwiftXcodeProj BuildSettings.swift
[99/112] Compiling SwiftXcodeProj XCBuildConfiguration.swift
[100/112] Compiling SwiftXcodeProj XCConfigurationList.swift
[101/112] Compiling SwiftXcodeProj PBXContainerItem.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Objects/Files/PBXGroup.swift:105:23: warning: static property 'withoutFolder' is not concurrency-safe because non-'Sendable' type 'GroupAddingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 91 |
 92 | /// Options passed when adding new groups.
 93 | public struct GroupAddingOptions: OptionSet {
    |               `- note: consider making struct 'GroupAddingOptions' conform to the 'Sendable' protocol
 94 |     /// Raw value.
 95 |     public let rawValue: Int
    :
103 |
104 |     /// Create group without reference to folder
105 |     public static let withoutFolder = GroupAddingOptions(rawValue: 1 << 0)
    |                       |- warning: static property 'withoutFolder' is not concurrency-safe because non-'Sendable' type 'GroupAddingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'withoutFolder' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 | }
107 |
[102/112] Compiling SwiftXcodeProj PBXContainerItemProxy.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Objects/Files/PBXGroup.swift:105:23: warning: static property 'withoutFolder' is not concurrency-safe because non-'Sendable' type 'GroupAddingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 91 |
 92 | /// Options passed when adding new groups.
 93 | public struct GroupAddingOptions: OptionSet {
    |               `- note: consider making struct 'GroupAddingOptions' conform to the 'Sendable' protocol
 94 |     /// Raw value.
 95 |     public let rawValue: Int
    :
103 |
104 |     /// Create group without reference to folder
105 |     public static let withoutFolder = GroupAddingOptions(rawValue: 1 << 0)
    |                       |- warning: static property 'withoutFolder' is not concurrency-safe because non-'Sendable' type 'GroupAddingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'withoutFolder' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 | }
107 |
[103/112] Compiling SwiftXcodeProj PBXFileElement.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Objects/Files/PBXGroup.swift:105:23: warning: static property 'withoutFolder' is not concurrency-safe because non-'Sendable' type 'GroupAddingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 91 |
 92 | /// Options passed when adding new groups.
 93 | public struct GroupAddingOptions: OptionSet {
    |               `- note: consider making struct 'GroupAddingOptions' conform to the 'Sendable' protocol
 94 |     /// Raw value.
 95 |     public let rawValue: Int
    :
103 |
104 |     /// Create group without reference to folder
105 |     public static let withoutFolder = GroupAddingOptions(rawValue: 1 << 0)
    |                       |- warning: static property 'withoutFolder' is not concurrency-safe because non-'Sendable' type 'GroupAddingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'withoutFolder' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 | }
107 |
[104/112] Compiling SwiftXcodeProj PBXFileReference.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Objects/Files/PBXGroup.swift:105:23: warning: static property 'withoutFolder' is not concurrency-safe because non-'Sendable' type 'GroupAddingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 91 |
 92 | /// Options passed when adding new groups.
 93 | public struct GroupAddingOptions: OptionSet {
    |               `- note: consider making struct 'GroupAddingOptions' conform to the 'Sendable' protocol
 94 |     /// Raw value.
 95 |     public let rawValue: Int
    :
103 |
104 |     /// Create group without reference to folder
105 |     public static let withoutFolder = GroupAddingOptions(rawValue: 1 << 0)
    |                       |- warning: static property 'withoutFolder' is not concurrency-safe because non-'Sendable' type 'GroupAddingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'withoutFolder' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 | }
107 |
[105/112] Compiling SwiftXcodeProj PBXGroup.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Objects/Files/PBXGroup.swift:105:23: warning: static property 'withoutFolder' is not concurrency-safe because non-'Sendable' type 'GroupAddingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 91 |
 92 | /// Options passed when adding new groups.
 93 | public struct GroupAddingOptions: OptionSet {
    |               `- note: consider making struct 'GroupAddingOptions' conform to the 'Sendable' protocol
 94 |     /// Raw value.
 95 |     public let rawValue: Int
    :
103 |
104 |     /// Create group without reference to folder
105 |     public static let withoutFolder = GroupAddingOptions(rawValue: 1 << 0)
    |                       |- warning: static property 'withoutFolder' is not concurrency-safe because non-'Sendable' type 'GroupAddingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'withoutFolder' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 | }
107 |
[106/112] Compiling SwiftXcodeProj PBXSourceTree.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Objects/Files/PBXGroup.swift:105:23: warning: static property 'withoutFolder' is not concurrency-safe because non-'Sendable' type 'GroupAddingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 91 |
 92 | /// Options passed when adding new groups.
 93 | public struct GroupAddingOptions: OptionSet {
    |               `- note: consider making struct 'GroupAddingOptions' conform to the 'Sendable' protocol
 94 |     /// Raw value.
 95 |     public let rawValue: Int
    :
103 |
104 |     /// Create group without reference to folder
105 |     public static let withoutFolder = GroupAddingOptions(rawValue: 1 << 0)
    |                       |- warning: static property 'withoutFolder' is not concurrency-safe because non-'Sendable' type 'GroupAddingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'withoutFolder' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 | }
107 |
[107/112] Compiling SwiftXcodeProj PBXVariantGroup.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Objects/Files/PBXGroup.swift:105:23: warning: static property 'withoutFolder' is not concurrency-safe because non-'Sendable' type 'GroupAddingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 91 |
 92 | /// Options passed when adding new groups.
 93 | public struct GroupAddingOptions: OptionSet {
    |               `- note: consider making struct 'GroupAddingOptions' conform to the 'Sendable' protocol
 94 |     /// Raw value.
 95 |     public let rawValue: Int
    :
103 |
104 |     /// Create group without reference to folder
105 |     public static let withoutFolder = GroupAddingOptions(rawValue: 1 << 0)
    |                       |- warning: static property 'withoutFolder' is not concurrency-safe because non-'Sendable' type 'GroupAddingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'withoutFolder' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 | }
107 |
[108/112] Compiling SwiftXcodeProj XCVersionGroup.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Objects/Files/PBXGroup.swift:105:23: warning: static property 'withoutFolder' is not concurrency-safe because non-'Sendable' type 'GroupAddingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 91 |
 92 | /// Options passed when adding new groups.
 93 | public struct GroupAddingOptions: OptionSet {
    |               `- note: consider making struct 'GroupAddingOptions' conform to the 'Sendable' protocol
 94 |     /// Raw value.
 95 |     public let rawValue: Int
    :
103 |
104 |     /// Create group without reference to folder
105 |     public static let withoutFolder = GroupAddingOptions(rawValue: 1 << 0)
    |                       |- warning: static property 'withoutFolder' is not concurrency-safe because non-'Sendable' type 'GroupAddingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'withoutFolder' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 | }
107 |
[109/112] Compiling SwiftXcodeProj PBXObject.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Objects/Files/PBXGroup.swift:105:23: warning: static property 'withoutFolder' is not concurrency-safe because non-'Sendable' type 'GroupAddingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 91 |
 92 | /// Options passed when adding new groups.
 93 | public struct GroupAddingOptions: OptionSet {
    |               `- note: consider making struct 'GroupAddingOptions' conform to the 'Sendable' protocol
 94 |     /// Raw value.
 95 |     public let rawValue: Int
    :
103 |
104 |     /// Create group without reference to folder
105 |     public static let withoutFolder = GroupAddingOptions(rawValue: 1 << 0)
    |                       |- warning: static property 'withoutFolder' is not concurrency-safe because non-'Sendable' type 'GroupAddingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'withoutFolder' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 | }
107 |
[110/112] Compiling SwiftXcodeProj PBXObjectParser.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Objects/Files/PBXGroup.swift:105:23: warning: static property 'withoutFolder' is not concurrency-safe because non-'Sendable' type 'GroupAddingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 91 |
 92 | /// Options passed when adding new groups.
 93 | public struct GroupAddingOptions: OptionSet {
    |               `- note: consider making struct 'GroupAddingOptions' conform to the 'Sendable' protocol
 94 |     /// Raw value.
 95 |     public let rawValue: Int
    :
103 |
104 |     /// Create group without reference to folder
105 |     public static let withoutFolder = GroupAddingOptions(rawValue: 1 << 0)
    |                       |- warning: static property 'withoutFolder' is not concurrency-safe because non-'Sendable' type 'GroupAddingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'withoutFolder' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 | }
107 |
[111/112] Compiling SwiftXcodeProj PBXObjectReference.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Objects/Files/PBXGroup.swift:105:23: warning: static property 'withoutFolder' is not concurrency-safe because non-'Sendable' type 'GroupAddingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 91 |
 92 | /// Options passed when adding new groups.
 93 | public struct GroupAddingOptions: OptionSet {
    |               `- note: consider making struct 'GroupAddingOptions' conform to the 'Sendable' protocol
 94 |     /// Raw value.
 95 |     public let rawValue: Int
    :
103 |
104 |     /// Create group without reference to folder
105 |     public static let withoutFolder = GroupAddingOptions(rawValue: 1 << 0)
    |                       |- warning: static property 'withoutFolder' is not concurrency-safe because non-'Sendable' type 'GroupAddingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'withoutFolder' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 | }
107 |
[112/112] Compiling SwiftXcodeProj PBXObjects.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Objects/Files/PBXGroup.swift:105:23: warning: static property 'withoutFolder' is not concurrency-safe because non-'Sendable' type 'GroupAddingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
 91 |
 92 | /// Options passed when adding new groups.
 93 | public struct GroupAddingOptions: OptionSet {
    |               `- note: consider making struct 'GroupAddingOptions' conform to the 'Sendable' protocol
 94 |     /// Raw value.
 95 |     public let rawValue: Int
    :
103 |
104 |     /// Create group without reference to folder
105 |     public static let withoutFolder = GroupAddingOptions(rawValue: 1 << 0)
    |                       |- warning: static property 'withoutFolder' is not concurrency-safe because non-'Sendable' type 'GroupAddingOptions' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: add '@MainActor' to make static property 'withoutFolder' part of global actor 'MainActor'
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 | }
107 |
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.1-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:3bdcac04179f4ed3e5b8e9dbd6e74bbf5ebc0f4fde48bbaad7d1e5c757e65bcb
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/9] Emitting module PathKit
[3/9] Compiling AEXML Options.swift
[4/9] Compiling AEXML Parser.swift
[5/9] Compiling AEXML Error.swift
[6/9] Compiling AEXML Document.swift
[7/9] Compiling AEXML Element.swift
[8/9] Emitting module AEXML
[10/10] Compiling PathKit PathKit.swift
[12/97] Emitting module SwiftXcodeProj
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:51:7: warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
49 |
50 | /// Xcodeproj JSON decoder.
51 | class XcodeprojJSONDecoder: JSONDecoder {
   |       `- warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
52 |     /// Default init.
53 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:60:7: warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
58 |
59 | /// Xcodeproj property list decoder.
60 | class XcodeprojPropertyListDecoder: PropertyListDecoder {
   |       `- warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
61 |     /// Default init.
62 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
[13/109] Compiling SwiftXcodeProj Errors.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Extensions/Dictionary+Extras.swift:8:5: warning: 'init(contentsOfFile:)' is deprecated
 6 | /// - Returns: initialized dictionary.
 7 | public func loadPlist(path: String) -> [String: AnyObject]? {
 8 |     NSDictionary(contentsOfFile: path) as? [String: AnyObject]
   |     `- warning: 'init(contentsOfFile:)' is deprecated
 9 | }
10 |
[14/109] Compiling SwiftXcodeProj AEXML+XcodeFormat.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Extensions/Dictionary+Extras.swift:8:5: warning: 'init(contentsOfFile:)' is deprecated
 6 | /// - Returns: initialized dictionary.
 7 | public func loadPlist(path: String) -> [String: AnyObject]? {
 8 |     NSDictionary(contentsOfFile: path) as? [String: AnyObject]
   |     `- warning: 'init(contentsOfFile:)' is deprecated
 9 | }
10 |
[15/109] Compiling SwiftXcodeProj Array+Extras.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Extensions/Dictionary+Extras.swift:8:5: warning: 'init(contentsOfFile:)' is deprecated
 6 | /// - Returns: initialized dictionary.
 7 | public func loadPlist(path: String) -> [String: AnyObject]? {
 8 |     NSDictionary(contentsOfFile: path) as? [String: AnyObject]
   |     `- warning: 'init(contentsOfFile:)' is deprecated
 9 | }
10 |
[16/109] Compiling SwiftXcodeProj Bool+Extras.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Extensions/Dictionary+Extras.swift:8:5: warning: 'init(contentsOfFile:)' is deprecated
 6 | /// - Returns: initialized dictionary.
 7 | public func loadPlist(path: String) -> [String: AnyObject]? {
 8 |     NSDictionary(contentsOfFile: path) as? [String: AnyObject]
   |     `- warning: 'init(contentsOfFile:)' is deprecated
 9 | }
10 |
[17/109] Compiling SwiftXcodeProj Dictionary+Enumerate.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Extensions/Dictionary+Extras.swift:8:5: warning: 'init(contentsOfFile:)' is deprecated
 6 | /// - Returns: initialized dictionary.
 7 | public func loadPlist(path: String) -> [String: AnyObject]? {
 8 |     NSDictionary(contentsOfFile: path) as? [String: AnyObject]
   |     `- warning: 'init(contentsOfFile:)' is deprecated
 9 | }
10 |
[18/109] Compiling SwiftXcodeProj Dictionary+Extras.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Extensions/Dictionary+Extras.swift:8:5: warning: 'init(contentsOfFile:)' is deprecated
 6 | /// - Returns: initialized dictionary.
 7 | public func loadPlist(path: String) -> [String: AnyObject]? {
 8 |     NSDictionary(contentsOfFile: path) as? [String: AnyObject]
   |     `- warning: 'init(contentsOfFile:)' is deprecated
 9 | }
10 |
[19/109] Compiling SwiftXcodeProj KeyedDecodingContainer+Additions.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Extensions/Dictionary+Extras.swift:8:5: warning: 'init(contentsOfFile:)' is deprecated
 6 | /// - Returns: initialized dictionary.
 7 | public func loadPlist(path: String) -> [String: AnyObject]? {
 8 |     NSDictionary(contentsOfFile: path) as? [String: AnyObject]
   |     `- warning: 'init(contentsOfFile:)' is deprecated
 9 | }
10 |
[20/109] Compiling SwiftXcodeProj NSRecursiveLock+Sync.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Extensions/Dictionary+Extras.swift:8:5: warning: 'init(contentsOfFile:)' is deprecated
 6 | /// - Returns: initialized dictionary.
 7 | public func loadPlist(path: String) -> [String: AnyObject]? {
 8 |     NSDictionary(contentsOfFile: path) as? [String: AnyObject]
   |     `- warning: 'init(contentsOfFile:)' is deprecated
 9 | }
10 |
[21/109] Compiling SwiftXcodeProj Path+Extras.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Extensions/Dictionary+Extras.swift:8:5: warning: 'init(contentsOfFile:)' is deprecated
 6 | /// - Returns: initialized dictionary.
 7 | public func loadPlist(path: String) -> [String: AnyObject]? {
 8 |     NSDictionary(contentsOfFile: path) as? [String: AnyObject]
   |     `- warning: 'init(contentsOfFile:)' is deprecated
 9 | }
10 |
[22/109] Compiling SwiftXcodeProj String+Utils.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Extensions/Dictionary+Extras.swift:8:5: warning: 'init(contentsOfFile:)' is deprecated
 6 | /// - Returns: initialized dictionary.
 7 | public func loadPlist(path: String) -> [String: AnyObject]? {
 8 |     NSDictionary(contentsOfFile: path) as? [String: AnyObject]
   |     `- warning: 'init(contentsOfFile:)' is deprecated
 9 | }
10 |
[23/109] Compiling SwiftXcodeProj String+md5.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Extensions/Dictionary+Extras.swift:8:5: warning: 'init(contentsOfFile:)' is deprecated
 6 | /// - Returns: initialized dictionary.
 7 | public func loadPlist(path: String) -> [String: AnyObject]? {
 8 |     NSDictionary(contentsOfFile: path) as? [String: AnyObject]
   |     `- warning: 'init(contentsOfFile:)' is deprecated
 9 | }
10 |
[24/109] Compiling SwiftXcodeProj BuildPhase.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Extensions/Dictionary+Extras.swift:8:5: warning: 'init(contentsOfFile:)' is deprecated
 6 | /// - Returns: initialized dictionary.
 7 | public func loadPlist(path: String) -> [String: AnyObject]? {
 8 |     NSDictionary(contentsOfFile: path) as? [String: AnyObject]
   |     `- warning: 'init(contentsOfFile:)' is deprecated
 9 | }
10 |
[25/109] Compiling SwiftXcodeProj PBXBuildFile.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Extensions/Dictionary+Extras.swift:8:5: warning: 'init(contentsOfFile:)' is deprecated
 6 | /// - Returns: initialized dictionary.
 7 | public func loadPlist(path: String) -> [String: AnyObject]? {
 8 |     NSDictionary(contentsOfFile: path) as? [String: AnyObject]
   |     `- warning: 'init(contentsOfFile:)' is deprecated
 9 | }
10 |
[26/109] Compiling SwiftXcodeProj XCScheme+RemoteRunnable.swift
[27/109] Compiling SwiftXcodeProj XCScheme+Runnable.swift
[28/109] Compiling SwiftXcodeProj XCScheme+SerialAction.swift
[29/109] Compiling SwiftXcodeProj XCScheme+StoreKitConfigurationFileReference.swift
[30/109] Compiling SwiftXcodeProj XCScheme+TestAction.swift
[31/109] Compiling SwiftXcodeProj XCScheme+TestItem.swift
[32/109] Compiling SwiftXcodeProj XCScheme+TestPlanReference.swift
[33/109] Compiling SwiftXcodeProj XCScheme+TestableReference.swift
[34/109] Compiling SwiftXcodeProj XCScheme.swift
[35/109] Compiling SwiftXcodeProj XCSchemeManagement.swift
[36/109] Compiling SwiftXcodeProj BuildSettingsProvider.swift
[37/109] Compiling SwiftXcodeProj CommentedString.swift
[38/109] Compiling SwiftXcodeProj PBXContainerItem.swift
[39/109] Compiling SwiftXcodeProj PBXContainerItemProxy.swift
[40/109] Compiling SwiftXcodeProj PBXFileElement.swift
[41/109] Compiling SwiftXcodeProj PBXFileReference.swift
[42/109] Compiling SwiftXcodeProj PBXGroup.swift
[43/109] Compiling SwiftXcodeProj PBXSourceTree.swift
[44/109] Compiling SwiftXcodeProj PBXVariantGroup.swift
[45/109] Compiling SwiftXcodeProj XCVersionGroup.swift
[46/109] Compiling SwiftXcodeProj PBXObject.swift
[47/109] Compiling SwiftXcodeProj PBXObjectParser.swift
[48/109] Compiling SwiftXcodeProj PBXObjectReference.swift
[49/109] Compiling SwiftXcodeProj PBXObjects.swift
[50/109] Compiling SwiftXcodeProj PBXBuildPhase.swift
[51/109] Compiling SwiftXcodeProj PBXBuildRule.swift
[52/109] Compiling SwiftXcodeProj PBXCopyFilesBuildPhase.swift
[53/109] Compiling SwiftXcodeProj PBXFrameworksBuildPhase.swift
[54/109] Compiling SwiftXcodeProj PBXHeadersBuildPhase.swift
[55/109] Compiling SwiftXcodeProj PBXResourcesBuildPhase.swift
[56/109] Compiling SwiftXcodeProj PBXRezBuildPhase.swift
[57/109] Compiling SwiftXcodeProj PBXShellScriptBuildPhase.swift
[58/109] Compiling SwiftXcodeProj PBXSourcesBuildPhase.swift
[59/109] Compiling SwiftXcodeProj BuildSettings.swift
[60/109] Compiling SwiftXcodeProj XCBuildConfiguration.swift
[61/109] Compiling SwiftXcodeProj XCConfigurationList.swift
[62/109] Compiling SwiftXcodeProj Decoders.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:51:7: warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
49 |
50 | /// Xcodeproj JSON decoder.
51 | class XcodeprojJSONDecoder: JSONDecoder {
   |       `- warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
52 |     /// Default init.
53 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:60:7: warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
58 |
59 | /// Xcodeproj property list decoder.
60 | class XcodeprojPropertyListDecoder: PropertyListDecoder {
   |       `- warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
61 |     /// Default init.
62 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
[63/109] Compiling SwiftXcodeProj JSONDecoding.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:51:7: warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
49 |
50 | /// Xcodeproj JSON decoder.
51 | class XcodeprojJSONDecoder: JSONDecoder {
   |       `- warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
52 |     /// Default init.
53 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:60:7: warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
58 |
59 | /// Xcodeproj property list decoder.
60 | class XcodeprojPropertyListDecoder: PropertyListDecoder {
   |       `- warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
61 |     /// Default init.
62 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
[64/109] Compiling SwiftXcodeProj PBXBatchUpdater.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:51:7: warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
49 |
50 | /// Xcodeproj JSON decoder.
51 | class XcodeprojJSONDecoder: JSONDecoder {
   |       `- warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
52 |     /// Default init.
53 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:60:7: warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
58 |
59 | /// Xcodeproj property list decoder.
60 | class XcodeprojPropertyListDecoder: PropertyListDecoder {
   |       `- warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
61 |     /// Default init.
62 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
[65/109] Compiling SwiftXcodeProj PlistValue.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:51:7: warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
49 |
50 | /// Xcodeproj JSON decoder.
51 | class XcodeprojJSONDecoder: JSONDecoder {
   |       `- warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
52 |     /// Default init.
53 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:60:7: warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
58 |
59 | /// Xcodeproj property list decoder.
60 | class XcodeprojPropertyListDecoder: PropertyListDecoder {
   |       `- warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
61 |     /// Default init.
62 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
[66/109] Compiling SwiftXcodeProj ReferenceGenerator.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:51:7: warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
49 |
50 | /// Xcodeproj JSON decoder.
51 | class XcodeprojJSONDecoder: JSONDecoder {
   |       `- warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
52 |     /// Default init.
53 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:60:7: warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
58 |
59 | /// Xcodeproj property list decoder.
60 | class XcodeprojPropertyListDecoder: PropertyListDecoder {
   |       `- warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
61 |     /// Default init.
62 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
[67/109] Compiling SwiftXcodeProj XCConfig.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:51:7: warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
49 |
50 | /// Xcodeproj JSON decoder.
51 | class XcodeprojJSONDecoder: JSONDecoder {
   |       `- warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
52 |     /// Default init.
53 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:60:7: warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
58 |
59 | /// Xcodeproj property list decoder.
60 | class XcodeprojPropertyListDecoder: PropertyListDecoder {
   |       `- warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
61 |     /// Default init.
62 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
[68/109] Compiling SwiftXcodeProj XCWorkspace.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:51:7: warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
49 |
50 | /// Xcodeproj JSON decoder.
51 | class XcodeprojJSONDecoder: JSONDecoder {
   |       `- warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
52 |     /// Default init.
53 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:60:7: warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
58 |
59 | /// Xcodeproj property list decoder.
60 | class XcodeprojPropertyListDecoder: PropertyListDecoder {
   |       `- warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
61 |     /// Default init.
62 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
[69/109] Compiling SwiftXcodeProj XCWorkspaceData.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:51:7: warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
49 |
50 | /// Xcodeproj JSON decoder.
51 | class XcodeprojJSONDecoder: JSONDecoder {
   |       `- warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
52 |     /// Default init.
53 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:60:7: warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
58 |
59 | /// Xcodeproj property list decoder.
60 | class XcodeprojPropertyListDecoder: PropertyListDecoder {
   |       `- warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
61 |     /// Default init.
62 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
[70/109] Compiling SwiftXcodeProj XCWorkspaceDataElement.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:51:7: warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
49 |
50 | /// Xcodeproj JSON decoder.
51 | class XcodeprojJSONDecoder: JSONDecoder {
   |       `- warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
52 |     /// Default init.
53 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:60:7: warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
58 |
59 | /// Xcodeproj property list decoder.
60 | class XcodeprojPropertyListDecoder: PropertyListDecoder {
   |       `- warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
61 |     /// Default init.
62 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
[71/109] Compiling SwiftXcodeProj XCWorkspaceDataElementLocationType.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:51:7: warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
49 |
50 | /// Xcodeproj JSON decoder.
51 | class XcodeprojJSONDecoder: JSONDecoder {
   |       `- warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
52 |     /// Default init.
53 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:60:7: warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
58 |
59 | /// Xcodeproj property list decoder.
60 | class XcodeprojPropertyListDecoder: PropertyListDecoder {
   |       `- warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
61 |     /// Default init.
62 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
[72/109] Compiling SwiftXcodeProj XCWorkspaceDataFileRef.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:51:7: warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
49 |
50 | /// Xcodeproj JSON decoder.
51 | class XcodeprojJSONDecoder: JSONDecoder {
   |       `- warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
52 |     /// Default init.
53 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:60:7: warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
58 |
59 | /// Xcodeproj property list decoder.
60 | class XcodeprojPropertyListDecoder: PropertyListDecoder {
   |       `- warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
61 |     /// Default init.
62 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
[73/109] Compiling SwiftXcodeProj XCWorkspaceDataGroup.swift
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:51:7: warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
49 |
50 | /// Xcodeproj JSON decoder.
51 | class XcodeprojJSONDecoder: JSONDecoder {
   |       `- warning: class 'XcodeprojJSONDecoder' must restate inherited '@unchecked Sendable' conformance
52 |     /// Default init.
53 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
/host/spi-builder-workspace/Sources/SwiftXcodeProj/Utils/Decoders.swift:60:7: warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
58 |
59 | /// Xcodeproj property list decoder.
60 | class XcodeprojPropertyListDecoder: PropertyListDecoder {
   |       `- warning: class 'XcodeprojPropertyListDecoder' must restate inherited '@unchecked Sendable' conformance
61 |     /// Default init.
62 |     init(context: ProjectDecodingContext = ProjectDecodingContext()) {
[74/109] Compiling SwiftXcodeProj PBXReferenceProxy.swift
[75/109] Compiling SwiftXcodeProj PBXTarget.swift
[76/109] Compiling SwiftXcodeProj PBXTargetDependency.swift
[77/109] Compiling SwiftXcodeProj WorkspaceSettings.swift
[78/109] Compiling SwiftXcodeProj XCBreakpointList.swift
[79/109] Compiling SwiftXcodeProj XCDebugger.swift
[80/109] Compiling SwiftXcodeProj XCSharedData.swift
[81/109] Compiling SwiftXcodeProj XCUserData.swift
[82/109] Compiling SwiftXcodeProj Xcode.swift
[83/109] Compiling SwiftXcodeProj XcodeProj.swift
[84/109] Compiling SwiftXcodeProj Writable.swift
[85/109] Compiling SwiftXcodeProj XCScheme+AditionalOption.swift
[86/109] Compiling SwiftXcodeProj PBXOutputSettings.swift
[87/109] Compiling SwiftXcodeProj PBXProj.swift
[88/109] Compiling SwiftXcodeProj PBXProjEncoder.swift
[89/109] Compiling SwiftXcodeProj PBXProject.swift
[90/109] Compiling SwiftXcodeProj Equality.generated.swift
[91/109] Compiling SwiftXcodeProj Sourcery.swift
[92/109] Compiling SwiftXcodeProj XCRemoteSwiftPackageReference.swift
[93/109] Compiling SwiftXcodeProj XCSwiftPackageProductDependency.swift
[94/109] Compiling SwiftXcodeProj PBXAggregateTarget.swift
[95/109] Compiling SwiftXcodeProj PBXLegacyTarget.swift
[96/109] Compiling SwiftXcodeProj PBXNativeTarget.swift
[97/109] Compiling SwiftXcodeProj PBXProductType.swift
[98/109] Compiling SwiftXcodeProj XCScheme+AnalyzeAction.swift
[99/109] Compiling SwiftXcodeProj XCScheme+ArchiveAction.swift
[100/109] Compiling SwiftXcodeProj XCScheme+BuildAction.swift
[101/109] Compiling SwiftXcodeProj XCScheme+BuildableProductRunnable.swift
[102/109] Compiling SwiftXcodeProj XCScheme+BuildableReference.swift
[103/109] Compiling SwiftXcodeProj XCScheme+CommandLineArguments.swift
[104/109] Compiling SwiftXcodeProj XCScheme+EnvironmentVariable.swift
[105/109] Compiling SwiftXcodeProj XCScheme+ExecutionAction.swift
[106/109] Compiling SwiftXcodeProj XCScheme+LaunchAction.swift
[107/109] Compiling SwiftXcodeProj XCScheme+LocationScenarioReference.swift
[108/109] Compiling SwiftXcodeProj XCScheme+PathRunnable.swift
[109/109] Compiling SwiftXcodeProj XCScheme+ProfileAction.swift
Build complete! (20.46s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "aexml",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "4.6.1",
            "upper_bound" : "4.7.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/tadija/AEXML.git"
    },
    {
      "identity" : "pathkit",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "1.1.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/kylef/PathKit.git"
    }
  ],
  "manifest_display_name" : "SwiftXcodeProj",
  "name" : "SwiftXcodeProj",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "SwiftXcodeProj",
      "targets" : [
        "SwiftXcodeProj"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "XcodeProjTests",
      "module_type" : "SwiftTarget",
      "name" : "XcodeProjTests",
      "path" : "Tests/XcodeProjTests",
      "sources" : [
        "Extensions/AEXML+XcodeFormatTests.swift",
        "Extensions/Decodable+Dictionary.swift",
        "Extensions/Dictionary+ExtrasTests.swift",
        "Extensions/PathExtrasTests.swift",
        "Extensions/XCTestCase+Assertions.swift",
        "Extensions/XCTestCase+Shell.swift",
        "Extensions/XCTestCase+Temporary.swift",
        "Objects/BuildPhase/BuildPhaseTests.swift",
        "Objects/BuildPhase/PBXBuildFileTests.swift",
        "Objects/BuildPhase/PBXBuildPhaseTests.swift",
        "Objects/BuildPhase/PBXBuildRuleTests.swift",
        "Objects/BuildPhase/PBXCopyFilesBuildPhaseTests.swift",
        "Objects/BuildPhase/PBXFrameworksBuildPhaseTests.swift",
        "Objects/BuildPhase/PBXHeadersBuildPhaseTests.swift",
        "Objects/BuildPhase/PBXResourcesBuildPhaseTests.swift",
        "Objects/BuildPhase/PBXRezBuildPhaseTests.swift",
        "Objects/BuildPhase/PBXShellScriptBuildPhaseTests.swift",
        "Objects/BuildPhase/PBXSourcesBuildPhase+Fixtures.swift",
        "Objects/BuildPhase/PBXSourcesBuildPhaseTests.swift",
        "Objects/Configuration/XCBuildConfiguration+Fixtures.swift",
        "Objects/Configuration/XCBuildConfigurationTests.swift",
        "Objects/Configuration/XCConfigurationList+Fixtures.swift",
        "Objects/Configuration/XCConfigurationListTests.swift",
        "Objects/Files/PBXContainerItemProxyTests.swift",
        "Objects/Files/PBXFileElementTests.swift",
        "Objects/Files/PBXFileReference+Fixtures.swift",
        "Objects/Files/PBXFileReferenceTests.swift",
        "Objects/Files/PBXGroup+Fixtures.swift",
        "Objects/Files/PBXGroupTests.swift",
        "Objects/Files/PBXSourceTreeTests.swift",
        "Objects/Files/PBXVariantGroupTests.swift",
        "Objects/Files/XCVersionGroup+Fixtures.swift",
        "Objects/Files/XCVersionGroupTests.swift",
        "Objects/Project/PBXOutputSettingsTests.swift",
        "Objects/Project/PBXProj+Fixtures.swift",
        "Objects/Project/PBXProj+XCTest.swift",
        "Objects/Project/PBXProjEncoderTests.swift",
        "Objects/Project/PBXProjIntegrationTests.swift",
        "Objects/Project/PBXProjObjectsHelpersTests.swift",
        "Objects/Project/PBXProject+Fixtures.swift",
        "Objects/Project/PBXProjectTests.swift",
        "Objects/SwiftPackage/XCRemoteSwiftPackageReferenceTests.swift",
        "Objects/SwiftPackage/XCSwiftPackageProductDependencyTests.swift",
        "Objects/Targets/PBXAggregateTargetTests.swift",
        "Objects/Targets/PBXLegacyTargetTests.swift",
        "Objects/Targets/PBXNativeTargetTests.swift",
        "Objects/Targets/PBXProductTypeTests.swift",
        "Objects/Targets/PBXReferenceProxyTests.swift",
        "Objects/Targets/PBXTarget+Fixtures.swift",
        "Objects/Targets/PBXTargetDependencyTests.swift",
        "Objects/Targets/PBXTargetTests.swift",
        "Project/WorkspaceSettingsTests.swift",
        "Project/XCBreakpointListTests.swift",
        "Project/XCUserDataTests.swift",
        "Project/XcodeProjTests.swift",
        "Scheme/XCScheme+BuildableReferenceTests.swift",
        "Scheme/XCSchemeManagementTests.swift",
        "Scheme/XCSchemeTests.swift",
        "Tests/Fixtures.swift",
        "Tests/testWrite.swift",
        "Utils/BuildSettingsProviderTests.swift",
        "Utils/CommentedStringTests.swift",
        "Utils/ObjectReferenceTests.swift",
        "Utils/PBXBatchUpdaterTests.swift",
        "Utils/PlistValueTests.swift",
        "Utils/ReferenceGeneratorTests.swift",
        "Utils/XCConfigTests.swift",
        "Workspace/XCWorkspaceDataElementTests.swift",
        "Workspace/XCWorkspaceDataTests.swift",
        "Workspace/XCWorkspaceTests.swift"
      ],
      "target_dependencies" : [
        "SwiftXcodeProj"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftXcodeProj",
      "module_type" : "SwiftTarget",
      "name" : "SwiftXcodeProj",
      "path" : "Sources/SwiftXcodeProj",
      "product_dependencies" : [
        "PathKit",
        "AEXML"
      ],
      "product_memberships" : [
        "SwiftXcodeProj"
      ],
      "sources" : [
        "Errors/Errors.swift",
        "Extensions/AEXML+XcodeFormat.swift",
        "Extensions/Array+Extras.swift",
        "Extensions/Bool+Extras.swift",
        "Extensions/Dictionary+Enumerate.swift",
        "Extensions/Dictionary+Extras.swift",
        "Extensions/KeyedDecodingContainer+Additions.swift",
        "Extensions/NSRecursiveLock+Sync.swift",
        "Extensions/Path+Extras.swift",
        "Extensions/String+Utils.swift",
        "Extensions/String+md5.swift",
        "Objects/BuildPhase/BuildPhase.swift",
        "Objects/BuildPhase/PBXBuildFile.swift",
        "Objects/BuildPhase/PBXBuildPhase.swift",
        "Objects/BuildPhase/PBXBuildRule.swift",
        "Objects/BuildPhase/PBXCopyFilesBuildPhase.swift",
        "Objects/BuildPhase/PBXFrameworksBuildPhase.swift",
        "Objects/BuildPhase/PBXHeadersBuildPhase.swift",
        "Objects/BuildPhase/PBXResourcesBuildPhase.swift",
        "Objects/BuildPhase/PBXRezBuildPhase.swift",
        "Objects/BuildPhase/PBXShellScriptBuildPhase.swift",
        "Objects/BuildPhase/PBXSourcesBuildPhase.swift",
        "Objects/Configuration/BuildSettings.swift",
        "Objects/Configuration/XCBuildConfiguration.swift",
        "Objects/Configuration/XCConfigurationList.swift",
        "Objects/Files/PBXContainerItem.swift",
        "Objects/Files/PBXContainerItemProxy.swift",
        "Objects/Files/PBXFileElement.swift",
        "Objects/Files/PBXFileReference.swift",
        "Objects/Files/PBXGroup.swift",
        "Objects/Files/PBXSourceTree.swift",
        "Objects/Files/PBXVariantGroup.swift",
        "Objects/Files/XCVersionGroup.swift",
        "Objects/Project/PBXObject.swift",
        "Objects/Project/PBXObjectParser.swift",
        "Objects/Project/PBXObjectReference.swift",
        "Objects/Project/PBXObjects.swift",
        "Objects/Project/PBXOutputSettings.swift",
        "Objects/Project/PBXProj.swift",
        "Objects/Project/PBXProjEncoder.swift",
        "Objects/Project/PBXProject.swift",
        "Objects/Sourcery/Equality.generated.swift",
        "Objects/Sourcery/Sourcery.swift",
        "Objects/SwiftPackage/XCRemoteSwiftPackageReference.swift",
        "Objects/SwiftPackage/XCSwiftPackageProductDependency.swift",
        "Objects/Targets/PBXAggregateTarget.swift",
        "Objects/Targets/PBXLegacyTarget.swift",
        "Objects/Targets/PBXNativeTarget.swift",
        "Objects/Targets/PBXProductType.swift",
        "Objects/Targets/PBXReferenceProxy.swift",
        "Objects/Targets/PBXTarget.swift",
        "Objects/Targets/PBXTargetDependency.swift",
        "Project/WorkspaceSettings.swift",
        "Project/XCBreakpointList.swift",
        "Project/XCDebugger.swift",
        "Project/XCSharedData.swift",
        "Project/XCUserData.swift",
        "Project/Xcode.swift",
        "Project/XcodeProj.swift",
        "Protocols/Writable.swift",
        "Scheme/XCScheme+AditionalOption.swift",
        "Scheme/XCScheme+AnalyzeAction.swift",
        "Scheme/XCScheme+ArchiveAction.swift",
        "Scheme/XCScheme+BuildAction.swift",
        "Scheme/XCScheme+BuildableProductRunnable.swift",
        "Scheme/XCScheme+BuildableReference.swift",
        "Scheme/XCScheme+CommandLineArguments.swift",
        "Scheme/XCScheme+EnvironmentVariable.swift",
        "Scheme/XCScheme+ExecutionAction.swift",
        "Scheme/XCScheme+LaunchAction.swift",
        "Scheme/XCScheme+LocationScenarioReference.swift",
        "Scheme/XCScheme+PathRunnable.swift",
        "Scheme/XCScheme+ProfileAction.swift",
        "Scheme/XCScheme+RemoteRunnable.swift",
        "Scheme/XCScheme+Runnable.swift",
        "Scheme/XCScheme+SerialAction.swift",
        "Scheme/XCScheme+StoreKitConfigurationFileReference.swift",
        "Scheme/XCScheme+TestAction.swift",
        "Scheme/XCScheme+TestItem.swift",
        "Scheme/XCScheme+TestPlanReference.swift",
        "Scheme/XCScheme+TestableReference.swift",
        "Scheme/XCScheme.swift",
        "Scheme/XCSchemeManagement.swift",
        "Utils/BuildSettingsProvider.swift",
        "Utils/CommentedString.swift",
        "Utils/Decoders.swift",
        "Utils/JSONDecoding.swift",
        "Utils/PBXBatchUpdater.swift",
        "Utils/PlistValue.swift",
        "Utils/ReferenceGenerator.swift",
        "Utils/XCConfig.swift",
        "Workspace/XCWorkspace.swift",
        "Workspace/XCWorkspaceData.swift",
        "Workspace/XCWorkspaceDataElement.swift",
        "Workspace/XCWorkspaceDataElementLocationType.swift",
        "Workspace/XCWorkspaceDataFileRef.swift",
        "Workspace/XCWorkspaceDataGroup.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.2"
}
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
Done.