The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Failed to build swift-format, reference 601.0.0 (ffbb32), with Swift 6.1 for Android on 30 May 2025 16:13:14 UTC.

Build Command

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

Build Log

    |                          |- note: add '@MainActor' to make static property 'moveEndOfLineComment' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
829 |     "move end-of-line comment that exceeds the line length"
830 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:831:26: warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
829 |     "move end-of-line comment that exceeds the line length"
830 |
831 |   fileprivate static let addTrailingComma: Finding.Message =
    |                          |- warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'addTrailingComma' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
832 |     "add trailing comma to the last element in multiline collection literal"
833 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:834:26: warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
832 |     "add trailing comma to the last element in multiline collection literal"
833 |
834 |   fileprivate static let removeTrailingComma: Finding.Message =
    |                          |- warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeTrailingComma' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
835 |     "remove trailing comma from the last element in single line collection literal"
836 | }
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:213:14: warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
211 |
212 |   // Convenience overloads for the enum types
213 |   static let open = Token.open(.inconsistent, 0)
    |              |- warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'open' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
214 |
215 |   static func open(_ breakStyle: GroupBreakStyle, _ offset: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:219:14: warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
217 |   }
218 |
219 |   static let space = Token.space(size: 1, flexible: false)
    |              |- warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'space' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 |
221 |   static func space(size: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:225:14: warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
223 |   }
224 |
225 |   static let `break` = Token.break(.continue, size: 1, newlines: .elective)
    |              |- warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'break' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 |
227 |   static func `break`(_ kind: BreakKind, size: Int = 1) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:462:26: warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
460 |
461 | extension Finding.Message {
462 |   fileprivate static let trailingWhitespaceError: Finding.Message = "remove trailing whitespace"
    |                          |- warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'trailingWhitespaceError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 |
464 |   fileprivate static func indentationError(
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:506:26: warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
504 |   }
505 |
506 |   fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
    |                          |- warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'spacingCharError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
507 |
508 |   fileprivate static let removeLineError: Finding.Message = "remove line break"
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:508:26: warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
506 |   fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
507 |
508 |   fileprivate static let removeLineError: Finding.Message = "remove line break"
    |                          |- warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeLineError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
509 |
510 |   fileprivate static func addLinesError(_ lines: Int) -> Finding.Message {
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:515:26: warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
513 |   }
514 |
515 |   fileprivate static let lineLengthError: Finding.Message = "line is too long"
    |                          |- warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'lineLengthError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
516 | }
517 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
[949/986] Compiling SwiftFormat PrettyPrintFindingCategory.swift
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:828:26: warning: static property 'moveEndOfLineComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
826 |
827 | extension Finding.Message {
828 |   fileprivate static let moveEndOfLineComment: Finding.Message =
    |                          |- warning: static property 'moveEndOfLineComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'moveEndOfLineComment' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
829 |     "move end-of-line comment that exceeds the line length"
830 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:831:26: warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
829 |     "move end-of-line comment that exceeds the line length"
830 |
831 |   fileprivate static let addTrailingComma: Finding.Message =
    |                          |- warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'addTrailingComma' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
832 |     "add trailing comma to the last element in multiline collection literal"
833 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:834:26: warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
832 |     "add trailing comma to the last element in multiline collection literal"
833 |
834 |   fileprivate static let removeTrailingComma: Finding.Message =
    |                          |- warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeTrailingComma' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
835 |     "remove trailing comma from the last element in single line collection literal"
836 | }
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:213:14: warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
211 |
212 |   // Convenience overloads for the enum types
213 |   static let open = Token.open(.inconsistent, 0)
    |              |- warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'open' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
214 |
215 |   static func open(_ breakStyle: GroupBreakStyle, _ offset: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:219:14: warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
217 |   }
218 |
219 |   static let space = Token.space(size: 1, flexible: false)
    |              |- warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'space' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 |
221 |   static func space(size: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:225:14: warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
223 |   }
224 |
225 |   static let `break` = Token.break(.continue, size: 1, newlines: .elective)
    |              |- warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'break' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 |
227 |   static func `break`(_ kind: BreakKind, size: Int = 1) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:462:26: warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
460 |
461 | extension Finding.Message {
462 |   fileprivate static let trailingWhitespaceError: Finding.Message = "remove trailing whitespace"
    |                          |- warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'trailingWhitespaceError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 |
464 |   fileprivate static func indentationError(
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:506:26: warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
504 |   }
505 |
506 |   fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
    |                          |- warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'spacingCharError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
507 |
508 |   fileprivate static let removeLineError: Finding.Message = "remove line break"
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:508:26: warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
506 |   fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
507 |
508 |   fileprivate static let removeLineError: Finding.Message = "remove line break"
    |                          |- warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeLineError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
509 |
510 |   fileprivate static func addLinesError(_ lines: Int) -> Finding.Message {
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:515:26: warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
513 |   }
514 |
515 |   fileprivate static let lineLengthError: Finding.Message = "line is too long"
    |                          |- warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'lineLengthError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
516 | }
517 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
[950/986] Compiling SwiftFormat Token.swift
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:828:26: warning: static property 'moveEndOfLineComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
826 |
827 | extension Finding.Message {
828 |   fileprivate static let moveEndOfLineComment: Finding.Message =
    |                          |- warning: static property 'moveEndOfLineComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'moveEndOfLineComment' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
829 |     "move end-of-line comment that exceeds the line length"
830 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:831:26: warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
829 |     "move end-of-line comment that exceeds the line length"
830 |
831 |   fileprivate static let addTrailingComma: Finding.Message =
    |                          |- warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'addTrailingComma' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
832 |     "add trailing comma to the last element in multiline collection literal"
833 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:834:26: warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
832 |     "add trailing comma to the last element in multiline collection literal"
833 |
834 |   fileprivate static let removeTrailingComma: Finding.Message =
    |                          |- warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeTrailingComma' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
835 |     "remove trailing comma from the last element in single line collection literal"
836 | }
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:213:14: warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
211 |
212 |   // Convenience overloads for the enum types
213 |   static let open = Token.open(.inconsistent, 0)
    |              |- warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'open' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
214 |
215 |   static func open(_ breakStyle: GroupBreakStyle, _ offset: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:219:14: warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
217 |   }
218 |
219 |   static let space = Token.space(size: 1, flexible: false)
    |              |- warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'space' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 |
221 |   static func space(size: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:225:14: warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
223 |   }
224 |
225 |   static let `break` = Token.break(.continue, size: 1, newlines: .elective)
    |              |- warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'break' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 |
227 |   static func `break`(_ kind: BreakKind, size: Int = 1) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:462:26: warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
460 |
461 | extension Finding.Message {
462 |   fileprivate static let trailingWhitespaceError: Finding.Message = "remove trailing whitespace"
    |                          |- warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'trailingWhitespaceError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 |
464 |   fileprivate static func indentationError(
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:506:26: warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
504 |   }
505 |
506 |   fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
    |                          |- warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'spacingCharError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
507 |
508 |   fileprivate static let removeLineError: Finding.Message = "remove line break"
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:508:26: warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
506 |   fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
507 |
508 |   fileprivate static let removeLineError: Finding.Message = "remove line break"
    |                          |- warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeLineError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
509 |
510 |   fileprivate static func addLinesError(_ lines: Int) -> Finding.Message {
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:515:26: warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
513 |   }
514 |
515 |   fileprivate static let lineLengthError: Finding.Message = "line is too long"
    |                          |- warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'lineLengthError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
516 | }
517 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
[951/986] Compiling SwiftFormat TokenStreamCreator.swift
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:828:26: warning: static property 'moveEndOfLineComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
826 |
827 | extension Finding.Message {
828 |   fileprivate static let moveEndOfLineComment: Finding.Message =
    |                          |- warning: static property 'moveEndOfLineComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'moveEndOfLineComment' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
829 |     "move end-of-line comment that exceeds the line length"
830 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:831:26: warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
829 |     "move end-of-line comment that exceeds the line length"
830 |
831 |   fileprivate static let addTrailingComma: Finding.Message =
    |                          |- warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'addTrailingComma' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
832 |     "add trailing comma to the last element in multiline collection literal"
833 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:834:26: warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
832 |     "add trailing comma to the last element in multiline collection literal"
833 |
834 |   fileprivate static let removeTrailingComma: Finding.Message =
    |                          |- warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeTrailingComma' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
835 |     "remove trailing comma from the last element in single line collection literal"
836 | }
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:213:14: warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
211 |
212 |   // Convenience overloads for the enum types
213 |   static let open = Token.open(.inconsistent, 0)
    |              |- warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'open' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
214 |
215 |   static func open(_ breakStyle: GroupBreakStyle, _ offset: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:219:14: warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
217 |   }
218 |
219 |   static let space = Token.space(size: 1, flexible: false)
    |              |- warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'space' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 |
221 |   static func space(size: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:225:14: warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
223 |   }
224 |
225 |   static let `break` = Token.break(.continue, size: 1, newlines: .elective)
    |              |- warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'break' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 |
227 |   static func `break`(_ kind: BreakKind, size: Int = 1) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:462:26: warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
460 |
461 | extension Finding.Message {
462 |   fileprivate static let trailingWhitespaceError: Finding.Message = "remove trailing whitespace"
    |                          |- warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'trailingWhitespaceError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 |
464 |   fileprivate static func indentationError(
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:506:26: warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
504 |   }
505 |
506 |   fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
    |                          |- warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'spacingCharError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
507 |
508 |   fileprivate static let removeLineError: Finding.Message = "remove line break"
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:508:26: warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
506 |   fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
507 |
508 |   fileprivate static let removeLineError: Finding.Message = "remove line break"
    |                          |- warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeLineError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
509 |
510 |   fileprivate static func addLinesError(_ lines: Int) -> Finding.Message {
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:515:26: warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
513 |   }
514 |
515 |   fileprivate static let lineLengthError: Finding.Message = "line is too long"
    |                          |- warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'lineLengthError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
516 | }
517 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
[952/986] Compiling SwiftFormat Verbatim.swift
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:828:26: warning: static property 'moveEndOfLineComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
826 |
827 | extension Finding.Message {
828 |   fileprivate static let moveEndOfLineComment: Finding.Message =
    |                          |- warning: static property 'moveEndOfLineComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'moveEndOfLineComment' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
829 |     "move end-of-line comment that exceeds the line length"
830 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:831:26: warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
829 |     "move end-of-line comment that exceeds the line length"
830 |
831 |   fileprivate static let addTrailingComma: Finding.Message =
    |                          |- warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'addTrailingComma' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
832 |     "add trailing comma to the last element in multiline collection literal"
833 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:834:26: warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
832 |     "add trailing comma to the last element in multiline collection literal"
833 |
834 |   fileprivate static let removeTrailingComma: Finding.Message =
    |                          |- warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeTrailingComma' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
835 |     "remove trailing comma from the last element in single line collection literal"
836 | }
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:213:14: warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
211 |
212 |   // Convenience overloads for the enum types
213 |   static let open = Token.open(.inconsistent, 0)
    |              |- warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'open' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
214 |
215 |   static func open(_ breakStyle: GroupBreakStyle, _ offset: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:219:14: warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
217 |   }
218 |
219 |   static let space = Token.space(size: 1, flexible: false)
    |              |- warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'space' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 |
221 |   static func space(size: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:225:14: warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
223 |   }
224 |
225 |   static let `break` = Token.break(.continue, size: 1, newlines: .elective)
    |              |- warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'break' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 |
227 |   static func `break`(_ kind: BreakKind, size: Int = 1) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:462:26: warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
460 |
461 | extension Finding.Message {
462 |   fileprivate static let trailingWhitespaceError: Finding.Message = "remove trailing whitespace"
    |                          |- warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'trailingWhitespaceError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 |
464 |   fileprivate static func indentationError(
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:506:26: warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
504 |   }
505 |
506 |   fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
    |                          |- warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'spacingCharError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
507 |
508 |   fileprivate static let removeLineError: Finding.Message = "remove line break"
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:508:26: warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
506 |   fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
507 |
508 |   fileprivate static let removeLineError: Finding.Message = "remove line break"
    |                          |- warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeLineError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
509 |
510 |   fileprivate static func addLinesError(_ lines: Int) -> Finding.Message {
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:515:26: warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
513 |   }
514 |
515 |   fileprivate static let lineLengthError: Finding.Message = "line is too long"
    |                          |- warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'lineLengthError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
516 | }
517 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
[953/986] Compiling SwiftFormat WhitespaceFindingCategory.swift
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:828:26: warning: static property 'moveEndOfLineComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
826 |
827 | extension Finding.Message {
828 |   fileprivate static let moveEndOfLineComment: Finding.Message =
    |                          |- warning: static property 'moveEndOfLineComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'moveEndOfLineComment' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
829 |     "move end-of-line comment that exceeds the line length"
830 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:831:26: warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
829 |     "move end-of-line comment that exceeds the line length"
830 |
831 |   fileprivate static let addTrailingComma: Finding.Message =
    |                          |- warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'addTrailingComma' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
832 |     "add trailing comma to the last element in multiline collection literal"
833 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:834:26: warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
832 |     "add trailing comma to the last element in multiline collection literal"
833 |
834 |   fileprivate static let removeTrailingComma: Finding.Message =
    |                          |- warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeTrailingComma' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
835 |     "remove trailing comma from the last element in single line collection literal"
836 | }
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:213:14: warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
211 |
212 |   // Convenience overloads for the enum types
213 |   static let open = Token.open(.inconsistent, 0)
    |              |- warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'open' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
214 |
215 |   static func open(_ breakStyle: GroupBreakStyle, _ offset: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:219:14: warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
217 |   }
218 |
219 |   static let space = Token.space(size: 1, flexible: false)
    |              |- warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'space' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 |
221 |   static func space(size: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:225:14: warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
223 |   }
224 |
225 |   static let `break` = Token.break(.continue, size: 1, newlines: .elective)
    |              |- warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'break' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 |
227 |   static func `break`(_ kind: BreakKind, size: Int = 1) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:462:26: warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
460 |
461 | extension Finding.Message {
462 |   fileprivate static let trailingWhitespaceError: Finding.Message = "remove trailing whitespace"
    |                          |- warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'trailingWhitespaceError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 |
464 |   fileprivate static func indentationError(
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:506:26: warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
504 |   }
505 |
506 |   fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
    |                          |- warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'spacingCharError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
507 |
508 |   fileprivate static let removeLineError: Finding.Message = "remove line break"
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:508:26: warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
506 |   fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
507 |
508 |   fileprivate static let removeLineError: Finding.Message = "remove line break"
    |                          |- warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeLineError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
509 |
510 |   fileprivate static func addLinesError(_ lines: Int) -> Finding.Message {
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:515:26: warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
513 |   }
514 |
515 |   fileprivate static let lineLengthError: Finding.Message = "line is too long"
    |                          |- warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'lineLengthError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
516 | }
517 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
[954/986] Compiling SwiftFormat WhitespaceLinter.swift
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:828:26: warning: static property 'moveEndOfLineComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
826 |
827 | extension Finding.Message {
828 |   fileprivate static let moveEndOfLineComment: Finding.Message =
    |                          |- warning: static property 'moveEndOfLineComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'moveEndOfLineComment' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
829 |     "move end-of-line comment that exceeds the line length"
830 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:831:26: warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
829 |     "move end-of-line comment that exceeds the line length"
830 |
831 |   fileprivate static let addTrailingComma: Finding.Message =
    |                          |- warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'addTrailingComma' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
832 |     "add trailing comma to the last element in multiline collection literal"
833 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:834:26: warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
832 |     "add trailing comma to the last element in multiline collection literal"
833 |
834 |   fileprivate static let removeTrailingComma: Finding.Message =
    |                          |- warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeTrailingComma' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
835 |     "remove trailing comma from the last element in single line collection literal"
836 | }
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:213:14: warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
211 |
212 |   // Convenience overloads for the enum types
213 |   static let open = Token.open(.inconsistent, 0)
    |              |- warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'open' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
214 |
215 |   static func open(_ breakStyle: GroupBreakStyle, _ offset: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:219:14: warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
217 |   }
218 |
219 |   static let space = Token.space(size: 1, flexible: false)
    |              |- warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'space' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 |
221 |   static func space(size: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:225:14: warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
223 |   }
224 |
225 |   static let `break` = Token.break(.continue, size: 1, newlines: .elective)
    |              |- warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'break' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 |
227 |   static func `break`(_ kind: BreakKind, size: Int = 1) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:462:26: warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
460 |
461 | extension Finding.Message {
462 |   fileprivate static let trailingWhitespaceError: Finding.Message = "remove trailing whitespace"
    |                          |- warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'trailingWhitespaceError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 |
464 |   fileprivate static func indentationError(
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:506:26: warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
504 |   }
505 |
506 |   fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
    |                          |- warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'spacingCharError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
507 |
508 |   fileprivate static let removeLineError: Finding.Message = "remove line break"
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:508:26: warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
506 |   fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
507 |
508 |   fileprivate static let removeLineError: Finding.Message = "remove line break"
    |                          |- warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeLineError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
509 |
510 |   fileprivate static func addLinesError(_ lines: Int) -> Finding.Message {
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:515:26: warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
513 |   }
514 |
515 |   fileprivate static let lineLengthError: Finding.Message = "line is too long"
    |                          |- warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'lineLengthError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
516 | }
517 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
[955/986] Compiling SwiftFormat AllPublicDeclarationsHaveDocumentation.swift
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:828:26: warning: static property 'moveEndOfLineComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
826 |
827 | extension Finding.Message {
828 |   fileprivate static let moveEndOfLineComment: Finding.Message =
    |                          |- warning: static property 'moveEndOfLineComment' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'moveEndOfLineComment' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
829 |     "move end-of-line comment that exceeds the line length"
830 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:831:26: warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
829 |     "move end-of-line comment that exceeds the line length"
830 |
831 |   fileprivate static let addTrailingComma: Finding.Message =
    |                          |- warning: static property 'addTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'addTrailingComma' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
832 |     "add trailing comma to the last element in multiline collection literal"
833 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/PrettyPrint.swift:834:26: warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
832 |     "add trailing comma to the last element in multiline collection literal"
833 |
834 |   fileprivate static let removeTrailingComma: Finding.Message =
    |                          |- warning: static property 'removeTrailingComma' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeTrailingComma' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
835 |     "remove trailing comma from the last element in single line collection literal"
836 | }
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:213:14: warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
211 |
212 |   // Convenience overloads for the enum types
213 |   static let open = Token.open(.inconsistent, 0)
    |              |- warning: static property 'open' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'open' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
214 |
215 |   static func open(_ breakStyle: GroupBreakStyle, _ offset: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:219:14: warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
217 |   }
218 |
219 |   static let space = Token.space(size: 1, flexible: false)
    |              |- warning: static property 'space' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'space' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
220 |
221 |   static func space(size: Int) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/Token.swift:225:14: warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
179 | }
180 |
181 | enum Token {
    |      `- note: consider making enum 'Token' conform to the 'Sendable' protocol
182 |   case syntax(String)
183 |   case open(GroupBreakStyle)
    :
223 |   }
224 |
225 |   static let `break` = Token.break(.continue, size: 1, newlines: .elective)
    |              |- warning: static property 'break' is not concurrency-safe because non-'Sendable' type 'Token' may have shared mutable state; this is an error in the Swift 6 language mode
    |              |- note: add '@MainActor' to make static property 'break' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
226 |
227 |   static func `break`(_ kind: BreakKind, size: Int = 1) -> Token {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:462:26: warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
460 |
461 | extension Finding.Message {
462 |   fileprivate static let trailingWhitespaceError: Finding.Message = "remove trailing whitespace"
    |                          |- warning: static property 'trailingWhitespaceError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'trailingWhitespaceError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
463 |
464 |   fileprivate static func indentationError(
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:506:26: warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
504 |   }
505 |
506 |   fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
    |                          |- warning: static property 'spacingCharError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'spacingCharError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
507 |
508 |   fileprivate static let removeLineError: Finding.Message = "remove line break"
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:508:26: warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
506 |   fileprivate static let spacingCharError: Finding.Message = "use spaces for spacing"
507 |
508 |   fileprivate static let removeLineError: Finding.Message = "remove line break"
    |                          |- warning: static property 'removeLineError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'removeLineError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
509 |
510 |   fileprivate static func addLinesError(_ lines: Int) -> Finding.Message {
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
/host/spi-builder-workspace/Sources/SwiftFormat/PrettyPrint/WhitespaceLinter.swift:515:26: warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
513 |   }
514 |
515 |   fileprivate static let lineLengthError: Finding.Message = "line is too long"
    |                          |- warning: static property 'lineLengthError' is not concurrency-safe because non-'Sendable' type 'Finding.Message' may have shared mutable state; this is an error in the Swift 6 language mode
    |                          |- note: add '@MainActor' to make static property 'lineLengthError' part of global actor 'MainActor'
    |                          `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
516 | }
517 |
/host/spi-builder-workspace/Sources/SwiftFormat/API/Finding.swift:48:17: note: consider making struct 'Message' conform to the 'Sendable' protocol
 46 |   /// an `extension` of the `Finding.Message` type and add `static` properties or functions of type
 47 |   /// `Finding.Message`; these can be initialized using string literals or string interpolations.
 48 |   public struct Message:
    |                 `- note: consider making struct 'Message' conform to the 'Sendable' protocol
 49 |     CustomStringConvertible, ExpressibleByStringLiteral, ExpressibleByStringInterpolation
 50 |   {
[956/986] Compiling SwiftFormat Configuration+Default.swift
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
[957/986] Compiling SwiftFormat Configuration.swift
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
[958/986] Compiling SwiftFormat DebugOptions.swift
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
[959/986] Compiling SwiftFormat Finding.swift
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
[960/986] Compiling SwiftFormat FindingCategorizing.swift
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
[961/986] Compiling SwiftFormat Indent.swift
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
[962/986] Compiling SwiftFormat Selection.swift
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
[963/986] Compiling SwiftFormat SwiftFormatError.swift
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
[964/986] Compiling SwiftFormat SwiftFormatter.swift
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
[965/986] Compiling SwiftFormat SwiftLinter.swift
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
[966/986] Compiling SwiftFormat Context.swift
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
[967/986] Compiling SwiftFormat DocumentationComment.swift
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:19:21: warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
18 |   /// pipeline.
19 |   public static let disablePrettyPrint = DebugOptions(rawValue: 1 << 0)
   |                     |- warning: static property 'disablePrettyPrint' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'disablePrettyPrint' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
/host/spi-builder-workspace/Sources/SwiftFormat/API/DebugOptions.swift:22:21: warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
13 | /// Advanced options that are useful when debugging and developing the formatter, but are otherwise
14 | /// not meant for general use.
15 | public struct DebugOptions: OptionSet {
   |               `- note: consider making struct 'DebugOptions' conform to the 'Sendable' protocol
16 |
17 |   /// Disables the pretty-printer pass entirely, executing only the syntax-transforming rules in the
   :
20 |
21 |   /// Dumps a verbose representation of the raw pretty-printer token stream.
22 |   public static let dumpTokenStream = DebugOptions(rawValue: 1 << 1)
   |                     |- warning: static property 'dumpTokenStream' is not concurrency-safe because non-'Sendable' type 'DebugOptions' may have shared mutable state; this is an error in the Swift 6 language mode
   |                     |- note: add '@MainActor' to make static property 'dumpTokenStream' part of global actor 'MainActor'
   |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
23 |
24 |   public let rawValue: Int
[968/986] Compiling SwiftFormat DocumentationCommentText.swift
[969/986] Compiling SwiftFormat Finding+Convenience.swift
[970/986] Compiling SwiftFormat FindingEmitter.swift
[971/986] Compiling SwiftFormat FormatPipeline.swift
[972/986] Compiling SwiftFormat FunctionDeclSyntax+Convenience.swift
[973/986] Compiling SwiftFormat ImportsXCTestVisitor.swift
[974/986] Compiling SwiftFormat LazySplitSequence.swift
[975/986] Compiling SwiftFormat LintPipeline.swift
[976/986] Compiling SwiftFormat ModifierListSyntax+Convenience.swift
[977/986] Compiling SwiftFormat Parsing.swift
[978/986] Compiling SwiftFormat Pipelines+Generated.swift
[979/986] Compiling SwiftFormat RememberingIterator.swift
[980/987] Wrapping AST for SwiftFormat for debugging
[982/1018] Compiling generate_swift_format RuleRegistryGenerator.swift
[983/1018] Compiling generate_swift_format Syntax+Convenience.swift
[984/1019] Compiling _SwiftFormatTestSupport Parsing.swift
[985/1019] Compiling swift_format DiagnosticsEngine.swift
[986/1019] Compiling swift_format FileHandleTextOutputStream.swift
[987/1021] Compiling swift_format FormatError.swift
[988/1021] Compiling swift_format StderrDiagnosticPrinter.swift
[989/1021] Compiling generate_swift_format RuleNameCacheGenerator.swift
[990/1021] Compiling generate_swift_format RuleDocumentationGenerator.swift
[991/1021] Compiling swift_format SwiftFormatCommand.swift
/host/spi-builder-workspace/Sources/swift-format/SwiftFormatCommand.swift:19:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 | @main
18 | struct SwiftFormatCommand: ParsableCommand {
19 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     commandName: "swift-format",
21 |     abstract: "Format or lint Swift source code",
[992/1021] Compiling swift_format Diagnostic.swift
/host/spi-builder-workspace/Sources/swift-format/SwiftFormatCommand.swift:19:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 | @main
18 | struct SwiftFormatCommand: ParsableCommand {
19 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     commandName: "swift-format",
21 |     abstract: "Format or lint Swift source code",
[993/1021] Compiling swift_format TTY.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/TTY.swift:27:10: error: cannot find 'isatty' in scope
25 |     return false
26 |   }
27 |   return isatty(fileHandle.fileDescriptor) != 0
   |          `- error: cannot find 'isatty' in scope
28 |   #endif
29 | }
[994/1021] Compiling swift_format VersionOptions.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/TTY.swift:27:10: error: cannot find 'isatty' in scope
25 |     return false
26 |   }
27 |   return isatty(fileHandle.fileDescriptor) != 0
   |          `- error: cannot find 'isatty' in scope
28 |   #endif
29 | }
[995/1021] Compiling generate_swift_format main.swift
[996/1021] Compiling _SwiftFormatTestSupport MarkedText.swift
[997/1021] Compiling _SwiftFormatTestSupport FindingSpec.swift
[998/1021] Compiling _SwiftFormatTestSupport Configuration+Testing.swift
[999/1021] Emitting module _SwiftFormatTestSupport
[1000/1021] Compiling _SwiftFormatTestSupport DiagnosingTestCase.swift
[1002/1022] Compiling generate_swift_format PipelineGenerator.swift
[1003/1022] Compiling generate_swift_format FileGenerator.swift
[1004/1022] Emitting module generate_swift_format
[1005/1022] Compiling generate_swift_format RuleCollector.swift
[1006/1022] Compiling swift_format LintFrontend.swift
/host/spi-builder-workspace/Sources/swift-format/Subcommands/DumpConfiguration.swift:20:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 |   /// Dumps the tool's default configuration in JSON format to standard output.
19 |   struct DumpConfiguration: ParsableCommand {
20 |     static var configuration = CommandConfiguration(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |       abstract: "Dump the default configuration in JSON format to standard output"
22 |     )
[1007/1022] Compiling swift_format PrintVersion.swift
/host/spi-builder-workspace/Sources/swift-format/Subcommands/DumpConfiguration.swift:20:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 |   /// Dumps the tool's default configuration in JSON format to standard output.
19 |   struct DumpConfiguration: ParsableCommand {
20 |     static var configuration = CommandConfiguration(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |       abstract: "Dump the default configuration in JSON format to standard output"
22 |     )
[1008/1022] Compiling swift_format DumpConfiguration.swift
/host/spi-builder-workspace/Sources/swift-format/Subcommands/DumpConfiguration.swift:20:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 |   /// Dumps the tool's default configuration in JSON format to standard output.
19 |   struct DumpConfiguration: ParsableCommand {
20 |     static var configuration = CommandConfiguration(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |       abstract: "Dump the default configuration in JSON format to standard output"
22 |     )
[1010/1023] Compiling swift_format ConfigurationLoader.swift
/host/spi-builder-workspace/Sources/swift-format/Frontend/Frontend.swift:171:9: warning: capture of 'self' with non-sendable type 'Frontend' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 16 | import SwiftSyntax
 17 |
 18 | class Frontend {
    |       `- note: class 'Frontend' does not conform to the 'Sendable' protocol
 19 |   /// Represents a file to be processed by the frontend and any file-specific options associated
 20 |   /// with it.
    :
169 |         .compactMap(openAndPrepareFile)
170 |       DispatchQueue.concurrentPerform(iterations: filesToProcess.count) { index in
171 |         processFile(filesToProcess[index])
    |         `- warning: capture of 'self' with non-sendable type 'Frontend' in a '@Sendable' closure; this is an error in the Swift 6 language mode
172 |       }
173 |     } else {
/host/spi-builder-workspace/Sources/swift-format/Frontend/Frontend.swift:171:21: warning: capture of 'filesToProcess' with non-sendable type '[Frontend.FileToProcess]' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 19 |   /// Represents a file to be processed by the frontend and any file-specific options associated
 20 |   /// with it.
 21 |   final class FileToProcess {
    |               `- note: class 'FileToProcess' does not conform to the 'Sendable' protocol
 22 |     /// An open file handle to the source code of the file.
 23 |     private let fileHandle: FileHandle
    :
169 |         .compactMap(openAndPrepareFile)
170 |       DispatchQueue.concurrentPerform(iterations: filesToProcess.count) { index in
171 |         processFile(filesToProcess[index])
    |                     `- warning: capture of 'filesToProcess' with non-sendable type '[Frontend.FileToProcess]' in a '@Sendable' closure; this is an error in the Swift 6 language mode
172 |       }
173 |     } else {
[1011/1023] Compiling swift_format FormatFrontend.swift
/host/spi-builder-workspace/Sources/swift-format/Frontend/Frontend.swift:171:9: warning: capture of 'self' with non-sendable type 'Frontend' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 16 | import SwiftSyntax
 17 |
 18 | class Frontend {
    |       `- note: class 'Frontend' does not conform to the 'Sendable' protocol
 19 |   /// Represents a file to be processed by the frontend and any file-specific options associated
 20 |   /// with it.
    :
169 |         .compactMap(openAndPrepareFile)
170 |       DispatchQueue.concurrentPerform(iterations: filesToProcess.count) { index in
171 |         processFile(filesToProcess[index])
    |         `- warning: capture of 'self' with non-sendable type 'Frontend' in a '@Sendable' closure; this is an error in the Swift 6 language mode
172 |       }
173 |     } else {
/host/spi-builder-workspace/Sources/swift-format/Frontend/Frontend.swift:171:21: warning: capture of 'filesToProcess' with non-sendable type '[Frontend.FileToProcess]' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 19 |   /// Represents a file to be processed by the frontend and any file-specific options associated
 20 |   /// with it.
 21 |   final class FileToProcess {
    |               `- note: class 'FileToProcess' does not conform to the 'Sendable' protocol
 22 |     /// An open file handle to the source code of the file.
 23 |     private let fileHandle: FileHandle
    :
169 |         .compactMap(openAndPrepareFile)
170 |       DispatchQueue.concurrentPerform(iterations: filesToProcess.count) { index in
171 |         processFile(filesToProcess[index])
    |                     `- warning: capture of 'filesToProcess' with non-sendable type '[Frontend.FileToProcess]' in a '@Sendable' closure; this is an error in the Swift 6 language mode
172 |       }
173 |     } else {
[1012/1023] Compiling swift_format Frontend.swift
/host/spi-builder-workspace/Sources/swift-format/Frontend/Frontend.swift:171:9: warning: capture of 'self' with non-sendable type 'Frontend' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 16 | import SwiftSyntax
 17 |
 18 | class Frontend {
    |       `- note: class 'Frontend' does not conform to the 'Sendable' protocol
 19 |   /// Represents a file to be processed by the frontend and any file-specific options associated
 20 |   /// with it.
    :
169 |         .compactMap(openAndPrepareFile)
170 |       DispatchQueue.concurrentPerform(iterations: filesToProcess.count) { index in
171 |         processFile(filesToProcess[index])
    |         `- warning: capture of 'self' with non-sendable type 'Frontend' in a '@Sendable' closure; this is an error in the Swift 6 language mode
172 |       }
173 |     } else {
/host/spi-builder-workspace/Sources/swift-format/Frontend/Frontend.swift:171:21: warning: capture of 'filesToProcess' with non-sendable type '[Frontend.FileToProcess]' in a '@Sendable' closure; this is an error in the Swift 6 language mode
 19 |   /// Represents a file to be processed by the frontend and any file-specific options associated
 20 |   /// with it.
 21 |   final class FileToProcess {
    |               `- note: class 'FileToProcess' does not conform to the 'Sendable' protocol
 22 |     /// An open file handle to the source code of the file.
 23 |     private let fileHandle: FileHandle
    :
169 |         .compactMap(openAndPrepareFile)
170 |       DispatchQueue.concurrentPerform(iterations: filesToProcess.count) { index in
171 |         processFile(filesToProcess[index])
    |                     `- warning: capture of 'filesToProcess' with non-sendable type '[Frontend.FileToProcess]' in a '@Sendable' closure; this is an error in the Swift 6 language mode
172 |       }
173 |     } else {
[1013/1023] Emitting module swift_format
/host/spi-builder-workspace/Sources/swift-format/Subcommands/DumpConfiguration.swift:20:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 |   /// Dumps the tool's default configuration in JSON format to standard output.
19 |   struct DumpConfiguration: ParsableCommand {
20 |     static var configuration = CommandConfiguration(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 |       abstract: "Dump the default configuration in JSON format to standard output"
22 |     )
/host/spi-builder-workspace/Sources/swift-format/Subcommands/Format.swift:18:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 |   /// Formats one or more files containing Swift code.
17 |   struct Format: ParsableCommand {
18 |     static var configuration = CommandConfiguration(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |       abstract: "Format Swift source code",
20 |       discussion: "When no files are specified, it expects the source from standard input."
/host/spi-builder-workspace/Sources/swift-format/Subcommands/Lint.swift:18:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 |   /// Emits style diagnostics for one or more files containing Swift code.
17 |   struct Lint: ParsableCommand {
18 |     static var configuration = CommandConfiguration(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |       abstract: "Diagnose style issues in Swift source code",
20 |       discussion: "When no files are specified, it expects the source from standard input."
/host/spi-builder-workspace/Sources/swift-format/SwiftFormatCommand.swift:19:14: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
17 | @main
18 | struct SwiftFormatCommand: ParsableCommand {
19 |   static var configuration = CommandConfiguration(
   |              |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
20 |     commandName: "swift-format",
21 |     abstract: "Format or lint Swift source code",
[1014/1023] Compiling swift_format LintFormatOptions.swift
[1015/1023] Compiling swift_format PerformanceMeasurement.swift
[1016/1023] Compiling swift_format Format.swift
/host/spi-builder-workspace/Sources/swift-format/Subcommands/Format.swift:18:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 |   /// Formats one or more files containing Swift code.
17 |   struct Format: ParsableCommand {
18 |     static var configuration = CommandConfiguration(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |       abstract: "Format Swift source code",
20 |       discussion: "When no files are specified, it expects the source from standard input."
/host/spi-builder-workspace/Sources/swift-format/Subcommands/Lint.swift:18:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 |   /// Emits style diagnostics for one or more files containing Swift code.
17 |   struct Lint: ParsableCommand {
18 |     static var configuration = CommandConfiguration(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |       abstract: "Diagnose style issues in Swift source code",
20 |       discussion: "When no files are specified, it expects the source from standard input."
[1017/1023] Compiling swift_format Lint.swift
/host/spi-builder-workspace/Sources/swift-format/Subcommands/Format.swift:18:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 |   /// Formats one or more files containing Swift code.
17 |   struct Format: ParsableCommand {
18 |     static var configuration = CommandConfiguration(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |       abstract: "Format Swift source code",
20 |       discussion: "When no files are specified, it expects the source from standard input."
/host/spi-builder-workspace/Sources/swift-format/Subcommands/Lint.swift:18:16: warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
16 |   /// Emits style diagnostics for one or more files containing Swift code.
17 |   struct Lint: ParsableCommand {
18 |     static var configuration = CommandConfiguration(
   |                |- warning: static property 'configuration' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'configuration' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: add '@MainActor' to make static property 'configuration' part of global actor 'MainActor'
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
19 |       abstract: "Diagnose style issues in Swift source code",
20 |       discussion: "When no files are specified, it expects the source from standard input."
[1017/1023] Wrapping AST for generate-swift-format for debugging
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:fe1962677657b2408c217cb5cceb3c09bc1d91486e360cebbc6eee461a5945d8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
[0/1] Planning build
[1/1] Compiling plugin Lint Source Code
[2/2] Compiling plugin Format Source Code
[3/3] Compiling plugin GenerateManual
Building for debugging...
[3/43] Write swift-version-24593BA9C3E375BF.txt
[5/59] Emitting module SwiftSyntax600
[6/59] Compiling SwiftSyntax601 Empty.swift
[7/59] Compiling SwiftSyntax510 Empty.swift
[8/59] Emitting module SwiftSyntax510
[9/60] Emitting module SwiftSyntax601
[10/61] Compiling SwiftSyntax600 Empty.swift
[11/61] Compiling SwiftSyntax510 Empty.swift
[12/61] Compiling SwiftSyntax600 Empty.swift
[13/61] Emitting module SwiftSyntax510
[14/61] Emitting module SwiftSyntax509
[15/61] Compiling SwiftSyntax509 Empty.swift
[16/64] Emitting module SwiftSyntax601
[17/64] Compiling SwiftSyntax601 Empty.swift
[18/65] Emitting module SwiftSyntax600
[26/70] Compiling SwiftSyntax509 Empty.swift
[27/104] Emitting module SwiftSyntax509
[28/170] Emitting module ArgumentParserToolInfo
[30/187] Compiling ArgumentParserToolInfo ToolInfo.swift
[31/187] Emitting module ArgumentParserToolInfo
[32/188] Compiling Markdown BasicBlockContainer.swift
[33/188] Compiling Markdown BasicInlineContainer.swift
[34/188] Compiling Markdown BlockContainer.swift
[35/188] Compiling Markdown BlockMarkup.swift
[36/188] Compiling Markdown InlineContainer.swift
[37/188] Compiling Markdown InlineMarkup.swift
[38/188] Compiling Markdown ListItemContainer.swift
[39/188] Compiling Markdown AtomicCounter.swift
[49/267] Compiling SwiftSyntax SyntaxEnum.swift
[50/267] Compiling SwiftSyntax SyntaxKind.swift
[51/267] Compiling SwiftSyntax SyntaxRewriter.swift
[52/267] Compiling SwiftSyntax SyntaxTraits.swift
[53/267] Compiling SwiftSyntax SyntaxVisitor.swift
[54/267] Compiling SwiftSyntax TokenKind.swift
[55/267] Compiling SwiftSyntax Tokens.swift
[56/267] Compiling SwiftSyntax TriviaPieces.swift
[57/267] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[58/267] Compiling SwiftSyntax Trivia.swift
[59/267] Compiling SwiftSyntax Utils.swift
[60/267] Compiling SwiftSyntax ChildNameForKeyPath.swift
[61/267] Compiling SwiftSyntax Keyword.swift
[62/267] Compiling SwiftSyntax RenamedChildrenCompatibility.swift
[63/267] Compiling SwiftSyntax RenamedNodesCompatibility.swift
[64/267] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[65/267] Compiling SwiftSyntax SyntaxBaseNodes.swift
[66/267] Compiling SwiftSyntax SyntaxCollections.swift
[67/305] Compiling ArgumentParser Flag.swift
[68/305] Compiling ArgumentParser NameSpecification.swift
[69/305] Compiling ArgumentParser Option.swift
[70/305] Compiling ArgumentParser OptionGroup.swift
[71/305] Compiling ArgumentParser AsyncParsableCommand.swift
[72/305] Compiling ArgumentParser CommandConfiguration.swift
[73/305] Compiling ArgumentParser CommandGroup.swift
[74/305] Compiling ArgumentParser EnumerableFlag.swift
[75/305] Compiling ArgumentParser ExpressibleByArgument.swift
[76/369] Compiling ArgumentParserToolInfo ToolInfo.swift
[78/369] Emitting module Markdown
[79/407] Emitting module ArgumentParser
[80/412] Compiling ArgumentParser BashCompletionsGenerator.swift
[81/412] Compiling ArgumentParser CompletionsGenerator.swift
[82/412] Compiling ArgumentParser FishCompletionsGenerator.swift
[83/412] Compiling ArgumentParser ZshCompletionsGenerator.swift
[84/412] Compiling ArgumentParser Argument.swift
[85/412] Compiling ArgumentParser ArgumentHelp.swift
[86/412] Compiling ArgumentParser OptionGroup.swift
[87/412] Compiling ArgumentParser AsyncParsableCommand.swift
[88/412] Compiling ArgumentParser CommandConfiguration.swift
[89/421] Compiling ArgumentParser DumpHelpGenerator.swift
[90/421] Compiling ArgumentParser HelpCommand.swift
[91/421] Compiling ArgumentParser HelpGenerator.swift
[92/421] Compiling ArgumentParser MessageInfo.swift
[93/421] Compiling ArgumentParser UsageGenerator.swift
[94/421] Compiling ArgumentParser ArgumentDefinition.swift
[95/421] Compiling ArgumentParser ArgumentSet.swift
[96/421] Compiling ArgumentParser CommandParser.swift
[97/421] Compiling ArgumentParser InputKey.swift
[98/421] Compiling ArgumentParser Errors.swift
[99/421] Compiling ArgumentParser Flag.swift
[100/421] Compiling ArgumentParser NameSpecification.swift
[101/421] Compiling ArgumentParser Option.swift
[102/421] Compiling ArgumentParser Name.swift
[103/421] Compiling ArgumentParser Parsed.swift
[104/421] Compiling ArgumentParser ParsedValues.swift
[105/421] Compiling ArgumentParser ParserError.swift
[106/421] Compiling ArgumentParser SplitArguments.swift
[107/421] Compiling ArgumentParser CommandGroup.swift
[108/421] Compiling ArgumentParser EnumerableFlag.swift
[109/421] Compiling ArgumentParser ExpressibleByArgument.swift
[110/421] Compiling ArgumentParser ParsableArguments.swift
[111/421] Compiling ArgumentParser ParsableArgumentsValidation.swift
[112/421] Compiling ArgumentParser ParsableCommand.swift
[113/421] Compiling ArgumentParser ArgumentDecoder.swift
[114/421] Compiling ArgumentParser ArgumentVisibility.swift
[115/421] Compiling ArgumentParser CompletionKind.swift
[125/421] Emitting module Markdown
[131/421] Emitting module ArgumentParser
[171/435] Compiling ArgumentParser CollectionExtensions.swift
[172/435] Compiling ArgumentParser Platform.swift
[173/435] Compiling ArgumentParser SequenceExtensions.swift
[174/435] Compiling ArgumentParser StringExtensions.swift
[175/435] Compiling ArgumentParser Tree.swift
[187/435] Compiling SwiftSyntax RawSyntaxNodesTUVWXYZ.swift
[188/435] Compiling SwiftSyntax RawSyntaxValidation.swift
[189/435] Compiling SwiftSyntax SyntaxNodesAB.swift
[190/435] Compiling SwiftSyntax SyntaxNodesC.swift
[191/435] Compiling SwiftSyntax SyntaxNodesD.swift
[192/435] Compiling SwiftSyntax SyntaxNodesEF.swift
[193/435] Compiling SwiftSyntax SyntaxNodesGHI.swift
[194/435] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[208/435] Compiling ArgumentParser InputOrigin.swift
[278/435] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[279/435] Compiling SwiftSyntax SyntaxBaseNodes.swift
[280/435] Compiling SwiftSyntax SyntaxCollections.swift
[281/435] Compiling SwiftSyntax SyntaxEnum.swift
[282/435] Compiling SwiftSyntax SyntaxKind.swift
[283/435] Compiling SwiftSyntax SyntaxRewriter.swift
[284/435] Compiling SwiftSyntax SyntaxTraits.swift
[285/435] Compiling SwiftSyntax SyntaxVisitor.swift
[286/435] Compiling SwiftSyntax TokenKind.swift
[287/435] Compiling SwiftSyntax Tokens.swift
[288/435] Compiling SwiftSyntax TriviaPieces.swift
[319/435] Emitting module SwiftSyntax
[329/435] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[330/435] Compiling SwiftSyntax RawSyntaxNodesC.swift
[331/435] Compiling SwiftSyntax RawSyntaxNodesD.swift
[332/435] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[333/435] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[334/435] Compiling SwiftSyntax RawSyntaxNodesJKLMN.swift
[335/435] Compiling SwiftSyntax RawSyntaxNodesOP.swift
[336/435] Compiling SwiftSyntax RawSyntaxNodesQRS.swift
[399/435] Compiling SwiftSyntax SyntaxNodesOP.swift
[400/435] Compiling SwiftSyntax SyntaxNodesQRS.swift
[401/435] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[403/493] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[404/494] Compiling SwiftParser Attributes.swift
[405/494] Compiling SwiftParser Availability.swift
[406/494] Compiling SwiftDiagnostics Message.swift
[407/494] Emitting module SwiftDiagnostics
[408/494] Compiling SwiftDiagnostics Note.swift
[409/494] Compiling SwiftParser CharacterInfo.swift
[410/494] Compiling SwiftParser CollectionNodes+Parsable.swift
[411/494] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[412/494] Compiling SwiftBasicFormat Syntax+Extensions.swift
[413/494] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[414/494] Compiling SwiftDiagnostics FixIt.swift
[415/494] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[416/494] Compiling SwiftBasicFormat Indenter.swift
[417/494] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[418/494] Compiling SwiftBasicFormat InferIndentation.swift
[420/494] Compiling SwiftBasicFormat BasicFormat.swift
[421/494] Emitting module SwiftBasicFormat
[423/494] Compiling SwiftParser SwiftParserCompatibility.swift
[424/494] Compiling SwiftParser SwiftVersion.swift
[425/494] Compiling SwiftParser SyntaxUtils.swift
[426/494] Compiling SwiftParser TokenConsumer.swift
[427/494] Compiling SwiftParser TokenPrecedence.swift
[428/494] Compiling SwiftParser TokenSpec.swift
[429/494] Compiling SwiftParser TokenSpecSet.swift
[430/494] Compiling SwiftParser TopLevel.swift
[431/494] Compiling SwiftParser TriviaParser.swift
[432/494] Compiling SwiftParser Types.swift
[433/499] Compiling SwiftParser LexemeSequence.swift
[434/499] Compiling SwiftParser Lexer.swift
[435/499] Compiling SwiftParser RegexLiteralLexer.swift
[436/499] Compiling SwiftParser UnicodeScalarExtensions.swift
[437/499] Compiling SwiftParser Lookahead.swift
[438/499] Compiling SwiftParser LoopProgressCondition.swift
[439/499] Compiling SwiftParser Patterns.swift
[440/499] Compiling SwiftParser Recovery.swift
[441/499] Compiling SwiftParser Specifiers.swift
[442/499] Compiling SwiftParser Statements.swift
[443/499] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[444/499] Compiling SwiftParser StringLiterals.swift
[445/499] Compiling SwiftParser Modifiers.swift
[446/499] Compiling SwiftParser Names.swift
[447/499] Compiling SwiftParser Nominals.swift
[448/499] Compiling SwiftParser Parameters.swift
[449/499] Compiling SwiftParser ParseSourceFile.swift
[450/499] Compiling SwiftParser Parser.swift
[455/499] Compiling SwiftParser Declarations.swift
[456/499] Compiling SwiftParser Directives.swift
[457/499] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[458/499] Compiling SwiftParser Expressions.swift
[459/499] Compiling SwiftParser IncrementalParseTransition.swift
[460/499] Compiling SwiftParser IsValidIdentifier.swift
[461/499] Compiling SwiftParser Cursor.swift
[462/499] Compiling SwiftParser Lexeme.swift
[463/499] Emitting module SwiftParser
[464/499] Compiling SwiftParser ExperimentalFeatures.swift
[465/499] Compiling SwiftParser IsLexerClassified.swift
[466/499] Compiling SwiftParser LayoutNodes+Parsable.swift
[467/499] Compiling SwiftParser Parser+TokenSpecSet.swift
[468/499] Compiling SwiftParser TokenSpecStaticMembers.swift
[480/522] Compiling SwiftOperators PrecedenceGroup.swift
[481/523] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[482/523] Compiling SwiftOperators PrecedenceGraph.swift
[483/523] Compiling SwiftOperators OperatorTable.swift
[484/524] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[485/524] Compiling SwiftOperators OperatorError.swift
[486/524] Compiling SwiftParserDiagnostics MissingTokenError.swift
[487/524] Compiling SwiftOperators OperatorTable+Semantics.swift
[488/524] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[489/524] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[490/524] Compiling SwiftOperators OperatorTable+Folding.swift
[491/530] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[492/530] Compiling SwiftParserDiagnostics Utils.swift
[493/536] Emitting module SwiftOperators
[494/541] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[495/582] Compiling SwiftOperators SyntaxSynthesis.swift
[496/583] Compiling SwiftParser Attributes.swift
[497/583] Compiling SwiftParser Availability.swift
[499/584] Compiling SwiftDiagnostics Note.swift
[500/583] Compiling SwiftDiagnostics Message.swift
[501/583] Compiling SwiftBasicFormat Syntax+Extensions.swift
[502/583] Compiling SwiftParser CharacterInfo.swift
[503/583] Compiling SwiftParser CollectionNodes+Parsable.swift
[504/583] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[505/583] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[506/583] Emitting module SwiftDiagnostics
[507/583] Compiling SwiftParser Declarations.swift
[508/583] Compiling SwiftParser Directives.swift
[509/583] Compiling SwiftBasicFormat Indenter.swift
[510/583] Compiling SwiftBasicFormat InferIndentation.swift
[511/583] Compiling SwiftDiagnostics FixIt.swift
[512/583] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[513/583] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[514/583] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[516/583] Emitting module SwiftBasicFormat
[517/583] Compiling SwiftBasicFormat BasicFormat.swift
[521/583] Compiling SwiftParser LexemeSequence.swift
[522/583] Compiling SwiftParser Lexer.swift
[523/583] Emitting module SwiftParserDiagnostics
[529/583] Compiling SwiftParser RegexLiteralLexer.swift
[530/583] Compiling SwiftParser UnicodeScalarExtensions.swift
[531/583] Compiling SwiftParser Lookahead.swift
[532/583] Compiling SwiftParser LoopProgressCondition.swift
[533/603] Compiling SwiftParser Modifiers.swift
[534/603] Compiling SwiftParser Names.swift
[535/603] Compiling SwiftParser Nominals.swift
[536/603] Compiling SwiftParser Parameters.swift
[537/603] Compiling SwiftParser ParseSourceFile.swift
[538/603] Compiling SwiftParser Parser.swift
[539/603] Compiling SwiftParser Patterns.swift
[540/603] Compiling SwiftParser Recovery.swift
[541/603] Compiling SwiftParser Specifiers.swift
[542/603] Compiling SwiftParser Statements.swift
[543/603] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[544/603] Compiling SwiftParser StringLiterals.swift
[545/603] Compiling SwiftParser SwiftParserCompatibility.swift
[546/603] Compiling SwiftParser SwiftVersion.swift
[547/603] Compiling SwiftParser SyntaxUtils.swift
[548/603] Compiling SwiftParser TokenConsumer.swift
[549/603] Compiling SwiftParser TokenPrecedence.swift
[550/603] Compiling SwiftParser TokenSpec.swift
[551/603] Compiling SwiftParser TokenSpecSet.swift
[552/603] Compiling SwiftParser TopLevel.swift
[553/603] Compiling SwiftParser TriviaParser.swift
[554/603] Compiling SwiftParser Types.swift
[555/603] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[556/603] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[557/604] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[558/604] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[559/604] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[560/604] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[561/604] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[562/604] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[563/604] Emitting module SwiftSyntaxBuilder
[564/604] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[565/604] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[566/604] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[567/604] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[568/604] Compiling SwiftSyntaxBuilder Indenter.swift
[569/604] Compiling SwiftSyntaxBuilder ListBuilder.swift
[570/604] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[577/605] Emitting module SwiftParser
[580/605] Compiling SwiftParser IncrementalParseTransition.swift
[581/605] Compiling SwiftParser IsValidIdentifier.swift
[582/605] Compiling SwiftParser Cursor.swift
[583/605] Compiling SwiftParser Lexeme.swift
[585/604] Compiling SwiftParser ExperimentalFeatures.swift
[586/604] Compiling SwiftParser IsLexerClassified.swift
[587/604] Compiling SwiftParser LayoutNodes+Parsable.swift
[588/604] Compiling SwiftParser Parser+TokenSpecSet.swift
[589/604] Compiling SwiftParser TokenSpecStaticMembers.swift
[591/708] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[592/709] Compiling SwiftOperators PrecedenceGroup.swift
[593/710] Compiling SwiftOperators OperatorTable.swift
[594/710] Compiling SwiftOperators PrecedenceGraph.swift
[595/710] Compiling SwiftOperators Operator.swift
[596/710] Compiling SwiftOperators OperatorError+Diagnostics.swift
[597/710] Compiling SwiftOperators OperatorTable+Folding.swift
[598/710] Compiling SwiftOperators OperatorError.swift
[599/710] Compiling SwiftOperators OperatorTable+Defaults.swift
[600/710] Compiling SwiftOperators OperatorTable+Semantics.swift
[601/710] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[602/710] Compiling SwiftOperators SyntaxSynthesis.swift
[603/710] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[604/710] Compiling SwiftParserDiagnostics Utils.swift
[605/710] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[606/710] Emitting module SwiftOperators
[607/711] Emitting module SwiftParserDiagnostics
[609/711] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[610/711] Compiling SwiftParserDiagnostics PresenceUtils.swift
[611/710] Compiling SwiftFormat NoParensAroundConditions.swift
[612/710] Compiling SwiftFormat NoPlaygroundLiterals.swift
[613/710] Compiling SwiftFormat NoVoidReturnOnFunctionSignature.swift
[614/710] Compiling SwiftFormat OmitExplicitReturns.swift
[615/710] Compiling SwiftFormat OneCasePerLine.swift
[616/710] Compiling SwiftFormat OneVariableDeclarationPerLine.swift
[617/710] Compiling SwiftFormat OnlyOneTrailingClosureArgument.swift
[618/710] Compiling SwiftFormat OrderedImports.swift
[619/710] Compiling SwiftFormat ReplaceForEachWithForLoop.swift
[620/710] Compiling SwiftFormat ReturnVoidInsteadOfEmptyTuple.swift
[621/710] Compiling SwiftFormat TypeNamesShouldBeCapitalized.swift
[622/710] Compiling SwiftFormat AlwaysUseLiteralForEmptyCollectionInit.swift
[623/710] Compiling SwiftFormat AlwaysUseLowerCamelCase.swift
[624/710] Compiling SwiftFormat AmbiguousTrailingClosureOverload.swift
[625/710] Compiling SwiftFormat AvoidRetroactiveConformances.swift
[626/710] Compiling SwiftFormat BeginDocumentationCommentWithOneLineSummary.swift
[627/710] Compiling SwiftFormat DoNotUseSemicolons.swift
[628/710] Compiling SwiftFormat DontRepeatTypeInStaticProperties.swift
[629/710] Compiling SwiftFormat FileScopedDeclarationPrivacy.swift
[630/710] Compiling SwiftFormat FullyIndirectEnum.swift
[631/710] Compiling SwiftFormat GroupNumericLiterals.swift
[632/710] Compiling SwiftFormat IdentifiersMustBeASCII.swift
[637/721] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[638/721] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[643/721] Compiling SwiftFormat Context.swift
[644/721] Compiling SwiftFormat DocumentationComment.swift
[647/721] Compiling SwiftFormat NeverForceUnwrap.swift
[648/721] Compiling SwiftFormat NeverUseForceTry.swift
[649/721] Compiling SwiftFormat NeverUseImplicitlyUnwrappedOptionals.swift
[650/721] Compiling SwiftFormat NoAccessLevelOnExtensionDeclaration.swift
[651/721] Compiling SwiftFormat NoAssignmentInExpressions.swift
[652/721] Compiling SwiftFormat NoBlockComments.swift
[653/721] Compiling SwiftFormat NoCasesWithOnlyFallthrough.swift
[654/721] Compiling SwiftFormat NoEmptyLineOpeningClosingBraces.swift
[655/721] Compiling SwiftFormat NoEmptyTrailingClosureParentheses.swift
[656/721] Compiling SwiftFormat NoLabelsInCasePatterns.swift
[657/721] Compiling SwiftFormat NoLeadingUnderscores.swift
[658/721] Emitting module SwiftFormat
[664/736] Compiling SwiftFormat UseEarlyExits.swift
[665/736] Compiling SwiftFormat UseExplicitNilCheckInConditions.swift
[666/736] Compiling SwiftFormat UseLetInEveryBoundCaseVariable.swift
[667/736] Compiling SwiftFormat UseShorthandTypeNames.swift
[668/736] Compiling SwiftFormat UseSingleLinePropertyGetter.swift
[669/736] Compiling SwiftFormat UseSynthesizedInitializer.swift
[670/736] Compiling SwiftFormat UseTripleSlashForDocumentationComments.swift
[671/736] Compiling SwiftFormat UseWhereClausesInForLoops.swift
[672/736] Compiling SwiftFormat ValidateDocumentationComments.swift
[673/736] Compiling SwiftFormat FileIterator.swift
[674/736] Compiling SwiftFormat URL+isRoot.swift
[675/736] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[676/736] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[677/736] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[678/736] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[679/737] Emitting module SwiftSyntaxBuilder
[680/737] Compiling SwiftSyntaxBuilder Indenter.swift
[681/737] Compiling SwiftSyntaxBuilder ListBuilder.swift
[682/737] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[683/737] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[684/737] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[685/737] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[686/737] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[687/737] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[688/737] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[689/737] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[690/737] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[692/818] Compiling SwiftFormat Configuration+Default.swift
[693/818] Compiling SwiftFormat Configuration.swift
[694/818] Compiling SwiftFormat DebugOptions.swift
[695/818] Compiling SwiftFormat Finding.swift
[696/818] Compiling SwiftFormat FindingCategorizing.swift
[697/818] Compiling SwiftFormat Indent.swift
[698/818] Compiling SwiftFormat Selection.swift
[699/818] Compiling SwiftFormat SwiftFormatError.swift
[700/818] Compiling SwiftFormat SwiftFormatter.swift
[701/818] Compiling SwiftFormat SwiftLinter.swift
[702/818] Compiling SwiftFormat Context.swift
[703/818] Compiling SwiftFormat DocumentationComment.swift
[704/818] Compiling SwiftFormat AlwaysUseLiteralForEmptyCollectionInit.swift
[705/818] Compiling SwiftFormat AlwaysUseLowerCamelCase.swift
[706/818] Compiling SwiftFormat AmbiguousTrailingClosureOverload.swift
[707/818] Compiling SwiftFormat AvoidRetroactiveConformances.swift
[708/818] Compiling SwiftFormat BeginDocumentationCommentWithOneLineSummary.swift
[709/818] Compiling SwiftFormat DoNotUseSemicolons.swift
[710/818] Compiling SwiftFormat DontRepeatTypeInStaticProperties.swift
[711/818] Compiling SwiftFormat FileScopedDeclarationPrivacy.swift
[712/818] Compiling SwiftFormat FullyIndirectEnum.swift
[713/818] Compiling SwiftFormat GroupNumericLiterals.swift
[714/818] Compiling SwiftFormat IdentifiersMustBeASCII.swift
[715/818] Compiling SwiftFormat Comment.swift
[716/818] Compiling SwiftFormat Indent+Length.swift
[717/818] Compiling SwiftFormat PrettyPrint.swift
[718/818] Compiling SwiftFormat PrettyPrintBuffer.swift
[719/818] Compiling SwiftFormat PrettyPrintFindingCategory.swift
[720/818] Compiling SwiftFormat Token.swift
[721/818] Compiling SwiftFormat TokenStreamCreator.swift
[722/818] Compiling SwiftFormat Verbatim.swift
[723/818] Compiling SwiftFormat WhitespaceFindingCategory.swift
[724/818] Compiling SwiftFormat WhitespaceLinter.swift
[725/818] Compiling SwiftFormat AllPublicDeclarationsHaveDocumentation.swift
[726/818] Compiling SwiftFormat DocumentationCommentText.swift
[727/819] Wrapping AST for SwiftFormat for debugging
[729/819] Compiling SwiftFormat Rule.swift
[730/819] Compiling SwiftFormat RuleBasedFindingCategory.swift
[731/819] Compiling SwiftFormat RuleMask.swift
[732/819] Compiling SwiftFormat RuleNameCache+Generated.swift
[733/819] Compiling SwiftFormat RuleRegistry+Generated.swift
[734/819] Compiling SwiftFormat RuleState.swift
[735/819] Compiling SwiftFormat SyntaxFormatRule.swift
[736/819] Compiling SwiftFormat SyntaxLintRule.swift
[737/819] Compiling SwiftFormat SyntaxProtocol+Convenience.swift
[738/819] Compiling SwiftFormat Trivia+Convenience.swift
[739/819] Compiling SwiftFormat WithAttributesSyntax+Convenience.swift
[740/819] Compiling SwiftFormat WithSemicolonSyntax.swift
[741/847] Emitting module SwiftFormat
[742/847] Compiling swift_format DiagnosticsEngine.swift
[743/847] Compiling swift_format FileHandleTextOutputStream.swift
[744/849] Compiling swift_format FormatError.swift
[745/849] Compiling swift_format StderrDiagnosticPrinter.swift
[746/849] Compiling swift_format SwiftFormatCommand.swift
[747/849] Compiling swift_format Diagnostic.swift
[748/849] Compiling swift_format TTY.swift
[749/849] Compiling swift_format VersionOptions.swift
[750/849] Emitting module swift_format
[751/849] Compiling swift_format LintFormatOptions.swift
[752/849] Compiling swift_format PerformanceMeasurement.swift
[753/849] Compiling swift_format Format.swift
[754/849] Compiling swift_format Lint.swift
[755/849] Compiling swift_format ConfigurationLoader.swift
[756/849] Compiling swift_format FormatFrontend.swift
[757/849] Compiling swift_format Frontend.swift
[758/849] Compiling swift_format LintFrontend.swift
[759/849] Compiling swift_format PrintVersion.swift
[760/849] Compiling swift_format DumpConfiguration.swift
[774/850] Compiling SwiftFormat NeverForceUnwrap.swift
[775/850] Compiling SwiftFormat NeverUseForceTry.swift
[776/850] Compiling SwiftFormat NeverUseImplicitlyUnwrappedOptionals.swift
[777/850] Compiling SwiftFormat NoAccessLevelOnExtensionDeclaration.swift
[778/850] Compiling SwiftFormat NoAssignmentInExpressions.swift
[779/850] Compiling SwiftFormat NoBlockComments.swift
[780/850] Compiling SwiftFormat NoCasesWithOnlyFallthrough.swift
[781/850] Compiling SwiftFormat NoEmptyLineOpeningClosingBraces.swift
[782/850] Compiling SwiftFormat NoEmptyTrailingClosureParentheses.swift
[783/850] Compiling SwiftFormat NoLabelsInCasePatterns.swift
[784/850] Compiling SwiftFormat NoLeadingUnderscores.swift
[785/850] Compiling SwiftFormat UseEarlyExits.swift
[786/850] Compiling SwiftFormat UseExplicitNilCheckInConditions.swift
[787/850] Compiling SwiftFormat UseLetInEveryBoundCaseVariable.swift
[788/850] Compiling SwiftFormat UseShorthandTypeNames.swift
[789/850] Compiling SwiftFormat UseSingleLinePropertyGetter.swift
[790/850] Compiling SwiftFormat UseSynthesizedInitializer.swift
[791/850] Compiling SwiftFormat UseTripleSlashForDocumentationComments.swift
[792/850] Compiling SwiftFormat UseWhereClausesInForLoops.swift
[793/850] Compiling SwiftFormat ValidateDocumentationComments.swift
[794/850] Compiling SwiftFormat FileIterator.swift
[795/850] Compiling SwiftFormat URL+isRoot.swift
[796/850] Compiling SwiftFormat NoParensAroundConditions.swift
[797/850] Compiling SwiftFormat NoPlaygroundLiterals.swift
[798/850] Compiling SwiftFormat NoVoidReturnOnFunctionSignature.swift
[799/850] Compiling SwiftFormat OmitExplicitReturns.swift
[800/850] Compiling SwiftFormat OneCasePerLine.swift
[801/850] Compiling SwiftFormat OneVariableDeclarationPerLine.swift
[802/850] Compiling SwiftFormat OnlyOneTrailingClosureArgument.swift
[803/850] Compiling SwiftFormat OrderedImports.swift
[804/850] Compiling SwiftFormat ReplaceForEachWithForLoop.swift
[805/850] Compiling SwiftFormat ReturnVoidInsteadOfEmptyTuple.swift
[806/850] Compiling SwiftFormat TypeNamesShouldBeCapitalized.swift
[808/850] Compiling SwiftFormat Finding+Convenience.swift
[809/850] Compiling SwiftFormat FindingEmitter.swift
[810/850] Compiling SwiftFormat FormatPipeline.swift
[811/850] Compiling SwiftFormat FunctionDeclSyntax+Convenience.swift
[812/850] Compiling SwiftFormat ImportsXCTestVisitor.swift
[813/850] Compiling SwiftFormat LazySplitSequence.swift
[814/850] Compiling SwiftFormat LintPipeline.swift
[815/850] Compiling SwiftFormat ModifierListSyntax+Convenience.swift
[816/850] Compiling SwiftFormat Parsing.swift
[817/850] Compiling SwiftFormat Pipelines+Generated.swift
[818/850] Compiling SwiftFormat RememberingIterator.swift
[841/851] Wrapping AST for swift-format for debugging
[842/851] Write Objects.LinkFileList
[843/874] Wrapping AST for SwiftFormat for debugging
[845/882] Emitting module generate_swift_format
[846/883] Compiling _SwiftFormatTestSupport FindingSpec.swift
[847/883] Compiling _SwiftFormatTestSupport MarkedText.swift
[848/883] Compiling _SwiftFormatTestSupport Parsing.swift
[849/883] Compiling generate_swift_format Syntax+Convenience.swift
[850/883] Compiling generate_swift_format RuleRegistryGenerator.swift
[851/883] Compiling swift_format FormatError.swift
[852/883] Compiling swift_format StderrDiagnosticPrinter.swift
[853/885] Compiling generate_swift_format RuleDocumentationGenerator.swift
[854/885] Compiling generate_swift_format RuleNameCacheGenerator.swift
[855/885] Compiling swift_format DiagnosticsEngine.swift
[856/885] Compiling swift_format FileHandleTextOutputStream.swift
[857/885] Compiling swift_format SwiftFormatCommand.swift
[858/885] Compiling swift_format Diagnostic.swift
[859/885] Compiling _SwiftFormatTestSupport Configuration+Testing.swift
[860/885] Emitting module _SwiftFormatTestSupport
[861/885] Compiling _SwiftFormatTestSupport DiagnosingTestCase.swift
[862/885] Compiling generate_swift_format PipelineGenerator.swift
[863/885] Compiling generate_swift_format FileGenerator.swift
[864/885] Compiling generate_swift_format RuleCollector.swift
[865/886] Compiling swift_format LintFrontend.swift
[866/886] Compiling swift_format PrintVersion.swift
[867/886] Compiling swift_format DumpConfiguration.swift
[868/886] Compiling swift_format ConfigurationLoader.swift
[869/886] Compiling swift_format FormatFrontend.swift
[870/886] Compiling swift_format Frontend.swift
[871/886] Compiling swift_format Format.swift
[872/886] Compiling swift_format Lint.swift
[873/886] Emitting module swift_format
[874/886] Compiling generate_swift_format main.swift
[877/887] Compiling swift_format LintFormatOptions.swift
[878/887] Compiling swift_format PerformanceMeasurement.swift
[879/887] Compiling swift_format TTY.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/TTY.swift:27:10: error: cannot find 'isatty' in scope
25 |     return false
26 |   }
27 |   return isatty(fileHandle.fileDescriptor) != 0
   |          `- error: cannot find 'isatty' in scope
28 |   #endif
29 | }
[880/887] Compiling swift_format VersionOptions.swift
/host/spi-builder-workspace/Sources/swift-format/Utilities/TTY.swift:27:10: error: cannot find 'isatty' in scope
25 |     return false
26 |   }
27 |   return isatty(fileHandle.fileDescriptor) != 0
   |          `- error: cannot find 'isatty' in scope
28 |   #endif
29 | }
[880/887] Wrapping AST for generate-swift-format for debugging
[880/887] Linking swift-format-tool
BUILD FAILURE 6.1 android