The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of Sourcery, reference 2.2.6 (832055), with Swift 6.0 for Linux on 29 Dec 2024 15:14:04 UTC.

Swift 6 data race errors: 7

Build Command

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

Build Log

 46 |     public private(set) static var messagesStack = [String]()
 47 |
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:46:36: warning: static property 'messagesStack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 44 |
 45 |     public static var stackMessages: Bool = false
 46 |     public private(set) static var messagesStack = [String]()
    |                                    |- warning: static property 'messagesStack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                    |- note: convert 'messagesStack' to a 'let' constant to make 'Sendable' shared state immutable
    |                                    |- note: annotate 'messagesStack' with '@MainActor' if property should only be accessed from the main actor
    |                                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |
 48 |     public static func error(_ message: Any) {
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:101:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 99 | }
100 |
101 | extension String: Error {}
    | |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
102 |
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:52:33: warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 50 |         // to return error when running swift templates which is done in a different process
 51 |         if ProcessInfo.processInfo.processName != "Sourcery" {
 52 |             fputs("\(message)", stderr)
    |                                 `- warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 53 |         }
 54 |     }
SwiftGlibc.stderr:1:12: note: var declared here
1 | public var stderr: UnsafeMutablePointer<FILE>!
  |            `- note: var declared here
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Array+Parallel.swift:22:31: warning: capture of 'transform' with non-sendable type '(Element) -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
20 |             nonisolated(unsafe) let buffer = buffer
21 |             DispatchQueue.concurrentPerform(iterations: buffer.count) { idx in
22 |                 buffer[idx] = transform(self[idx])
   |                               |- warning: capture of 'transform' with non-sendable type '(Element) -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                               `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
23 |             }
24 |             return buffer.map { $0! }
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Array+Parallel.swift:22:41: warning: capture of 'self' with non-sendable type 'Array<Element>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
20 |             nonisolated(unsafe) let buffer = buffer
21 |             DispatchQueue.concurrentPerform(iterations: buffer.count) { idx in
22 |                 buffer[idx] = transform(self[idx])
   |                                         `- warning: capture of 'self' with non-sendable type 'Array<Element>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
23 |             }
24 |             return buffer.map { $0! }
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Array+Parallel.swift:30:13: warning: capture of 'work' with non-sendable type '(Element) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
28 |     func parallelPerform(_ work: (Element) -> Void) {
29 |         DispatchQueue.concurrentPerform(iterations: count) { idx in
30 |             work(self[idx])
   |             |- warning: capture of 'work' with non-sendable type '(Element) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
31 |         }
32 |     }
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Array+Parallel.swift:30:18: warning: capture of 'self' with non-sendable type 'Array<Element>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
28 |     func parallelPerform(_ work: (Element) -> Void) {
29 |         DispatchQueue.concurrentPerform(iterations: count) { idx in
30 |             work(self[idx])
   |                  `- warning: capture of 'self' with non-sendable type 'Array<Element>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
31 |         }
32 |     }
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:41:23: warning: static property 'level' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 39 |     }
 40 |
 41 |     public static var level: Level = .warnings
    |                       |- warning: static property 'level' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'level' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'level' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 42 |     public static var logBenchmarks: Bool = false
 43 |     public static var logAST: Bool = false
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:42:23: warning: static property 'logBenchmarks' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 40 |
 41 |     public static var level: Level = .warnings
 42 |     public static var logBenchmarks: Bool = false
    |                       |- warning: static property 'logBenchmarks' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'logBenchmarks' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'logBenchmarks' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 43 |     public static var logAST: Bool = false
 44 |
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:43:23: warning: static property 'logAST' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 41 |     public static var level: Level = .warnings
 42 |     public static var logBenchmarks: Bool = false
 43 |     public static var logAST: Bool = false
    |                       |- warning: static property 'logAST' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'logAST' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'logAST' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |     public static var stackMessages: Bool = false
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:45:23: warning: static property 'stackMessages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 43 |     public static var logAST: Bool = false
 44 |
 45 |     public static var stackMessages: Bool = false
    |                       |- warning: static property 'stackMessages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'stackMessages' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'stackMessages' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 46 |     public private(set) static var messagesStack = [String]()
 47 |
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:46:36: warning: static property 'messagesStack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 44 |
 45 |     public static var stackMessages: Bool = false
 46 |     public private(set) static var messagesStack = [String]()
    |                                    |- warning: static property 'messagesStack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                    |- note: convert 'messagesStack' to a 'let' constant to make 'Sendable' shared state immutable
    |                                    |- note: annotate 'messagesStack' with '@MainActor' if property should only be accessed from the main actor
    |                                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |
 48 |     public static func error(_ message: Any) {
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:101:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 99 | }
100 |
101 | extension String: Error {}
    | |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
102 |
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:52:33: warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 50 |         // to return error when running swift templates which is done in a different process
 51 |         if ProcessInfo.processInfo.processName != "Sourcery" {
 52 |             fputs("\(message)", stderr)
    |                                 `- warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 53 |         }
 54 |     }
SwiftGlibc.stderr:1:12: note: var declared here
1 | public var stderr: UnsafeMutablePointer<FILE>!
  |            `- note: var declared here
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Array+Parallel.swift:22:31: warning: capture of 'transform' with non-sendable type '(Element) -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
20 |             nonisolated(unsafe) let buffer = buffer
21 |             DispatchQueue.concurrentPerform(iterations: buffer.count) { idx in
22 |                 buffer[idx] = transform(self[idx])
   |                               |- warning: capture of 'transform' with non-sendable type '(Element) -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                               `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
23 |             }
24 |             return buffer.map { $0! }
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Array+Parallel.swift:22:41: warning: capture of 'self' with non-sendable type 'Array<Element>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
20 |             nonisolated(unsafe) let buffer = buffer
21 |             DispatchQueue.concurrentPerform(iterations: buffer.count) { idx in
22 |                 buffer[idx] = transform(self[idx])
   |                                         `- warning: capture of 'self' with non-sendable type 'Array<Element>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
23 |             }
24 |             return buffer.map { $0! }
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Array+Parallel.swift:30:13: warning: capture of 'work' with non-sendable type '(Element) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
28 |     func parallelPerform(_ work: (Element) -> Void) {
29 |         DispatchQueue.concurrentPerform(iterations: count) { idx in
30 |             work(self[idx])
   |             |- warning: capture of 'work' with non-sendable type '(Element) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
31 |         }
32 |     }
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Array+Parallel.swift:30:18: warning: capture of 'self' with non-sendable type 'Array<Element>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
28 |     func parallelPerform(_ work: (Element) -> Void) {
29 |         DispatchQueue.concurrentPerform(iterations: count) { idx in
30 |             work(self[idx])
   |                  `- warning: capture of 'self' with non-sendable type 'Array<Element>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
31 |         }
32 |     }
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:41:23: warning: static property 'level' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 39 |     }
 40 |
 41 |     public static var level: Level = .warnings
    |                       |- warning: static property 'level' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'level' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'level' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 42 |     public static var logBenchmarks: Bool = false
 43 |     public static var logAST: Bool = false
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:42:23: warning: static property 'logBenchmarks' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 40 |
 41 |     public static var level: Level = .warnings
 42 |     public static var logBenchmarks: Bool = false
    |                       |- warning: static property 'logBenchmarks' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'logBenchmarks' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'logBenchmarks' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 43 |     public static var logAST: Bool = false
 44 |
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:43:23: warning: static property 'logAST' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 41 |     public static var level: Level = .warnings
 42 |     public static var logBenchmarks: Bool = false
 43 |     public static var logAST: Bool = false
    |                       |- warning: static property 'logAST' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'logAST' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'logAST' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |     public static var stackMessages: Bool = false
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:45:23: warning: static property 'stackMessages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 43 |     public static var logAST: Bool = false
 44 |
 45 |     public static var stackMessages: Bool = false
    |                       |- warning: static property 'stackMessages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'stackMessages' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'stackMessages' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 46 |     public private(set) static var messagesStack = [String]()
 47 |
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:46:36: warning: static property 'messagesStack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 44 |
 45 |     public static var stackMessages: Bool = false
 46 |     public private(set) static var messagesStack = [String]()
    |                                    |- warning: static property 'messagesStack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                    |- note: convert 'messagesStack' to a 'let' constant to make 'Sendable' shared state immutable
    |                                    |- note: annotate 'messagesStack' with '@MainActor' if property should only be accessed from the main actor
    |                                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |
 48 |     public static func error(_ message: Any) {
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:101:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 99 | }
100 |
101 | extension String: Error {}
    | |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
102 |
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:52:33: warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 50 |         // to return error when running swift templates which is done in a different process
 51 |         if ProcessInfo.processInfo.processName != "Sourcery" {
 52 |             fputs("\(message)", stderr)
    |                                 `- warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 53 |         }
 54 |     }
SwiftGlibc.stderr:1:12: note: var declared here
1 | public var stderr: UnsafeMutablePointer<FILE>!
  |            `- note: var declared here
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Array+Parallel.swift:22:31: warning: capture of 'transform' with non-sendable type '(Element) -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
20 |             nonisolated(unsafe) let buffer = buffer
21 |             DispatchQueue.concurrentPerform(iterations: buffer.count) { idx in
22 |                 buffer[idx] = transform(self[idx])
   |                               |- warning: capture of 'transform' with non-sendable type '(Element) -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                               `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
23 |             }
24 |             return buffer.map { $0! }
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Array+Parallel.swift:22:41: warning: capture of 'self' with non-sendable type 'Array<Element>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
20 |             nonisolated(unsafe) let buffer = buffer
21 |             DispatchQueue.concurrentPerform(iterations: buffer.count) { idx in
22 |                 buffer[idx] = transform(self[idx])
   |                                         `- warning: capture of 'self' with non-sendable type 'Array<Element>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
23 |             }
24 |             return buffer.map { $0! }
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Array+Parallel.swift:30:13: warning: capture of 'work' with non-sendable type '(Element) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
28 |     func parallelPerform(_ work: (Element) -> Void) {
29 |         DispatchQueue.concurrentPerform(iterations: count) { idx in
30 |             work(self[idx])
   |             |- warning: capture of 'work' with non-sendable type '(Element) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
31 |         }
32 |     }
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Array+Parallel.swift:30:18: warning: capture of 'self' with non-sendable type 'Array<Element>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
28 |     func parallelPerform(_ work: (Element) -> Void) {
29 |         DispatchQueue.concurrentPerform(iterations: count) { idx in
30 |             work(self[idx])
   |                  `- warning: capture of 'self' with non-sendable type 'Array<Element>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
31 |         }
32 |     }
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:41:23: warning: static property 'level' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 39 |     }
 40 |
 41 |     public static var level: Level = .warnings
    |                       |- warning: static property 'level' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'level' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'level' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 42 |     public static var logBenchmarks: Bool = false
 43 |     public static var logAST: Bool = false
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:42:23: warning: static property 'logBenchmarks' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 40 |
 41 |     public static var level: Level = .warnings
 42 |     public static var logBenchmarks: Bool = false
    |                       |- warning: static property 'logBenchmarks' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'logBenchmarks' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'logBenchmarks' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 43 |     public static var logAST: Bool = false
 44 |
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:43:23: warning: static property 'logAST' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 41 |     public static var level: Level = .warnings
 42 |     public static var logBenchmarks: Bool = false
 43 |     public static var logAST: Bool = false
    |                       |- warning: static property 'logAST' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'logAST' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'logAST' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |     public static var stackMessages: Bool = false
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:45:23: warning: static property 'stackMessages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 43 |     public static var logAST: Bool = false
 44 |
 45 |     public static var stackMessages: Bool = false
    |                       |- warning: static property 'stackMessages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'stackMessages' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'stackMessages' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 46 |     public private(set) static var messagesStack = [String]()
 47 |
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:46:36: warning: static property 'messagesStack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 44 |
 45 |     public static var stackMessages: Bool = false
 46 |     public private(set) static var messagesStack = [String]()
    |                                    |- warning: static property 'messagesStack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                    |- note: convert 'messagesStack' to a 'let' constant to make 'Sendable' shared state immutable
    |                                    |- note: annotate 'messagesStack' with '@MainActor' if property should only be accessed from the main actor
    |                                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |
 48 |     public static func error(_ message: Any) {
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:101:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 99 | }
100 |
101 | extension String: Error {}
    | |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
102 |
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:52:33: warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 50 |         // to return error when running swift templates which is done in a different process
 51 |         if ProcessInfo.processInfo.processName != "Sourcery" {
 52 |             fputs("\(message)", stderr)
    |                                 `- warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 53 |         }
 54 |     }
SwiftGlibc.stderr:1:12: note: var declared here
1 | public var stderr: UnsafeMutablePointer<FILE>!
  |            `- note: var declared here
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Array+Parallel.swift:22:31: warning: capture of 'transform' with non-sendable type '(Element) -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
20 |             nonisolated(unsafe) let buffer = buffer
21 |             DispatchQueue.concurrentPerform(iterations: buffer.count) { idx in
22 |                 buffer[idx] = transform(self[idx])
   |                               |- warning: capture of 'transform' with non-sendable type '(Element) -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                               `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
23 |             }
24 |             return buffer.map { $0! }
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Array+Parallel.swift:22:41: warning: capture of 'self' with non-sendable type 'Array<Element>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
20 |             nonisolated(unsafe) let buffer = buffer
21 |             DispatchQueue.concurrentPerform(iterations: buffer.count) { idx in
22 |                 buffer[idx] = transform(self[idx])
   |                                         `- warning: capture of 'self' with non-sendable type 'Array<Element>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
23 |             }
24 |             return buffer.map { $0! }
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Array+Parallel.swift:30:13: warning: capture of 'work' with non-sendable type '(Element) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
28 |     func parallelPerform(_ work: (Element) -> Void) {
29 |         DispatchQueue.concurrentPerform(iterations: count) { idx in
30 |             work(self[idx])
   |             |- warning: capture of 'work' with non-sendable type '(Element) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
31 |         }
32 |     }
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Array+Parallel.swift:30:18: warning: capture of 'self' with non-sendable type 'Array<Element>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
28 |     func parallelPerform(_ work: (Element) -> Void) {
29 |         DispatchQueue.concurrentPerform(iterations: count) { idx in
30 |             work(self[idx])
   |                  `- warning: capture of 'self' with non-sendable type 'Array<Element>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
31 |         }
32 |     }
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:41:23: warning: static property 'level' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 39 |     }
 40 |
 41 |     public static var level: Level = .warnings
    |                       |- warning: static property 'level' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'level' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'level' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 42 |     public static var logBenchmarks: Bool = false
 43 |     public static var logAST: Bool = false
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:42:23: warning: static property 'logBenchmarks' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 40 |
 41 |     public static var level: Level = .warnings
 42 |     public static var logBenchmarks: Bool = false
    |                       |- warning: static property 'logBenchmarks' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'logBenchmarks' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'logBenchmarks' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 43 |     public static var logAST: Bool = false
 44 |
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:43:23: warning: static property 'logAST' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 41 |     public static var level: Level = .warnings
 42 |     public static var logBenchmarks: Bool = false
 43 |     public static var logAST: Bool = false
    |                       |- warning: static property 'logAST' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'logAST' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'logAST' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |     public static var stackMessages: Bool = false
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:45:23: warning: static property 'stackMessages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 43 |     public static var logAST: Bool = false
 44 |
 45 |     public static var stackMessages: Bool = false
    |                       |- warning: static property 'stackMessages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'stackMessages' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'stackMessages' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 46 |     public private(set) static var messagesStack = [String]()
 47 |
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:46:36: warning: static property 'messagesStack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 44 |
 45 |     public static var stackMessages: Bool = false
 46 |     public private(set) static var messagesStack = [String]()
    |                                    |- warning: static property 'messagesStack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                    |- note: convert 'messagesStack' to a 'let' constant to make 'Sendable' shared state immutable
    |                                    |- note: annotate 'messagesStack' with '@MainActor' if property should only be accessed from the main actor
    |                                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |
 48 |     public static func error(_ message: Any) {
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:101:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 99 | }
100 |
101 | extension String: Error {}
    | |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
102 |
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:52:33: warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 50 |         // to return error when running swift templates which is done in a different process
 51 |         if ProcessInfo.processInfo.processName != "Sourcery" {
 52 |             fputs("\(message)", stderr)
    |                                 `- warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 53 |         }
 54 |     }
SwiftGlibc.stderr:1:12: note: var declared here
1 | public var stderr: UnsafeMutablePointer<FILE>!
  |            `- note: var declared here
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Array+Parallel.swift:22:31: warning: capture of 'transform' with non-sendable type '(Element) -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
20 |             nonisolated(unsafe) let buffer = buffer
21 |             DispatchQueue.concurrentPerform(iterations: buffer.count) { idx in
22 |                 buffer[idx] = transform(self[idx])
   |                               |- warning: capture of 'transform' with non-sendable type '(Element) -> T' in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |                               `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
23 |             }
24 |             return buffer.map { $0! }
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Array+Parallel.swift:22:41: warning: capture of 'self' with non-sendable type 'Array<Element>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
20 |             nonisolated(unsafe) let buffer = buffer
21 |             DispatchQueue.concurrentPerform(iterations: buffer.count) { idx in
22 |                 buffer[idx] = transform(self[idx])
   |                                         `- warning: capture of 'self' with non-sendable type 'Array<Element>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
23 |             }
24 |             return buffer.map { $0! }
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Array+Parallel.swift:30:13: warning: capture of 'work' with non-sendable type '(Element) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
28 |     func parallelPerform(_ work: (Element) -> Void) {
29 |         DispatchQueue.concurrentPerform(iterations: count) { idx in
30 |             work(self[idx])
   |             |- warning: capture of 'work' with non-sendable type '(Element) -> Void' in a `@Sendable` closure; this is an error in the Swift 6 language mode
   |             `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
31 |         }
32 |     }
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Array+Parallel.swift:30:18: warning: capture of 'self' with non-sendable type 'Array<Element>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
28 |     func parallelPerform(_ work: (Element) -> Void) {
29 |         DispatchQueue.concurrentPerform(iterations: count) { idx in
30 |             work(self[idx])
   |                  `- warning: capture of 'self' with non-sendable type 'Array<Element>' in a `@Sendable` closure; this is an error in the Swift 6 language mode
31 |         }
32 |     }
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:41:23: warning: static property 'level' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 39 |     }
 40 |
 41 |     public static var level: Level = .warnings
    |                       |- warning: static property 'level' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'level' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'level' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 42 |     public static var logBenchmarks: Bool = false
 43 |     public static var logAST: Bool = false
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:42:23: warning: static property 'logBenchmarks' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 40 |
 41 |     public static var level: Level = .warnings
 42 |     public static var logBenchmarks: Bool = false
    |                       |- warning: static property 'logBenchmarks' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'logBenchmarks' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'logBenchmarks' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 43 |     public static var logAST: Bool = false
 44 |
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:43:23: warning: static property 'logAST' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 41 |     public static var level: Level = .warnings
 42 |     public static var logBenchmarks: Bool = false
 43 |     public static var logAST: Bool = false
    |                       |- warning: static property 'logAST' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'logAST' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'logAST' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 44 |
 45 |     public static var stackMessages: Bool = false
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:45:23: warning: static property 'stackMessages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 43 |     public static var logAST: Bool = false
 44 |
 45 |     public static var stackMessages: Bool = false
    |                       |- warning: static property 'stackMessages' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'stackMessages' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'stackMessages' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 46 |     public private(set) static var messagesStack = [String]()
 47 |
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:46:36: warning: static property 'messagesStack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 44 |
 45 |     public static var stackMessages: Bool = false
 46 |     public private(set) static var messagesStack = [String]()
    |                                    |- warning: static property 'messagesStack' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                                    |- note: convert 'messagesStack' to a 'let' constant to make 'Sendable' shared state immutable
    |                                    |- note: annotate 'messagesStack' with '@MainActor' if property should only be accessed from the main actor
    |                                    `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 47 |
 48 |     public static func error(_ message: Any) {
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:101:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 99 | }
100 |
101 | extension String: Error {}
    | |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
102 |
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:52:33: warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 50 |         // to return error when running swift templates which is done in a different process
 51 |         if ProcessInfo.processInfo.processName != "Sourcery" {
 52 |             fputs("\(message)", stderr)
    |                                 `- warning: reference to var 'stderr' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
 53 |         }
 54 |     }
SwiftGlibc.stderr:1:12: note: var declared here
1 | public var stderr: UnsafeMutablePointer<FILE>!
  |            `- note: var declared here
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
[713/1111] Compiling hrss.c
[714/1111] Compiling vpaes-x86_64-mac.mac.x86_64.S
[715/1111] Compiling vpaes-x86-windows.windows.x86.S
[716/1111] Compiling vpaes-x86_64-linux.linux.x86_64.S
[717/1111] Compiling vpaes-x86-linux.linux.x86.S
[718/1111] Compiling vpaes-armv8-linux.linux.aarch64.S
[719/1111] Compiling vpaes-armv8-ios.ios.aarch64.S
[720/1111] Compiling vpaes-armv7-linux.linux.arm.S
[721/1111] Compiling sha512-x86_64-mac.mac.x86_64.S
[722/1111] Compiling vpaes-armv7-ios.ios.arm.S
[723/1111] Compiling sha512-x86_64-linux.linux.x86_64.S
[724/1111] Compiling sha512-armv8-linux.linux.aarch64.S
[725/1111] Compiling sha512-armv8-ios.ios.aarch64.S
[726/1111] Compiling sha512-armv4-linux.linux.arm.S
[727/1111] Compiling sha512-armv4-ios.ios.arm.S
[727/1111] Compiling kdf.c
[729/1111] Compiling sha512-586-windows.windows.x86.S
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
[733/1111] Compiling SourceryRuntime GenericRequirement_Linux.swift
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
[734/1111] Compiling SourceryRuntime MethodParameter_Linux.swift
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
[735/1111] Compiling SourceryRuntime Method_Linux.swift
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
[736/1111] Compiling SourceryRuntime Protocol_Linux.swift
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
[737/1111] Compiling SourceryRuntime Subscript_Linux.swift
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
[738/1111] Compiling SourceryRuntime Closure_Linux.swift
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
[739/1111] Compiling SourceryRuntime GenericTypeParameter_Linux.swift
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
[740/1111] Compiling SourceryRuntime Tuple_Linux.swift
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
[741/1111] Compiling SourceryRuntime TypeName_Linux.swift
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
[742/1111] Compiling SourceryRuntime Type_Linux.swift
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
[743/1111] Compiling SourceryRuntime Variable_Linux.swift
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
[744/1111] Compiling SourceryRuntime DynamicMemberLookup_Linux.swift
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
[745/1111] Compiling SourceryRuntime NSException_Linux.swift
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
[746/1111] Compiling SourceryRuntime TypesCollection_Linux.swift
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
[747/1111] Compiling SourceryRuntime Types_Linux.swift
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
[748/1111] Compiling SourceryRuntime AssociatedType.swift
/host/spi-builder-workspace/SourceryRuntime/Sources/Linux/NSException_Linux.swift:15:16: warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
13 |
14 | public extension NSExceptionName {
15 |     static var parseErrorException = "parseErrorException"
   |                |- warning: static property 'parseErrorException' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'parseErrorException' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'parseErrorException' with '@MainActor' if property should only be accessed from the main actor
   |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
16 | }
17 | #endif
[748/1111] Compiling sha256-x86_64-mac.mac.x86_64.S
[749/1111] Compiling sha512-586-linux.linux.x86.S
[750/1111] Compiling sha256-armv8-linux.linux.aarch64.S
[751/1111] Compiling sha256-armv8-ios.ios.aarch64.S
[752/1111] Compiling sha256-armv4-ios.ios.arm.S
[753/1111] Compiling sha256-x86_64-linux.linux.x86_64.S
[754/1112] Compiling sha256-armv4-linux.linux.arm.S
[755/1112] Compiling sha256-586-windows.windows.x86.S
[756/1112] Compiling sha256-586-linux.linux.x86.S
[757/1112] Compiling sha1-x86_64-mac.mac.x86_64.S
[758/1112] Compiling sha1-armv8-ios.ios.aarch64.S
[759/1112] Compiling sha1-armv8-linux.linux.aarch64.S
[760/1112] Compiling sha1-x86_64-linux.linux.x86_64.S
[761/1112] Compiling sha1-armv4-large-linux.linux.arm.S
[762/1112] Compiling sha1-586-windows.windows.x86.S
[763/1112] Compiling sha1-armv4-large-ios.ios.arm.S
[764/1112] Compiling sha1-586-linux.linux.x86.S
[766/1112] Compiling sha512.c
[767/1112] Compiling sha1.c
[768/1112] Compiling sha256.c
[769/1112] Compiling service_indicator.c
[770/1112] Compiling rsaz-avx2-mac.mac.x86_64.S
[771/1112] Compiling fips.c
[772/1112] Compiling self_check.c
[773/1112] Compiling rsaz-avx2-linux.linux.x86_64.S
[774/1112] Wrapping AST for SourceryRuntime for debugging
[775/1112] Compiling rdrand-x86_64-mac.mac.x86_64.S
[776/1112] Compiling rsa_impl.c
[777/1112] Compiling blinding.c
[778/1112] Compiling padding.c
[779/1112] Compiling rsa.c
[780/1112] Compiling p256-x86_64-asm-mac.mac.x86_64.S
[781/1112] Compiling p256_beeu-armv8-asm-linux.linux.aarch64.S
[782/1112] Compiling p256_beeu-armv8-asm-ios.ios.aarch64.S
[783/1112] Compiling p256-armv8-asm-linux.linux.aarch64.S
[784/1112] Compiling p256-armv8-asm-ios.ios.aarch64.S
[785/1112] Compiling p256-x86_64-asm-linux.linux.x86_64.S
[786/1116] Compiling ofb.c
[787/1116] Compiling gcm_nohw.c
[788/1116] Compiling polyval.c
[789/1116] Compiling ctr.c
[790/1116] Compiling gcm.c
[791/1116] Compiling cfb.c
[792/1116] Compiling md5-x86_64-mac.mac.x86_64.S
[793/1116] Compiling cbc.c
[794/1116] Compiling md5-x86_64-linux.linux.x86_64.S
[795/1116] Compiling md5.c
[796/1116] Compiling md5-586-windows.windows.x86.S
[797/1116] Compiling md5-586-linux.linux.x86.S
[798/1116] Compiling ghashv8-armv8-ios.ios.aarch64.S
[799/1116] Compiling ghashv8-armv8-linux.linux.aarch64.S
[800/1116] Compiling md4.c
[801/1116] Compiling hmac.c
[802/1116] Compiling hkdf.c
[803/1116] Compiling ghashv8-armv7-ios.ios.arm.S
[804/1116] Compiling ghashv8-armv7-linux.linux.arm.S
[806/1116] Emitting module SourceryStencil
/host/spi-builder-workspace/SourceryStencil/Sources/StencilTemplate.swift:7:53: warning: 'StencilSwiftTemplate' is deprecated: No longer needed with Stencil whitespace control features
  5 | import SourceryRuntime
  6 |
  7 | public final class StencilTemplate: StencilSwiftKit.StencilSwiftTemplate {
    |                                                     `- warning: 'StencilSwiftTemplate' is deprecated: No longer needed with Stencil whitespace control features
  8 |     private(set) public var sourcePath: Path = ""
  9 |
[806/1116] Compiling ghash-x86_64-mac.mac.x86_64.S
[807/1116] Compiling ghash-x86_64-linux.linux.x86_64.S
[808/1116] Compiling ghash-x86-windows.windows.x86.S
[809/1116] Compiling ghash-x86-linux.linux.x86.S
[810/1116] Compiling ghash-ssse3-x86_64-mac.mac.x86_64.S
[811/1116] Compiling ghash-ssse3-x86-linux.linux.x86.S
[812/1116] Compiling ghash-ssse3-x86-windows.windows.x86.S
[813/1116] Compiling ghash-ssse3-x86_64-linux.linux.x86_64.S
[814/1116] Compiling ghash-neon-armv8-linux.linux.aarch64.S
[816/1116] Compiling SourceryStencil TypedNode.swift
[816/1116] Compiling fips_shared_support.c
[817/1116] Compiling ghash-armv4-linux.linux.arm.S
[818/1116] Compiling ghash-neon-armv8-ios.ios.aarch64.S
[819/1116] Compiling ghash-armv4-ios.ios.arm.S
[820/1116] Compiling ecdsa.c
[821/1116] Compiling wnaf.c
[822/1116] Compiling ecdh.c
[823/1116] Compiling util.c
[824/1116] Compiling simple_mul.c
[825/1116] Compiling scalar.c
[826/1116] Compiling simple.c
[827/1116] Compiling p256.c
[828/1116] Compiling p224-64.c
[829/1116] Compiling felem.c
[830/1116] Compiling oct.c
[831/1116] Compiling ec_montgomery.c
[832/1116] Compiling ec_key.c
[833/1116] Compiling digestsign.c
[834/1116] Compiling ec.c
[835/1116] Compiling digest.c
[836/1116] Compiling dh.c
[837/1116] Compiling digests.c
[838/1116] Compiling p256-nistz.c
[839/1116] Compiling co-586-windows.windows.x86.S
[840/1116] Compiling co-586-linux.linux.x86.S
[841/1116] Compiling check.c
[842/1116] Compiling cmac.c
[843/1116] Compiling e_aesccm.c
[844/1116] Compiling aead.c
[845/1116] Compiling bsaes-armv7-linux.linux.arm.S
[846/1116] Compiling bsaes-armv7-ios.ios.arm.S
[847/1116] Compiling cipher.c
[848/1116] Compiling rsaz_exp.c
[849/1116] Compiling sqrt.c
[850/1116] Compiling e_aes.c
[851/1116] Compiling shift.c
[852/1116] Compiling prime.c
[853/1116] Compiling random.c
[854/1116] Compiling montgomery.c
[855/1116] Compiling mul.c
[856/1116] Compiling montgomery_inv.c
[857/1116] Compiling jacobi.c
[858/1116] Compiling generic.c
[859/1116] Compiling gcd.c
[860/1116] Compiling gcd_extra.c
[861/1116] Compiling ctx.c
[862/1116] Compiling div_extra.c
[864/1116] Compiling SourceryStencil NewLineNode.swift
[864/1116] Compiling div.c
[866/1116] Compiling SourceryStencil StencilTemplate.swift
/host/spi-builder-workspace/SourceryStencil/Sources/StencilTemplate.swift:7:53: warning: 'StencilSwiftTemplate' is deprecated: No longer needed with Stencil whitespace control features
  5 | import SourceryRuntime
  6 |
  7 | public final class StencilTemplate: StencilSwiftKit.StencilSwiftTemplate {
    |                                                     `- warning: 'StencilSwiftTemplate' is deprecated: No longer needed with Stencil whitespace control features
  8 |     private(set) public var sourcePath: Path = ""
  9 |
[866/1116] Compiling exponentiation.c
[867/1117] Compiling cmp.c
[868/1117] Compiling bn.c
[870/1117] Emitting module SwiftOptions
[870/1117] Compiling bytes.c
[871/1117] Compiling add.c
[873/1117] Compiling bn-armv8-linux.linux.aarch64.S
[874/1117] Compiling bn-armv8-ios.ios.aarch64.S
[875/1117] Compiling bn-586-windows.windows.x86.S
[876/1117] Compiling armv8-mont-linux.linux.aarch64.S
[877/1117] Compiling armv8-mont-ios.ios.aarch64.S
[878/1117] Compiling bn-586-linux.linux.x86.S
[879/1117] Compiling armv4-mont-linux.linux.arm.S
[880/1117] Compiling x86_64-gcc.c
[881/1117] Compiling aesv8-gcm-armv8-linux.linux.aarch64.S
[882/1117] Compiling armv4-mont-ios.ios.arm.S
[883/1117] Wrapping AST for SourceryStencil for debugging
[884/1117] Compiling aesv8-armv8-linux.linux.aarch64.S
[885/1117] Compiling aesv8-gcm-armv8-ios.ios.aarch64.S
[886/1117] Compiling aesv8-armv7-linux.linux.arm.S
[887/1117] Compiling aesv8-armv8-ios.ios.aarch64.S
[888/1117] Compiling aesv8-armv7-ios.ios.arm.S
[889/1117] Compiling aesni-x86_64-mac.mac.x86_64.S
[890/1117] Compiling aesni-x86-linux.linux.x86.S
[891/1117] Compiling aesni-x86-windows.windows.x86.S
[892/1117] Compiling aesni-gcm-x86_64-mac.mac.x86_64.S
[893/1117] Compiling aesni-x86_64-linux.linux.x86_64.S
[894/1117] Compiling aesni-gcm-x86_64-linux.linux.x86_64.S
[895/1117] Compiling mode_wrappers.c
[896/1117] Compiling key_wrap.c
[897/1117] Compiling aes.c
[898/1117] Compiling sign.c
[899/1117] Compiling ex_data.c
[900/1117] Compiling pbkdf.c
[901/1117] Compiling aes_nohw.c
[902/1117] Compiling scrypt.c
[903/1117] Compiling p_x25519_asn1.c
[904/1117] Compiling print.c
[905/1117] Compiling p_x25519.c
[906/1117] Compiling p_ed25519.c
[907/1117] Compiling p_rsa_asn1.c
[908/1117] Compiling p_hkdf.c
[909/1117] Compiling p_ec_asn1.c
[910/1117] Compiling p_rsa.c
[911/1117] Compiling p_ed25519_asn1.c
[912/1117] Compiling err_data.c
[913/1117] Compiling p_dsa_asn1.c
[914/1117] Compiling p_ec.c
[915/1117] Compiling evp_asn1.c
[916/1117] Compiling evp_ctx.c
[917/1117] Compiling evp.c
[918/1117] Compiling engine.c
[919/1117] Compiling err.c
[920/1117] Compiling ecdsa_asn1.c
[921/1117] Compiling ecdh_extra.c
[922/1117] Compiling ec_derive.c
[923/1117] Compiling hash_to_curve.c
[924/1117] Compiling dsa_asn1.c
[925/1117] Compiling ec_asn1.c
[926/1117] Compiling dsa.c
[927/1117] Compiling digest_extra.c
[928/1117] Compiling dh_asn1.c
[929/1117] Compiling params.c
[930/1117] Compiling x25519-asm-arm.S
[931/1117] Compiling spake25519.c
[932/1117] Compiling crypto.c
[933/1117] Compiling des.c
[934/1117] Compiling cpu_arm_linux.c
[935/1117] Compiling cpu_intel.c
[936/1117] Compiling cpu_arm_freebsd.c
[937/1117] Compiling cpu_aarch64_openbsd.c
[938/1117] Compiling cpu_arm.c
[939/1117] Compiling cpu_aarch64_sysreg.c
[940/1117] Compiling cpu_aarch64_win.c
[941/1117] Compiling curve25519.c
[942/1117] Compiling cpu_aarch64_linux.c
[943/1117] Compiling tls_cbc.c
[944/1117] Compiling cpu_aarch64_fuchsia.c
[945/1117] Compiling cpu_aarch64_apple.c
[946/1117] Compiling conf.c
[947/1117] Compiling e_tls.c
[948/1117] Compiling e_rc4.c
[949/1117] Compiling e_null.c
[950/1117] Compiling e_rc2.c
[951/1117] Compiling e_des.c
[952/1117] Compiling e_chacha20poly1305.c
[953/1117] Compiling derive_key.c
[954/1117] Compiling e_aesctrhmac.c
[955/1117] Compiling e_aesgcmsiv.c
[956/1117] Compiling chacha20_poly1305_x86_64-mac.mac.x86_64.S
[957/1117] Compiling chacha20_poly1305_armv8-ios.ios.aarch64.S
[958/1117] Compiling cipher_extra.c
[959/1117] Compiling chacha20_poly1305_armv8-linux.linux.aarch64.S
[960/1117] Compiling curve25519_64_adx.c
[961/1117] Compiling aes128gcmsiv-x86_64-mac.mac.x86_64.S
[962/1117] Compiling chacha20_poly1305_x86_64-linux.linux.x86_64.S
[963/1117] Compiling chacha-x86_64-mac.mac.x86_64.S
[964/1117] Compiling aes128gcmsiv-x86_64-linux.linux.x86_64.S
[965/1117] Compiling chacha.c
[966/1117] Compiling chacha-x86_64-linux.linux.x86_64.S
[967/1117] Compiling chacha-x86-windows.windows.x86.S
[968/1117] Compiling chacha-armv8-ios.ios.aarch64.S
[969/1117] Compiling chacha-x86-linux.linux.x86.S
[970/1117] Compiling chacha-armv8-linux.linux.aarch64.S
[971/1117] Compiling chacha-armv4-linux.linux.arm.S
[972/1117] Compiling chacha-armv4-ios.ios.arm.S
[973/1117] Compiling unicode.c
[974/1117] Compiling ber.c
[975/1117] Compiling asn1_compat.c
[976/1117] Compiling buf.c
[977/1117] Compiling cbb.c
[978/1117] Compiling cbs.c
[979/1117] Compiling bn_asn1.c
[980/1117] Compiling blake2.c
[980/1117] Compiling printf.c
[982/1117] Compiling convert.c
[983/1117] Compiling hexdump.c
[984/1117] Compiling pair.c
[985/1117] Compiling fd.c
[986/1117] Compiling errno.c
[987/1117] Compiling file.c
[988/1117] Compiling bio_mem.c
[989/1117] Compiling bio.c
[990/1117] Compiling tasn_typ.c
[991/1117] Compiling base64.c
[992/1117] Compiling tasn_utl.c
[993/1117] Compiling tasn_new.c
[994/1117] Compiling tasn_fre.c
[995/1117] Compiling f_string.c
[996/1117] Compiling f_int.c
[997/1117] Compiling tasn_enc.c
[998/1117] Compiling posix_time.c
[999/1117] Compiling asn_pack.c
[1000/1117] Compiling asn1_par.c
[1001/1117] Compiling tasn_dec.c
[1002/1117] Compiling a_type.c
[1003/1117] Compiling asn1_lib.c
[1004/1117] Compiling a_strnid.c
[1005/1117] Compiling a_utctm.c
[1006/1117] Compiling a_time.c
[1007/1117] Compiling a_mbstr.c
[1008/1117] Compiling a_object.c
[1009/1117] Compiling a_octet.c
[1010/1117] Compiling a_int.c
[1011/1117] Compiling a_strex.c
[1012/1117] Compiling a_gentm.c
[1012/1117] Write sources
[1016/1117] Compiling a_dup.c
[1017/1117] Compiling a_i2d_fp.c
[1018/1117] Compiling a_d2i_fp.c
[1019/1117] Compiling a_bool.c
[1020/1117] Compiling a_bitstr.c
[1022/1181] Compiling SwiftOptions Options.swift
[1023/1181] Compiling SwiftOptions OptionTable.swift
[1024/1182] Compiling AEXML Error.swift
[1026/1182] Emitting module AEXML
[1027/1182] Compiling AEXML Document.swift
[1028/1182] Compiling AEXML Options.swift
[1029/1182] Compiling AEXML Parser.swift
[1029/1182] Wrapping AST for SwiftOptions for debugging
[1031/1182] Compiling AEXML Element.swift
[1033/1183] Emitting module CryptoBoringWrapper
[1033/1258] Wrapping AST for AEXML for debugging
[1035/1370] Compiling CryptoBoringWrapper CryptoKitErrors_boring.swift
[1036/1370] Compiling CryptoBoringWrapper BoringSSLAEAD.swift
[1037/1371] Wrapping AST for CryptoBoringWrapper for debugging
[1039/1371] Compiling XcodeProj Path+Extras.swift
[1040/1371] Compiling XcodeProj String+Utils.swift
[1041/1371] Compiling XcodeProj String+md5.swift
[1042/1371] Compiling XcodeProj BuildPhase.swift
[1043/1371] Compiling XcodeProj PBXBuildFile.swift
[1044/1371] Compiling XcodeProj PBXBuildPhase.swift
[1045/1371] Compiling XcodeProj PBXBuildRule.swift
[1046/1371] Compiling XcodeProj PBXCopyFilesBuildPhase.swift
[1047/1452] Compiling Crypto HPKE.swift
[1048/1452] Compiling Crypto HPKE-Context.swift
[1049/1452] Compiling Crypto HPKE-KeySchedule.swift
[1050/1452] Compiling Crypto HPKE-Modes.swift
[1051/1452] Compiling Crypto Insecure.swift
[1052/1452] Compiling Crypto Insecure_HashFunctions.swift
[1053/1452] Compiling Crypto KEM.swift
[1054/1452] Compiling Crypto AES-GCM.swift
[1055/1452] Compiling Crypto AES-GCM_boring.swift
[1056/1452] Compiling Crypto ChaChaPoly_boring.swift
[1057/1452] Compiling Crypto ChaChaPoly.swift
[1058/1452] Compiling Crypto Cipher.swift
[1059/1452] Compiling Crypto Nonces.swift
[1060/1452] Compiling Crypto ASN1.swift
[1061/1452] Compiling Crypto ASN1Any.swift
[1062/1452] Compiling Crypto ECDH_boring.swift
[1063/1452] Compiling Crypto DH.swift
[1064/1452] Compiling Crypto ECDH.swift
[1065/1452] Compiling Crypto HKDF.swift
[1066/1452] Compiling Crypto AESWrap.swift
[1067/1452] Compiling Crypto AESWrap_boring.swift
[1068/1452] Compiling Crypto HMAC.swift
[1069/1452] Emitting module Basics
[1070/1452] Compiling Crypto GeneralizedTime.swift
[1071/1452] Compiling Crypto ObjectIdentifier.swift
[1072/1452] Compiling Crypto ECDSASignature.swift
[1073/1452] Compiling Crypto PEMDocument.swift
[1074/1452] Compiling Crypto PKCS8PrivateKey.swift
[1075/1452] Compiling Crypto SEC1PrivateKey.swift
[1076/1452] Compiling Crypto SubjectPublicKeyInfo.swift
[1077/1452] Compiling Crypto CryptoKitErrors.swift
[1078/1452] Compiling Crypto Digest_boring.swift
[1079/1452] Compiling Crypto Digest.swift
[1080/1452] Compiling Crypto Digests.swift
[1081/1452] Compiling Crypto HashFunctions.swift
[1082/1452] Compiling Crypto HashFunctions_SHA2.swift
[1083/1452] Compiling Crypto HPKE-AEAD.swift
[1084/1452] Compiling Crypto HPKE-Ciphersuite.swift
[1085/1452] Compiling Crypto HPKE-KDF.swift
[1086/1452] Compiling Crypto HPKE-KexKeyDerivation.swift
[1087/1452] Compiling Crypto HPKE-LabeledExtract.swift
[1088/1452] Compiling Crypto HPKE-Utils.swift
[1089/1452] Compiling Crypto DHKEM.swift
[1090/1452] Compiling Crypto HPKE-KEM-Curve25519.swift
[1091/1452] Compiling Crypto HPKE-NIST-EC-KEMs.swift
[1092/1452] Compiling Crypto HPKE-KEM.swift
[1093/1452] Compiling Crypto HPKE-Errors.swift
[1116/1462] Compiling Crypto MACFunctions.swift
[1117/1462] Compiling Crypto MessageAuthenticationCode.swift
[1118/1462] Compiling Crypto AES.swift
[1119/1462] Compiling Crypto ECDSASignature_boring.swift
[1120/1462] Compiling Crypto ECDSA_boring.swift
[1121/1462] Compiling Crypto EdDSA_boring.swift
[1122/1462] Compiling Crypto ECDSA.swift
[1123/1462] Compiling Crypto Ed25519.swift
[1124/1462] Compiling Crypto Signature.swift
[1133/1462] Compiling Crypto ASN1BitString.swift
[1134/1462] Compiling Crypto ASN1Boolean.swift
[1135/1462] Compiling Crypto ASN1Identifier.swift
[1136/1462] Compiling Crypto ASN1Integer.swift
[1137/1462] Compiling Crypto ASN1Null.swift
[1138/1474] Compiling Crypto Ed25519_boring.swift
[1139/1474] Compiling Crypto EllipticCurvePoint_boring.swift
[1140/1474] Compiling Crypto EllipticCurve_boring.swift
[1141/1474] Compiling Crypto NISTCurvesKeys_boring.swift
[1142/1474] Compiling Crypto X25519Keys_boring.swift
[1143/1474] Compiling Crypto Curve25519.swift
[1144/1474] Compiling Crypto Ed25519Keys.swift
[1145/1474] Compiling Crypto NISTCurvesKeys.swift
[1146/1474] Compiling Crypto X25519Keys.swift
[1147/1474] Compiling Crypto SymmetricKeys.swift
[1148/1474] Emitting module XcodeProj
[1159/1474] Emitting module Crypto
[1160/1474] Emitting module SwiftSyntax
[1180/1475] Compiling XcodeProj Decoders.swift
/host/spi-builder-workspace/.build/checkouts/XcodeProj/Sources/XcodeProj/Utils/XCConfig.swift:54:9: error: unable to infer closure type without a type annotation
 52 |     /// - Returns: function that parses the line.
 53 |     static func configFrom(path: Path, projectPath: Path?) -> (String) -> (include: Path, config: XCConfig)? {
 54 |         { line in
    |         `- error: unable to infer closure type without a type annotation
 55 |             includeRegex.matches(in: line,
 56 |                                  options: [],
[1181/1475] Compiling XcodeProj JSONDecoding.swift
/host/spi-builder-workspace/.build/checkouts/XcodeProj/Sources/XcodeProj/Utils/XCConfig.swift:54:9: error: unable to infer closure type without a type annotation
 52 |     /// - Returns: function that parses the line.
 53 |     static func configFrom(path: Path, projectPath: Path?) -> (String) -> (include: Path, config: XCConfig)? {
 54 |         { line in
    |         `- error: unable to infer closure type without a type annotation
 55 |             includeRegex.matches(in: line,
 56 |                                  options: [],
[1182/1475] Compiling XcodeProj PBXBatchUpdater.swift
/host/spi-builder-workspace/.build/checkouts/XcodeProj/Sources/XcodeProj/Utils/XCConfig.swift:54:9: error: unable to infer closure type without a type annotation
 52 |     /// - Returns: function that parses the line.
 53 |     static func configFrom(path: Path, projectPath: Path?) -> (String) -> (include: Path, config: XCConfig)? {
 54 |         { line in
    |         `- error: unable to infer closure type without a type annotation
 55 |             includeRegex.matches(in: line,
 56 |                                  options: [],
[1183/1475] Compiling XcodeProj PlistValue.swift
/host/spi-builder-workspace/.build/checkouts/XcodeProj/Sources/XcodeProj/Utils/XCConfig.swift:54:9: error: unable to infer closure type without a type annotation
 52 |     /// - Returns: function that parses the line.
 53 |     static func configFrom(path: Path, projectPath: Path?) -> (String) -> (include: Path, config: XCConfig)? {
 54 |         { line in
    |         `- error: unable to infer closure type without a type annotation
 55 |             includeRegex.matches(in: line,
 56 |                                  options: [],
[1184/1475] Compiling XcodeProj ReferenceGenerator.swift
/host/spi-builder-workspace/.build/checkouts/XcodeProj/Sources/XcodeProj/Utils/XCConfig.swift:54:9: error: unable to infer closure type without a type annotation
 52 |     /// - Returns: function that parses the line.
 53 |     static func configFrom(path: Path, projectPath: Path?) -> (String) -> (include: Path, config: XCConfig)? {
 54 |         { line in
    |         `- error: unable to infer closure type without a type annotation
 55 |             includeRegex.matches(in: line,
 56 |                                  options: [],
[1185/1475] Compiling XcodeProj XCConfig.swift
/host/spi-builder-workspace/.build/checkouts/XcodeProj/Sources/XcodeProj/Utils/XCConfig.swift:54:9: error: unable to infer closure type without a type annotation
 52 |     /// - Returns: function that parses the line.
 53 |     static func configFrom(path: Path, projectPath: Path?) -> (String) -> (include: Path, config: XCConfig)? {
 54 |         { line in
    |         `- error: unable to infer closure type without a type annotation
 55 |             includeRegex.matches(in: line,
 56 |                                  options: [],
[1186/1475] Compiling XcodeProj XCWorkspace.swift
/host/spi-builder-workspace/.build/checkouts/XcodeProj/Sources/XcodeProj/Utils/XCConfig.swift:54:9: error: unable to infer closure type without a type annotation
 52 |     /// - Returns: function that parses the line.
 53 |     static func configFrom(path: Path, projectPath: Path?) -> (String) -> (include: Path, config: XCConfig)? {
 54 |         { line in
    |         `- error: unable to infer closure type without a type annotation
 55 |             includeRegex.matches(in: line,
 56 |                                  options: [],
[1187/1475] Compiling XcodeProj XCWorkspaceData.swift
/host/spi-builder-workspace/.build/checkouts/XcodeProj/Sources/XcodeProj/Utils/XCConfig.swift:54:9: error: unable to infer closure type without a type annotation
 52 |     /// - Returns: function that parses the line.
 53 |     static func configFrom(path: Path, projectPath: Path?) -> (String) -> (include: Path, config: XCConfig)? {
 54 |         { line in
    |         `- error: unable to infer closure type without a type annotation
 55 |             includeRegex.matches(in: line,
 56 |                                  options: [],
[1188/1475] Compiling XcodeProj XCWorkspaceDataElement.swift
/host/spi-builder-workspace/.build/checkouts/XcodeProj/Sources/XcodeProj/Utils/XCConfig.swift:54:9: error: unable to infer closure type without a type annotation
 52 |     /// - Returns: function that parses the line.
 53 |     static func configFrom(path: Path, projectPath: Path?) -> (String) -> (include: Path, config: XCConfig)? {
 54 |         { line in
    |         `- error: unable to infer closure type without a type annotation
 55 |             includeRegex.matches(in: line,
 56 |                                  options: [],
[1189/1475] Compiling XcodeProj XCWorkspaceDataElementLocationType.swift
/host/spi-builder-workspace/.build/checkouts/XcodeProj/Sources/XcodeProj/Utils/XCConfig.swift:54:9: error: unable to infer closure type without a type annotation
 52 |     /// - Returns: function that parses the line.
 53 |     static func configFrom(path: Path, projectPath: Path?) -> (String) -> (include: Path, config: XCConfig)? {
 54 |         { line in
    |         `- error: unable to infer closure type without a type annotation
 55 |             includeRegex.matches(in: line,
 56 |                                  options: [],
[1190/1475] Compiling XcodeProj XCWorkspaceDataFileRef.swift
/host/spi-builder-workspace/.build/checkouts/XcodeProj/Sources/XcodeProj/Utils/XCConfig.swift:54:9: error: unable to infer closure type without a type annotation
 52 |     /// - Returns: function that parses the line.
 53 |     static func configFrom(path: Path, projectPath: Path?) -> (String) -> (include: Path, config: XCConfig)? {
 54 |         { line in
    |         `- error: unable to infer closure type without a type annotation
 55 |             includeRegex.matches(in: line,
 56 |                                  options: [],
[1191/1475] Compiling XcodeProj XCWorkspaceDataGroup.swift
/host/spi-builder-workspace/.build/checkouts/XcodeProj/Sources/XcodeProj/Utils/XCConfig.swift:54:9: error: unable to infer closure type without a type annotation
 52 |     /// - Returns: function that parses the line.
 53 |     static func configFrom(path: Path, projectPath: Path?) -> (String) -> (include: Path, config: XCConfig)? {
 54 |         { line in
    |         `- error: unable to infer closure type without a type annotation
 55 |             includeRegex.matches(in: line,
 56 |                                  options: [],
[1192/1475] Wrapping AST for Basics for debugging
[1207/1475] Compiling Crypto ASN1OctetString.swift
[1208/1475] Compiling Crypto ASN1Strings.swift
[1209/1475] Compiling Crypto ArraySliceBigint.swift
[1216/1533] Compiling PackageModel ModuleMapType.swift
[1217/1533] Compiling PackageModel IdentityResolver.swift
[1218/1533] Compiling PackageModel LibraryMetadata.swift
[1219/1533] Compiling PackageModel InstalledSwiftPMConfiguration.swift
[1220/1533] Compiling PackageModel Manifest.swift
[1221/1533] Compiling PackageModel PackageConditionDescription.swift
[1222/1533] Compiling PackageModel PackageDependencyDescription.swift
[1223/1533] Compiling PackageModel PlatformDescription.swift
[1224/1533] Compiling PackageModel PackageIdentity.swift
[1225/1533] Compiling PackageModel PackageModel.swift
[1226/1533] Compiling PackageModel PackageReference.swift
[1227/1533] Compiling PackageModel Platform.swift
[1228/1533] Compiling PackageModel PlatformRegistry.swift
[1229/1533] Compiling PackageModel Product.swift
[1230/1533] Compiling PackageModel Registry.swift
[1231/1533] Compiling PackageModel RegistryReleaseMetadata.swift
[1232/1533] Compiling PackageModel Resource.swift
[1233/1533] Compiling PackageModel Sanitizers.swift
[1234/1533] Compiling PackageModel Snippet.swift
[1235/1533] Compiling PackageModel SnippetGroup.swift
[1236/1533] Compiling PackageModel PlainTextSnippetExtractor.swift
[1237/1533] Compiling PackageModel Sources.swift
[1238/1533] Compiling PackageModel ClangTarget.swift
[1239/1533] Compiling PackageModel PluginTarget.swift
[1240/1533] Compiling PackageModel SwiftTarget.swift
[1241/1533] Compiling PackageModel SystemLibraryTarget.swift
[1242/1533] Compiling Crypto RNG_boring.swift
[1243/1533] Compiling Crypto SafeCompare_boring.swift
[1244/1533] Compiling Crypto Zeroization_boring.swift
[1245/1533] Compiling Crypto PrettyBytes.swift
[1246/1533] Compiling Crypto SafeCompare.swift
[1247/1533] Compiling Crypto SecureBytes.swift
[1248/1533] Compiling Crypto Zeroization.swift
[1249/1533] Compiling XcodeProj XCScheme+TestableReference.swift
[1250/1533] Compiling XcodeProj XCScheme.swift
[1251/1533] Compiling XcodeProj XCSchemeManagement.swift
[1252/1533] Compiling XcodeProj BuildSettingsProvider.swift
[1253/1533] Compiling XcodeProj CommentedString.swift
[1257/1533] Compiling Crypto ArbitraryPrecisionInteger_boring.swift
[1258/1533] Compiling Crypto CryptoKitErrors_boring.swift
[1259/1533] Compiling Crypto FiniteFieldArithmeticContext_boring.swift
[1277/1546] Emitting module SPMLLBuild
[1278/1546] Compiling SPMLLBuild llbuild.swift
[1280/1548] Compiling LLBuildManifest Node.swift
[1281/1548] Wrapping AST for Crypto for debugging
[1283/1548] Compiling LLBuildManifest LLBuildManifestWriter.swift
[1283/1548] Wrapping AST for SPMLLBuild for debugging
[1285/1567] Compiling LLBuildManifest Command.swift
[1286/1567] Emitting module LLBuildManifest
[1287/1567] Compiling LLBuildManifest LLBuildManifest.swift
[1288/1567] Compiling SourceryUtils Time.swift
[1289/1567] Compiling SourceryUtils Version.swift
/host/spi-builder-workspace/SourceryUtils/Sources/Version.swift:13:23: warning: static property 'current' is not concurrency-safe because non-'Sendable' type 'SourceryVersion' may have shared mutable state; this is an error in the Swift 6 language mode
 9 | import Foundation
10 |
11 | public struct SourceryVersion {
   |               `- note: consider making struct 'SourceryVersion' conform to the 'Sendable' protocol
12 |     public let value: String
13 |     public static let current = SourceryVersion(value: inUnitTests ? "Major.Minor.Patch" : "2.2.6")
   |                       |- warning: static property 'current' is not concurrency-safe because non-'Sendable' type 'SourceryVersion' may have shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: annotate 'current' with '@MainActor' if property should only be accessed from the main actor
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | }
15 |
[1302/1567] Compiling PackageModel Target.swift
[1303/1567] Compiling PackageModel Toolchain.swift
[1304/1567] Compiling PackageModel SupportedLanguageExtension.swift
[1305/1567] Compiling PackageModel SwiftLanguageVersion.swift
[1306/1567] Compiling PackageModel SwiftSDK.swift
[1307/1567] Compiling PackageModel SwiftSDKBundle.swift
[1308/1567] Compiling PackageModel SwiftSDKBundleStore.swift
[1309/1567] Compiling PackageModel SwiftSDKConfigurationStore.swift
[1310/1567] Compiling PackageModel BinaryTarget.swift
[1315/1567] Compiling SourceryUtils Sha.swift
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:081dcf4fb829aea9d08447f4790431afbdfbcc335bfeed728ca69c6f181ae2aa
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
warning: 'spi-builder-workspace': found 8 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /host/spi-builder-workspace/Templates/Tests/Context/AutoMockable.swift
    /host/spi-builder-workspace/Templates/Tests/Context/AutoCases.swift
    /host/spi-builder-workspace/Templates/Tests/Context/AutoCodable.swift
    /host/spi-builder-workspace/Templates/Tests/Context/AutoHashable.swift
    /host/spi-builder-workspace/Templates/Tests/Context/AutoEquatable.swift
    /host/spi-builder-workspace/Templates/Tests/Context/AutoLenses.swift
    /host/spi-builder-workspace/Templates/artifactbundle.info.json.template
    /host/spi-builder-workspace/Templates/Tests/Context/LinuxMain.swift
warning: 'spi-builder-workspace': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /host/spi-builder-workspace/Tests/SourceryLibTests/Stub/Source/TestProject/TestProject/Info.plist
warning: 'spi-builder-workspace': found 6 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /host/spi-builder-workspace/Templates/Tests/Context_Linux/AutoLenses.swift
    /host/spi-builder-workspace/Templates/Tests/Context_Linux/LinuxMain.swift
    /host/spi-builder-workspace/Templates/Tests/Context_Linux/AutoMockable.swift
    /host/spi-builder-workspace/Templates/Tests/Context_Linux/AutoCases.swift
    /host/spi-builder-workspace/Templates/Tests/Context_Linux/AutoEquatable.swift
    /host/spi-builder-workspace/Templates/Tests/Context_Linux/AutoHashable.swift
warning: 'swift-package-manager': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /host/spi-builder-workspace/.build/checkouts/swift-package-manager/Sources/PackageModel/InstalledLibrariesSupport/provided-libraries.json
warning: 'swift-package-manager': found 1 file(s) which are unhandled; explicitly declare them as resources or exclude from the target
    /host/spi-builder-workspace/.build/checkouts/swift-package-manager/Sources/PackageModel/InstalledLibrariesSupport/provided-libraries.json
[0/1] Planning build
[1/1] Compiling plugin GenerateManual
/host/spi-builder-workspace/Plugins/SourceryCommandPlugin/SourceryCommandPlugin.swift:72:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
70 | #endif
71 |
72 | extension String: LocalizedError {
   | |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
73 |     public var errorDescription: String? { return self }
74 | }
/host/spi-builder-workspace/Plugins/SourceryCommandPlugin/SourceryCommandPlugin.swift:72:1: warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
70 | #endif
71 |
72 | extension String: LocalizedError {
   | |- warning: extension declares a conformance of imported type 'String' to imported protocols 'LocalizedError', 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
73 |     public var errorDescription: String? { return self }
74 | }
[2/2] Compiling plugin SourceryCommandPlugin
Building for debugging...
[2/59] Write swift-version-24593BA9C3E375BF.txt
[4/116] Compiling TSCLibc libc.swift
[5/118] Emitting module TSCLibc
[6/137] Compiling PackageCollectionsModel PackageCollectionModel.swift
[8/136] Compiling SystemPackage FilePermissions.swift
[9/136] Compiling SystemPackage Mocking.swift
[10/138] Compiling SystemPackage Constants.swift
[11/138] Compiling SystemPackage Exports.swift
[12/138] Compiling SystemPackage FilePathSyntax.swift
[13/138] Compiling SystemPackage FilePathWindows.swift
[14/138] Compiling Commander Command.swift
[15/139] Compiling Commander Error.swift
[16/139] Compiling SystemPackage CInterop.swift
[21/142] Compiling llbuildSwift BuildValue.swift
[22/143] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[23/143] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[24/144] Compiling Commander ArgumentParser.swift
[25/144] Compiling llbuildSwift CoreBindings.swift
[26/144] Compiling llbuildSwift Internals.swift
[27/144] Compiling llbuildSwift NinjaManifest.swift
[31/144] Compiling SystemPackage PlatformString.swift
[32/144] Compiling SystemPackage SystemString.swift
[33/144] Compiling SystemPackage FileHelpers.swift
[34/144] Compiling SystemPackage FileOperations.swift
[35/144] Compiling Commander Group.swift
[36/144] Compiling SystemPackage Errno.swift
[37/144] Compiling SystemPackage FileDescriptor.swift
[39/144] Emitting module SystemPackage
[40/144] Emitting module InternalCollectionsUtilities
[44/144] Compiling SystemPackage Util.swift
[45/144] Compiling SystemPackage UtilConsumers.swift
[49/144] Compiling SystemPackage FilePathComponents.swift
[50/144] Compiling SystemPackage FilePathParsing.swift
[51/144] Compiling SystemPackage FilePathString.swift
[54/144] Compiling SystemPackage FilePath.swift
[55/144] Compiling SystemPackage FilePathComponentView.swift
[56/145] Emitting module PathKit
[57/145] Compiling PathKit PathKit.swift
[58/145] Compiling Yams YamlError.swift
[59/146] Emitting module _CertificateInternals
[60/146] Compiling _CertificateInternals _TinyArray.swift
[78/148] Emitting module Commander
[81/148] Compiling llbuildSwift BuildKey.swift
[82/148] Compiling llbuildSwift BuildDBBindings.swift
[83/148] Emitting module llbuildSwift
[84/148] Compiling llbuildSwift BuildSystemBindings.swift
[87/145] Emitting module Yams
[91/161] Emitting module PackageCollectionsModel
[92/161] Compiling PackageCollectionsModel PackageCollectionModel+v1.swift
[93/209] Emitting module SwiftSyntax510
[94/225] Compiling SwiftSyntax510 Empty.swift
[95/264] Emitting module SwiftSyntax509
[96/264] Compiling SwiftSyntax509 Empty.swift
[100/306] Compiling OrderedCollections OrderedSet+Partial SetAlgebra intersection.swift
[101/306] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isDisjoint.swift
[102/306] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isEqualSet.swift
[103/306] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSubset.swift
[104/306] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSuperset.swift
[105/306] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSubset.swift
[106/306] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSuperset.swift
[107/306] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtract.swift
[108/306] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtracting.swift
[109/306] Compiling OrderedCollections OrderedSet+Partial SetAlgebra symmetricDifference.swift
[110/306] Compiling OrderedCollections OrderedSet+Partial SetAlgebra union.swift
[111/306] Compiling OrderedCollections OrderedSet+Partial SetAlgebra+Basics.swift
[112/306] Compiling OrderedCollections OrderedSet+RandomAccessCollection.swift
[113/306] Compiling OrderedCollections OrderedSet+ReserveCapacity.swift
[114/313] Compiling DequeModule Deque+Codable.swift
[115/313] Compiling DequeModule Deque+Collection.swift
[116/313] Compiling DequeModule Deque+CustomReflectable.swift
[117/313] Compiling DequeModule Deque+Descriptions.swift
[118/313] Compiling DequeModule Deque+Equatable.swift
[119/313] Compiling DequeModule Deque+ExpressibleByArrayLiteral.swift
[120/318] Compiling CryptoBoringWrapper CryptoKitErrors_boring.swift
[121/318] Compiling Stencil Lexer.swift
[122/318] Compiling Stencil Loader.swift
[123/320] Compiling SourceryJS resource_bundle_accessor.swift
[124/320] Compiling SourceryJS EJSTemplate.swift
[125/320] Compiling SourceryJS EJSTemplate+Tests.swift
[126/320] Emitting module SourceryJS
[133/320] Compiling DequeModule Deque+Extras.swift
[134/320] Compiling DequeModule Deque+Hashable.swift
[142/323] Compiling DequeModule _UnsafeWrappedBuffer.swift
[143/323] Compiling SwiftASN1 DER.swift
[144/323] Compiling SwiftASN1 Errors.swift
[145/323] Compiling DequeModule _DequeBuffer.swift
[146/323] Compiling DequeModule _DequeBufferHeader.swift
[147/325] Compiling OrderedCollections OrderedDictionary+Hashable.swift
[148/325] Compiling OrderedCollections OrderedDictionary+Initializers.swift
[149/325] Compiling OrderedCollections OrderedDictionary+Invariants.swift
[150/325] Compiling OrderedCollections OrderedDictionary+Partial MutableCollection.swift
[151/325] Compiling OrderedCollections OrderedDictionary+Partial RangeReplaceableCollection.swift
[152/325] Compiling OrderedCollections OrderedDictionary+Sendable.swift
[153/325] Compiling OrderedCollections OrderedDictionary+Sequence.swift
[154/325] Compiling OrderedCollections OrderedDictionary+Values.swift
[155/325] Compiling OrderedCollections OrderedSet+Initializers.swift
[156/325] Compiling OrderedCollections OrderedSet+Insertions.swift
[157/325] Compiling OrderedCollections OrderedSet+Invariants.swift
[158/325] Compiling OrderedCollections OrderedSet+Partial MutableCollection.swift
[159/325] Compiling OrderedCollections OrderedSet+Partial RangeReplaceableCollection.swift
[160/325] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formIntersection.swift
[161/325] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formSymmetricDifference.swift
[162/325] Compiling TSCBasic TerminalController.swift
[165/325] Compiling Stencil Parser.swift
[166/325] Compiling Stencil Template.swift
[167/325] Compiling Stencil Tokenizer.swift
[168/325] Compiling Stencil TrimBehaviour.swift
[169/325] Compiling Stencil Variable.swift
[170/325] Compiling OrderedCollections OrderedSet+Hashable.swift
[177/325] Compiling DequeModule Deque._Storage.swift
[178/325] Compiling DequeModule Deque._UnsafeHandle.swift
[179/325] Compiling DequeModule Deque.swift
[182/325] Compiling DequeModule _DequeSlot.swift
[183/325] Emitting module CryptoBoringWrapper
[184/325] Compiling CryptoBoringWrapper BoringSSLAEAD.swift
[187/326] Compiling DequeModule Deque+Testing.swift
[193/326] Emitting module Stencil
[217/324] Emitting module TSCBasic
[237/372] Compiling SwiftSyntax SyntaxText.swift
[238/372] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[240/388] Compiling CodableContext AutoCodable.generated.swift
[241/388] Compiling CodableContext AutoCodable.swift
[242/388] Emitting module CodableContext
[243/389] Compiling SwiftSyntax Tokens.swift
[244/389] Compiling SwiftSyntax TriviaPieces.swift
[245/389] Compiling SwiftSyntax RawSyntaxNodesAB.swift
[246/389] Compiling SwiftSyntax RawSyntaxNodesC.swift
[247/389] Compiling SwiftSyntax RawSyntaxNodesD.swift
[248/389] Compiling OrderedCollections OrderedSet.swift
[249/389] Compiling OrderedCollections _UnsafeBitset.swift
[250/389] Compiling SwiftSyntax SourcePresence.swift
[251/389] Compiling SwiftSyntax SwiftSyntaxCompatibility.swift
[252/389] Compiling SwiftSyntax Syntax.swift
[253/389] Compiling SwiftSyntax RenamedNodesCompatibility.swift
[254/389] Compiling SwiftSyntax SyntaxAnyVisitor.swift
[255/389] Compiling SwiftSyntax SyntaxBaseNodes.swift
[256/389] Compiling SwiftSyntax SyntaxCollections.swift
[257/389] Compiling SwiftSyntax SyntaxEnum.swift
[258/389] Compiling SwiftSyntax SyntaxKind.swift
[259/389] Compiling SwiftSyntax SyntaxRewriter.swift
[260/389] Emitting module DequeModule
[263/390] Compiling SwiftSyntax SyntaxHashable.swift
[264/390] Compiling SwiftSyntax SyntaxIdentifier.swift
[265/390] Compiling SwiftSyntax SyntaxNodeStructure.swift
[266/390] Compiling SwiftSyntax SyntaxProtocol.swift
[269/390] Compiling SwiftSyntax RawSyntax.swift
[270/390] Compiling SwiftSyntax RawSyntaxLayoutView.swift
[271/390] Compiling SwiftSyntax RawSyntaxNodeProtocol.swift
[272/390] Compiling SwiftSyntax RawSyntaxTokenView.swift
[273/390] Compiling SwiftSyntax SourceLength.swift
[274/390] Compiling SwiftSyntax SourceLocation.swift
[275/389] Compiling SwiftSyntax Utils.swift
[276/389] Compiling SwiftSyntax ChildNameForKeyPath.swift
[277/389] Compiling SwiftSyntax Keyword.swift
[278/389] Compiling SwiftSyntax RenamedChildrenCompatibility.swift
[279/389] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[280/390] Emitting module OrderedCollections
[282/390] Wrapping AST for Yams for debugging
[283/476] Wrapping AST for TSCBasic for debugging
[285/476] Emitting module SwiftASN1
[286/483] Compiling Crypto AES-GCM.swift
[287/483] Compiling Crypto AES-GCM_boring.swift
[288/484] Emitting module StencilSwiftKit
[288/484] Wrapping AST for Stencil for debugging
[291/484] Compiling StencilSwiftKit SetNode.swift
[292/483] Compiling StencilSwiftKit StencilSwiftTemplate.swift
[293/483] Compiling Crypto ASN1.swift
[294/483] Compiling Crypto ASN1Any.swift
[294/484] Wrapping AST for PathKit for debugging
[296/509] Emitting module AEXML
[297/518] Compiling AEXML Error.swift
[298/518] Compiling AEXML Options.swift
[299/518] Compiling AEXML Parser.swift
[300/518] Compiling AEXML Document.swift
[301/518] Compiling AEXML Element.swift
[302/519] Compiling StencilSwiftKit Parameters.swift
[303/519] Compiling StencilSwiftKit SwiftIdentifier.swift
[305/519] Compiling TSCUtility BitstreamWriter.swift
[306/519] Compiling TSCUtility BuildFlags.swift
[307/519] Compiling TSCUtility CollectionExtensions.swift
[308/519] Compiling TSCUtility Context.swift
[310/519] Compiling Commander CommandRunner.swift
[311/519] Compiling Commander Commands.swift
[312/519] Compiling Commander CommandType.swift
[312/520] Wrapping AST for StencilSwiftKit for debugging
[314/520] Wrapping AST for Commander for debugging
[316/520] Compiling Crypto Ed25519_boring.swift
[317/520] Compiling Crypto EllipticCurvePoint_boring.swift
[318/520] Compiling Crypto EllipticCurve_boring.swift
[319/520] Compiling Crypto NISTCurvesKeys_boring.swift
[320/520] Compiling Crypto X25519Keys_boring.swift
[321/520] Compiling Crypto Curve25519.swift
[322/520] Compiling Crypto Ed25519Keys.swift
[323/520] Compiling Crypto NISTCurvesKeys.swift
[324/520] Compiling Crypto X25519Keys.swift
[325/520] Compiling Crypto SymmetricKeys.swift
[326/530] Compiling TSCUtility PkgConfig.swift
[327/530] Compiling TSCUtility Platform.swift
[328/530] Compiling TSCUtility PolymorphicCodable.swift
[329/530] Compiling TSCUtility ProgressAnimation.swift
[330/530] Compiling TSCUtility SerializedDiagnostics.swift
[331/530] Compiling TSCUtility SimplePersistence.swift
[332/530] Compiling TSCUtility StringExtensions.swift
[333/530] Compiling TSCUtility StringMangling.swift
[334/530] Compiling TSCUtility Tracing.swift
[335/530] Compiling TSCUtility Triple.swift
[338/531] Compiling TSCUtility URL.swift
[339/531] Compiling TSCUtility Verbosity.swift
[340/575] Compiling XcodeProj PBXRezBuildPhase.swift
[341/575] Compiling XcodeProj PBXShellScriptBuildPhase.swift
[342/575] Compiling XcodeProj PBXSourcesBuildPhase.swift
[343/575] Compiling XcodeProj BuildSettings.swift
[344/575] Compiling XcodeProj XCBuildConfiguration.swift
[345/575] Compiling XcodeProj XCConfigurationList.swift
[346/575] Compiling XcodeProj PBXContainerItem.swift
[347/575] Compiling XcodeProj PBXReferenceProxy.swift
[348/575] Compiling Crypto HPKE-Ciphersuite.swift
[349/575] Compiling Crypto HPKE-KDF.swift
[350/575] Compiling Crypto HPKE-KexKeyDerivation.swift
[351/687] Compiling SourceryRuntime Coding.generated.swift
[352/687] Compiling SourceryRuntime JSExport.generated.swift
[353/687] Compiling SourceryRuntime Typed.generated.swift
[354/687] Compiling SourceryRuntime AssociatedType_Linux.swift
[355/687] Compiling SourceryRuntime AssociatedValue_Linux.swift
[356/687] Compiling XcodeProj PBXProductType.swift
[357/687] Compiling XcodeProj XCScheme+AnalyzeAction.swift
[358/687] Compiling XcodeProj XCScheme+ArchiveAction.swift
[359/687] Compiling XcodeProj XCScheme+BuildAction.swift
[360/687] Compiling XcodeProj XCScheme+BuildableProductRunnable.swift
[361/687] Compiling XcodeProj XCScheme+BuildableReference.swift
[362/687] Compiling XcodeProj XCScheme+CommandLineArguments.swift
[363/687] Compiling XcodeProj XCScheme+EnvironmentVariable.swift
[364/687] Compiling XcodeProj XCScheme+ExecutionAction.swift
[365/687] Compiling XcodeProj XCScheme+LaunchAction.swift
[366/687] Compiling SourceryRuntime AssociatedValue.swift
[367/687] Compiling SourceryRuntime ClosureParameter.swift
[368/687] Compiling SourceryRuntime Enum.swift
[369/687] Compiling SourceryRuntime EnumCase.swift
[370/687] Compiling SourceryRuntime GenericParameter.swift
[371/687] Compiling SourceryRuntime GenericRequirement.swift
[372/687] Compiling SourceryRuntime Method.swift
[373/687] Compiling SourceryRuntime MethodParameter.swift
[374/687] Compiling SourceryRuntime Subscript.swift
[375/695] Emitting module TSCUtility
[376/695] Compiling SourceryRuntime AssociatedType.swift
[386/695] Compiling SourceryRuntime Dictionary.swift
[387/695] Compiling SourceryRuntime Generic.swift
[388/695] Compiling SourceryRuntime Set.swift
[389/695] Compiling SourceryRuntime Typed.swift
[390/695] Compiling SourceryRuntime AccessLevel.swift
[391/695] Compiling SourceryRuntime Documentation.swift
[392/695] Compiling SourceryRuntime Import.swift
[393/695] Compiling SourceryRuntime Modifier.swift
[394/695] Compiling SourceryRuntime TemplateContext.swift
[395/695] Compiling SourceryRuntime AutoHashable.generated.swift
[396/695] Emitting module Crypto
[397/695] Compiling SourceryRuntime Type.swift
[398/695] Compiling SourceryRuntime Closure.swift
[399/695] Compiling SourceryRuntime GenericTypeParameter.swift
[400/695] Compiling SourceryRuntime Tuple.swift
[401/695] Compiling SourceryRuntime TypeName.swift
[402/695] Compiling SourceryRuntime Variable.swift
[403/695] Compiling SourceryRuntime Types.swift
[404/695] Compiling SourceryRuntime TypesCollection.swift
[405/695] Compiling SourceryRuntime PhantomProtocols.swift
[406/695] Compiling SourceryRuntime Protocol.swift
[407/695] Compiling SourceryRuntime ProtocolComposition.swift
[408/695] Compiling SourceryRuntime Struct.swift
[409/695] Compiling SourceryRuntime Array.swift
[419/703] Compiling SourceryRuntime FileParserResult.swift
[420/703] Compiling SourceryRuntime Log.swift
[421/703] Compiling SourceryRuntime Enum_Linux.swift
[422/703] Compiling SourceryRuntime GenericParameter_Linux.swift
[423/703] Compiling SourceryRuntime Actor.swift
[424/703] Compiling SourceryRuntime Annotations.swift
[425/703] Compiling SourceryRuntime Attribute.swift
[426/703] Compiling SourceryRuntime Class.swift
[427/703] Compiling SourceryRuntime Definition.swift
[450/703] Compiling SourceryRuntime ClosureParameter_Linux.swift
[451/703] Compiling SourceryRuntime EnumCase_Linux.swift
[452/703] Compiling SourceryRuntime Typealias.swift
[453/703] Compiling SourceryRuntime Array+Parallel.swift
[454/703] Compiling SourceryRuntime BytesRange.swift
[455/703] Emitting module SourceryRuntime
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:101:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 99 | }
100 |
101 | extension String: Error {}
    | |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
102 |
[465/704] Wrapping AST for TSCUtility for debugging
[467/704] Compiling XcodeProj XCScheme+LocationScenarioReference.swift
[468/704] Compiling XcodeProj XCScheme+PathRunnable.swift
[469/704] Compiling XcodeProj XCScheme+ProfileAction.swift
[470/704] Compiling XcodeProj XCScheme+RemoteRunnable.swift
[471/704] Compiling XcodeProj XCScheme+Runnable.swift
[472/704] Compiling XcodeProj XCScheme+SerialAction.swift
[473/704] Compiling XcodeProj XCScheme+StoreKitConfigurationFileReference.swift
[474/704] Compiling XcodeProj XCScheme+TestAction.swift
[475/704] Compiling XcodeProj XCScheme+TestItem.swift
[476/704] Compiling XcodeProj XCScheme+TestPlanReference.swift
[478/713] Emitting module XcodeProj
[478/780] Wrapping AST for Crypto for debugging
[480/787] Compiling SwiftOptions DriverKind.swift
[481/799] Compiling SwiftOptions PrefixTrie.swift
[482/799] Compiling SwiftOptions ParsedOptions.swift
[483/799] Compiling _CryptoExtras CryptoKitErrors_boring.swift
[484/799] Compiling _CryptoExtras DigestType.swift
[485/799] Compiling _CryptoExtras Error.swift
[486/799] Compiling Basics SendableBox.swift
[487/799] Compiling Basics ThreadSafeArrayStore.swift
[488/799] Compiling Basics ThreadSafeBox.swift
[489/799] Compiling Basics ThreadSafeKeyValueStore.swift
[490/799] Compiling Basics TokenBucket.swift
[491/799] Compiling Basics DispatchTimeInterval+Extensions.swift
[492/799] Compiling _CryptoExtras AES_GCM_SIV.swift
[493/799] Compiling _CryptoExtras Block Function.swift
[494/799] Compiling _CryptoExtras AES_GCM_SIV_boring.swift
[495/799] Compiling _CryptoExtras ChaCha20CTR_boring.swift
[496/799] Compiling _CryptoExtras RSA_boring.swift
[497/799] Compiling _CryptoExtras RSA_security.swift
[498/799] Compiling _CryptoExtras ChaCha20CTR.swift
[499/799] Compiling _CryptoExtras RSA.swift
[500/799] Compiling _CryptoExtras BoringSSLHelpers.swift
[501/799] Compiling Basics VirtualFileSystem.swift
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:101:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 99 | }
100 |
101 | extension String: Error {}
    | |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
102 |
[502/799] Compiling Basics HTTPClient.swift
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:101:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 99 | }
100 |
101 | extension String: Error {}
    | |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
102 |
[503/799] Compiling Basics HTTPClientConfiguration.swift
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:101:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 99 | }
100 |
101 | extension String: Error {}
    | |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
102 |
[504/799] Compiling Basics HTTPClientError.swift
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:101:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 99 | }
100 |
101 | extension String: Error {}
    | |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
102 |
[505/799] Compiling Basics HTTPClientHeaders.swift
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:101:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 99 | }
100 |
101 | extension String: Error {}
    | |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
102 |
[506/799] Compiling Basics HTTPClientRequest.swift
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:101:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 99 | }
100 |
101 | extension String: Error {}
    | |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
102 |
[507/799] Compiling Basics HTTPClientResponse.swift
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:101:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 99 | }
100 |
101 | extension String: Error {}
    | |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
102 |
[508/799] Compiling Basics HTTPMethod.swift
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:101:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 99 | }
100 |
101 | extension String: Error {}
    | |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
102 |
[509/799] Compiling Basics LegacyHTTPClient.swift
/host/spi-builder-workspace/SourceryRuntime/Sources/Common/Log.swift:101:1: warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 99 | }
100 |
101 | extension String: Error {}
    | |- warning: extension declares a conformance of imported type 'String' to imported protocol 'Error'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
102 |
[517/799] Compiling XcodeProj XCScheme+TestableReference.swift
[518/799] Compiling XcodeProj XCScheme.swift
[519/799] Compiling XcodeProj XCSchemeManagement.swift
[520/799] Compiling XcodeProj BuildSettingsProvider.swift
[521/799] Compiling XcodeProj CommentedString.swift
[522/799] Compiling SourceryUtils Time.swift
[523/799] Compiling SourceryUtils Version.swift
[524/799] Compiling SourceryUtils Sha.swift
[529/800] Emitting module SourceryUtils
[530/800] Compiling SourceryUtils Path+Extensions.swift
[533/801] Compiling _CryptoExtras PEMDocument.swift
[535/801] Compiling Basics LegacyHTTPClientRequest.swift
[536/801] Compiling Basics URLSessionHTTPClient.swift
[537/801] Compiling Basics ImportScanning.swift
[538/801] Compiling Basics JSON+Extensions.swift
[539/801] Compiling Basics JSONDecoder+Extensions.swift
[540/801] Compiling Basics Netrc.swift
[541/801] Compiling Basics OSSignpost.swift
[542/801] Compiling Basics Observability.swift
[543/801] Compiling Basics NinjaProgressAnimation.swift
[544/801] Compiling Basics PercentProgressAnimation.swift
[545/801] Compiling Basics ProgressAnimationProtocol.swift
[546/801] Compiling Basics SingleLinePercentProgressAnimation.swift
[547/801] Compiling Basics ThrottledProgressAnimation.swift
[548/801] Compiling Basics SQLite.swift
[549/801] Compiling Basics SQLiteBackedCache.swift
[550/801] Compiling Basics Sandbox.swift
[551/801] Compiling Basics SendableTimeInterval.swift
[552/801] Compiling Basics SerializedJSON.swift
[565/801] Compiling _CryptoExtras RandomBytes.swift
[566/801] Emitting module _CryptoExtras
[583/809] Wrapping AST for SourceryUtils for debugging
[595/809] Compiling Basics EnvironmentVariables.swift
[596/809] Compiling Basics Errors.swift
[597/809] Compiling Basics AbsolutePath.swift
[598/809] Compiling Basics FileSystem+Extensions.swift
[599/809] Compiling Basics NativePathExtensions.swift
[600/809] Compiling Basics RelativePath.swift
[609/809] Emitting module Basics
[610/809] Compiling Basics VFSOverlay.swift
[634/809] Compiling Basics TSCAdapters.swift
[635/809] Compiling Basics TemporaryFile.swift
[654/808] Compiling Basics SourceControlURL.swift
[655/808] Compiling Basics SwiftVersion.swift
[656/808] Compiling Basics Triple+Basics.swift
[657/808] Compiling Basics Triple+Platforms.swift
[658/808] Compiling Basics Triple.swift
[659/808] Compiling Basics Version+Extensions.swift
[660/808] Compiling Basics WritableByteStream+Extensions.swift
[661/808] Compiling SwiftSyntax SyntaxNodesEF.swift
[662/808] Compiling SwiftSyntax SyntaxNodesGHI.swift
[663/808] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[664/808] Compiling SwiftSyntax SyntaxNodesOP.swift
[665/808] Compiling SwiftSyntax SyntaxNodesQRS.swift
[666/808] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[692/816] Emitting module SwiftOptions
[693/816] Emitting module SourcerySwift
[694/816] Compiling SourcerySwift SourceryRuntime.content.generated.swift
[695/816] Emitting module SourceryStencil
/host/spi-builder-workspace/SourceryStencil/Sources/StencilTemplate.swift:7:53: warning: 'StencilSwiftTemplate' is deprecated: No longer needed with Stencil whitespace control features
  5 | import SourceryRuntime
  6 |
  7 | public final class StencilTemplate: StencilSwiftKit.StencilSwiftTemplate {
    |                                                     `- warning: 'StencilSwiftTemplate' is deprecated: No longer needed with Stencil whitespace control features
  8 |     private(set) public var sourcePath: Path = ""
  9 |
[696/816] Compiling SourceryStencil TypedNode.swift
[699/817] Wrapping AST for _CryptoExtras for debugging
[701/817] Compiling SourceryStencil StencilTemplate.swift
/host/spi-builder-workspace/SourceryStencil/Sources/StencilTemplate.swift:7:53: warning: 'StencilSwiftTemplate' is deprecated: No longer needed with Stencil whitespace control features
  5 | import SourceryRuntime
  6 |
  7 | public final class StencilTemplate: StencilSwiftKit.StencilSwiftTemplate {
    |                                                     `- warning: 'StencilSwiftTemplate' is deprecated: No longer needed with Stencil whitespace control features
  8 |     private(set) public var sourcePath: Path = ""
  9 |
[702/817] Compiling SourceryStencil NewLineNode.swift
[703/817] Compiling XcodeProj Decoders.swift
[704/817] Compiling XcodeProj JSONDecoding.swift
[705/817] Compiling XcodeProj PBXBatchUpdater.swift
[706/817] Compiling XcodeProj PlistValue.swift
[707/817] Compiling XcodeProj ReferenceGenerator.swift
[708/817] Compiling XcodeProj XCConfig.swift
[709/817] Compiling XcodeProj XCWorkspace.swift
[710/817] Compiling XcodeProj XCWorkspaceData.swift
[711/817] Compiling XcodeProj XCWorkspaceDataElement.swift
[712/817] Compiling XcodeProj XCWorkspaceDataElementLocationType.swift
[713/817] Compiling XcodeProj XCWorkspaceDataFileRef.swift
[714/817] Compiling XcodeProj XCWorkspaceDataGroup.swift
[715/819] Compiling SourcerySwift SourceryRuntime_Linux.content.generated.swift
[716/819] Compiling SourcerySwift SwiftTemplate.swift
/host/spi-builder-workspace/SourcerySwift/Sources/SwiftTemplate.swift:412:14: warning: 'launchPath' is deprecated: renamed to 'executableURL'
410 |         }
411 |
412 |         task.launchPath = path
    |              |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
    |              `- note: use 'executableURL' instead
413 |         task.environment = environment
414 |         task.arguments = arguments
/host/spi-builder-workspace/SourcerySwift/Sources/SwiftTemplate.swift:431:14: warning: 'launch()' is deprecated: renamed to 'run'
429 |
430 |         Log.verbose(path + " " + arguments.map { "\"\($0)\"" }.joined(separator: " "))
431 |         task.launch()
    |              |- warning: 'launch()' is deprecated: renamed to 'run'
    |              `- note: use 'run' instead
432 |
433 |         let outputData = outHandle.readDataToEndOfFile()
[719/820] Compiling SwiftOptions OptionTable.swift
[720/820] Compiling SwiftOptions OptionParsing.swift
[721/820] Compiling SwiftOptions Option.swift
[722/820] Compiling SwiftOptions Options.swift
[724/892] Wrapping AST for SourceryStencil for debugging
[725/902] Wrapping AST for XcodeProj for debugging
[726/902] Wrapping AST for SourcerySwift for debugging
[728/902] Compiling X509 OCSPResponseData.swift
[729/902] Compiling X509 OCSPResponseStatus.swift
[730/902] Compiling X509 OCSPSignature.swift
[731/902] Compiling X509 OCSPSingleRequest.swift
[732/902] Compiling X509 OCSPSingleResponse.swift
[733/902] Compiling X509 OCSPTBSRequest.swift
[734/902] Compiling X509 OCSPVersion.swift
[735/1001] Wrapping AST for Basics for debugging
[737/1059] Emitting module LLBuildManifest
[738/1059] Emitting module SPMLLBuild
[739/1059] Compiling SPMLLBuild llbuild.swift
[740/1059] Compiling LLBuildManifest Node.swift
[742/1059] Compiling LLBuildManifest LLBuildManifestWriter.swift
[743/1059] Compiling LLBuildManifest Command.swift
[744/1059] Compiling LLBuildManifest LLBuildManifest.swift
[745/1059] Emitting module SwiftSyntax
[746/1059] Compiling SwiftDriver MergeModuleJob.swift
[747/1059] Compiling SwiftDriver ModuleWrapJob.swift
[748/1059] Compiling SwiftDriver Planning.swift
[749/1059] Compiling SwiftDriver PrebuiltModulesJob.swift
[750/1059] Compiling SwiftDriver PrintTargetInfoJob.swift
[751/1059] Compiling SwiftDriver ReplJob.swift
[752/1059] Compiling SwiftDriver SwiftHelpIntroJob.swift
[753/1059] Compiling SwiftDriver Toolchain+InterpreterSupport.swift
[754/1059] Compiling SwiftDriver Toolchain+LinkerSupport.swift
[755/1059] Compiling SwiftDriver VerifyDebugInfoJob.swift
[756/1059] Compiling SwiftDriver VerifyModuleInterfaceJob.swift
[757/1070] Compiling PackageModel PackageDependencyDescription.swift
[758/1070] Compiling PackageModel PlatformDescription.swift
[759/1070] Compiling PackageModel ProductDescription.swift
[760/1070] Compiling PackageModel SystemPackageProviderDescription.swift
[761/1070] Compiling PackageModel TargetBuildSettingDescription.swift
[762/1070] Compiling PackageModel TargetDescription.swift
[763/1070] Compiling PackageModel ManifestSourceGeneration.swift
[764/1070] Compiling PackageModel MinimumDeploymentTarget.swift
[765/1070] Compiling PackageModel ModuleMapType.swift
[766/1070] Compiling PackageModel PackageIdentity.swift
[767/1070] Compiling PackageModel PackageModel.swift
[768/1070] Compiling PackageModel PackageReference.swift
[769/1070] Compiling PackageModel ArtifactsArchiveMetadata.swift
[770/1070] Compiling PackageModel BuildConfiguration.swift
[771/1070] Compiling PackageModel BuildEnvironment.swift
[772/1070] Compiling PackageModel BuildFlags.swift
[773/1070] Compiling PackageModel BuildSettings.swift
[774/1070] Compiling PackageModel DependencyMapper.swift
[775/1070] Compiling PackageModel Diagnostics.swift
[776/1070] Compiling PackageModel IdentityResolver.swift
[777/1070] Compiling PackageModel LibraryMetadata.swift
[778/1070] Compiling PackageModel InstalledSwiftPMConfiguration.swift
[779/1070] Compiling PackageModel Manifest.swift
[780/1070] Compiling PackageModel PackageConditionDescription.swift
[781/1070] Compiling SwiftDriver DarwinToolchain+LinkerSupport.swift
[782/1070] Compiling SwiftDriver EmitModuleJob.swift
[783/1070] Compiling SwiftDriver EmitSupportedFeaturesJob.swift
[784/1070] Compiling SwiftDriver FrontendJobHelpers.swift
[785/1070] Compiling SwiftDriver GenerateDSYMJob.swift
[786/1070] Compiling SwiftDriver GeneratePCHJob.swift
[787/1070] Compiling SwiftDriver GeneratePCMJob.swift
[788/1070] Compiling SwiftDriver GenericUnixToolchain+LinkerSupport.swift
[789/1070] Compiling SwiftDriver InterpretJob.swift
[790/1070] Compiling SwiftDriver Job.swift
[791/1070] Compiling SwiftDriver LinkJob.swift
[792/1070] Compiling LLBuildManifest Tools.swift
[793/1070] Compiling LLBuildManifest Target.swift
[795/1071] Compiling PackageModel RegistryReleaseMetadata.swift
[796/1071] Compiling PackageModel Resource.swift
[797/1071] Compiling PackageModel Sanitizers.swift
[798/1071] Compiling PackageModel Snippet.swift
[799/1071] Compiling PackageModel SnippetGroup.swift
[800/1071] Compiling PackageModel PlainTextSnippetExtractor.swift
[801/1071] Compiling PackageModel Sources.swift
[801/1077] Wrapping AST for LLBuildManifest for debugging
[803/1077] Compiling PackageModel ToolchainConfiguration.swift
[804/1077] Compiling PackageModel ToolsVersion.swift
[805/1077] Compiling PackageModel ToolsVersionSpecificationGeneration.swift
[806/1077] Compiling PackageModel Toolset.swift
[807/1077] Compiling PackageModel UserToolchain.swift
[808/1077] Compiling PackageModel WindowsToolchainInfo.swift
[809/1077] Compiling SwiftDriver APIDigesterJobs.swift
[810/1077] Compiling SwiftDriver AutolinkExtractJob.swift
[811/1077] Compiling SwiftDriver BackendJob.swift
[812/1077] Compiling SwiftDriver CommandLineArguments.swift
[813/1077] Compiling SwiftDriver CompileJob.swift
[814/1077] Compiling X509 AlgorithmIdentifier.swift
[815/1077] Compiling X509 ECDSASignature.swift
[816/1077] Compiling X509 RSAPKCS1PublicKey.swift
[817/1077] Compiling X509 SubjectPublicKeyInfo.swift
[818/1077] Compiling X509 TBSCertificate.swift
[819/1077] Compiling X509 Time.swift
[820/1077] Compiling X509 TimeCalculations.swift
[821/1077] Compiling X509 Validity.swift
[822/1077] Compiling SwiftDriver SimpleExecutor.swift
[823/1077] Compiling SwiftDriver ToolingUtil.swift
[824/1077] Compiling SwiftDriver DOTJobGraphSerializer.swift
[825/1077] Compiling SwiftDriver DOTModuleDependencyGraphSerializer.swift
[826/1077] Compiling SwiftDriver DateAdditions.swift
[827/1090] Compiling PackageModel ClangTarget.swift
[828/1090] Compiling PackageModel PluginTarget.swift
[829/1090] Compiling PackageModel SwiftTarget.swift
[830/1090] Compiling PackageModel SystemLibraryTarget.swift
[831/1090] Compiling PackageModel Target.swift
[832/1090] Compiling PackageModel Toolchain.swift
[836/1090] Compiling PackageModel Platform.swift
[837/1090] Compiling PackageModel PlatformRegistry.swift
[838/1090] Compiling PackageModel Product.swift
[839/1090] Compiling PackageModel Registry.swift
[868/1090] Emitting module PackageModel
[886/1090] Compiling PackageModel SupportedLanguageExtension.swift
[887/1090] Compiling PackageModel SwiftLanguageVersion.swift
[888/1090] Compiling PackageModel SwiftSDK.swift
[889/1090] Compiling PackageModel SwiftSDKBundle.swift
[890/1090] Compiling PackageModel SwiftSDKBundleStore.swift
[891/1090] Compiling PackageModel SwiftSDKConfigurationStore.swift
[892/1090] Compiling PackageModel BinaryTarget.swift
[900/1090] Emitting module X509
[942/1091] Wrapping AST for PackageModel for debugging
[944/1099] Compiling PackageFingerprint PackageFingerprintStorage.swift
[945/1099] Compiling X509 VerificationDiagnostic.swift
[946/1099] Compiling X509 Verifier.swift
[947/1099] Compiling X509 VerifierPolicy.swift
[956/1099] Compiling PackageFingerprint Model.swift
[989/1100] Wrapping AST for X509 for debugging
[1005/1100] Compiling SourceControl Repository.swift
[1006/1100] Compiling SourceControl RepositoryManager.swift
[1007/1109] Emitting module PackageFingerprint
[1008/1110] Compiling PackageFingerprint FilePackageFingerprintStorage.swift
[1009/1112] Emitting module SwiftDriver
[1024/1118] Wrapping AST for PackageFingerprint for debugging
[1026/1118] Compiling PackageSigning X509Extensions.swift
[1027/1119] Compiling PackageCollectionsSigning Base64URL.swift
[1028/1119] Compiling PackageCollectionsSigning Utilities.swift
[1029/1119] Compiling PackageCollectionsSigning X509Extensions.swift
[1030/1119] Compiling SwiftDriver Diagnostics.swift
[1031/1119] Compiling SwiftDriver FileList.swift
[1032/1119] Compiling SwiftDriver FileType.swift
[1033/1119] Compiling SwiftDriver PredictableRandomNumberGenerator.swift
[1034/1119] Compiling SwiftDriver RelativePathAdditions.swift
[1035/1119] Compiling SwiftDriver Sanitizer.swift
[1036/1119] Compiling SwiftDriver StringAdditions.swift
[1037/1119] Compiling SwiftDriver System.swift
[1038/1119] Compiling SwiftDriver Triple+Platforms.swift
[1039/1119] Compiling SwiftDriver Triple.swift
[1040/1119] Compiling SwiftDriver TypedVirtualPath.swift
[1041/1119] Compiling SwiftDriver Version.swift
[1042/1119] Compiling SwiftDriver VirtualPath.swift
[1044/1120] Compiling PackageSigning SigningIdentity.swift
[1045/1120] Compiling PackageSigning SigningEntity.swift
[1046/1120] Compiling PackageSigning VerifierPolicies.swift
[1047/1120] Emitting module SourceControl
[1048/1120] Compiling SourceControl GitRepository.swift
[1050/1121] Compiling PackageCollectionsSigning PackageCollectionSigning.swift
[1051/1121] Compiling PackageCollectionsSigning Signature.swift
[1052/1121] Compiling PackageSigning CertificateStores.swift
[1053/1121] Compiling PackageSigning SignatureProvider.swift
[1053/1121] Wrapping AST for SwiftDriver for debugging
[1054/1121] Wrapping AST for SourceControl for debugging
[1056/1121] Compiling PackageSigning PackageSigningEntityStorage.swift
[1057/1121] Compiling PackageSigning FilePackageSigningEntityStorage.swift
[1058/1121] Emitting module PackageSigning
[1059/1121] Compiling PackageCollectionsSigning embedded_resources.swift
[1060/1132] Emitting module PackageCollectionsSigning
[1061/1132] Compiling PackageCollectionsSigning CertificatePolicy.swift
[1063/1140] Compiling PackageSigning embedded_resources.swift
[1063/1141] Wrapping AST for PackageCollectionsSigning for debugging
[1065/1141] Compiling DriverSupport SPMSwiftDriverExecutor.swift
[1067/1141] Compiling DriverSupport DriverSupportUtils.swift
[1068/1141] Emitting module DriverSupport
[1068/1142] Wrapping AST for PackageSigning for debugging
[1070/1166] Wrapping AST for DriverSupport for debugging
[1072/1166] Emitting module PackageLoading
[1073/1166] Compiling PackageCollections API.swift
[1074/1166] Compiling PackageCollections CVE.swift
[1075/1166] Compiling PackageCollections Collection.swift
[1076/1166] Compiling PackageCollections License.swift
[1077/1167] Compiling PackageCollections PackageCollections.swift
[1078/1167] Compiling PackageCollections PackageIndex+Configuration.swift
[1079/1167] Compiling PackageCollections PackageCollections+CertificatePolicy.swift
[1080/1167] Compiling PackageCollections PackageCollections+Configuration.swift
[1081/1167] Compiling PackageCollections PackageList.swift
[1082/1167] Compiling PackageCollections PackageTypes.swift
[1083/1167] Compiling PackageCollections FilePackageCollectionsSourcesStorage.swift
[1084/1167] Compiling PackageCollections PackageCollectionsSourcesStorage.swift
[1085/1167] Compiling PackageCollections PackageCollectionsStorage.swift
[1086/1170] Compiling PackageLoading ToolsVersionParser.swift
[1087/1170] Compiling PackageCollections JSONPackageCollectionProvider.swift
[1088/1170] Compiling PackageCollections PackageCollectionProvider.swift
[1089/1170] Compiling PackageCollections PackageMetadataProvider.swift
[1090/1170] Emitting module PackageCollections
[1097/1170] Compiling PackageCollections Search.swift
[1098/1170] Compiling PackageCollections TargetListResult.swift
[1101/1170] Compiling PackageCollections PackageCollections+Storage.swift
[1102/1170] Compiling PackageCollections PackageCollections+Validation.swift
[1105/1170] Compiling PackageCollections PackageIndex.swift
[1106/1170] Compiling PackageCollections PackageIndexAndCollections.swift
[1107/1170] Compiling PackageCollections GitHubPackageMetadataProvider.swift
[1108/1170] Compiling PackageCollections SQLitePackageCollectionsStorage.swift
[1109/1170] Compiling PackageCollections Trie.swift
[1110/1170] Compiling PackageCollections Utility.swift
[1116/1172] Wrapping AST for PackageCollections for debugging
[1117/1172] Wrapping AST for PackageLoading for debugging
[1119/1208] Compiling PackageRegistry SigningEntityTOFU.swift
[1120/1208] Compiling PackageRegistry RegistryDownloadsManager.swift
[1121/1208] Compiling PackageRegistry SignatureValidation.swift
[1122/1208] Compiling PackageRegistry RegistryConfiguration.swift
[1123/1208] Compiling PackageGraph PackageContainer.swift
[1124/1208] Compiling PackageGraph PackageGraphRoot.swift
[1125/1208] Compiling PackageGraph PackageModel+Extensions.swift
[1126/1208] Compiling PackageGraph PackageRequirement.swift
[1127/1212] Compiling PackageGraph DependencyResolverDelegate.swift
[1128/1212] Compiling PackageGraph DependencyResolverError.swift
[1129/1212] Compiling PackageGraph PlatformVersionProvider.swift
[1130/1212] Compiling PackageGraph Assignment.swift
[1131/1212] Compiling PackageGraph PinsStore.swift
[1132/1212] Compiling PackageGraph PrebuiltPackageContainer.swift
[1133/1212] Compiling PackageGraph DependencyResolutionNode.swift
[1134/1212] Compiling PackageGraph DependencyResolverBinding.swift
[1135/1212] Compiling PackageGraph ContainerProvider.swift
[1136/1212] Compiling PackageGraph DiagnosticReportBuilder.swift
[1137/1212] Compiling PackageGraph Incompatibility.swift
[1138/1212] Compiling PackageGraph PartialSolution.swift
[1139/1212] Compiling PackageGraph PubGrubDependencyResolver.swift
[1140/1212] Compiling PackageGraph PubGrubPackageContainer.swift
[1141/1212] Compiling PackageGraph Term.swift
[1142/1212] Compiling PackageGraph ResolvedPackage.swift
[1151/1212] Compiling PackageGraph BoundVersion.swift
[1152/1212] Compiling PackageGraph BuildTriple.swift
[1153/1212] Compiling PackageGraph DependencyMirrors.swift
[1154/1212] Compiling PackageGraph Diagnostics.swift
[1155/1212] Compiling PackageGraph GraphLoadingNode.swift
[1156/1212] Compiling PackageGraph ModuleAliasTracker.swift
[1157/1212] Compiling PackageGraph ModulesGraph+Loading.swift
[1158/1212] Compiling PackageGraph ModulesGraph.swift
[1159/1212] Emitting module PackageGraph
[1160/1212] Compiling PackageGraph ResolvedProduct.swift
[1161/1212] Compiling PackageGraph ResolvedTarget.swift
[1162/1212] Compiling PackageGraph Version+Extensions.swift
[1163/1212] Compiling PackageGraph VersionSetSpecifier.swift
[1164/1213] Wrapping AST for PackageGraph for debugging
[1166/1231] Compiling SPMBuildCore BuildParameters+Linking.swift
[1167/1231] Compiling SPMBuildCore BuildParameters+Output.swift
[1168/1231] Compiling SPMBuildCore BuildParameters+Testing.swift
[1169/1233] Compiling PackageRegistry ChecksumTOFU.swift
[1170/1233] Compiling PackageRegistry RegistryClient.swift
[1171/1233] Emitting module PackageRegistry
[1172/1234] Emitting module SPMBuildCore
[1173/1234] Wrapping AST for PackageRegistry for debugging
[1175/1234] Compiling SPMBuildCore Triple+Extensions.swift
[1176/1234] Compiling SPMBuildCore XCFrameworkMetadata.swift
[1177/1236] Emitting module PackageMetadata
[1178/1236] Compiling PackageMetadata PackageMetadata.swift
[1180/1237] Compiling SPMBuildCore BinaryTarget+Extensions.swift
[1181/1237] Compiling SPMBuildCore BuildParameters+Debugging.swift
[1182/1237] Compiling SPMBuildCore BuildParameters+Driver.swift
[1182/1237] Wrapping AST for PackageMetadata for debugging
[1184/1237] Compiling SPMBuildCore BuildSystemDelegate.swift
[1185/1237] Compiling SPMBuildCore BuiltTestProduct.swift
[1186/1237] Compiling SPMBuildCore BuildParameters.swift
[1187/1237] Compiling SPMBuildCore BuildSystem.swift
[1188/1237] Compiling SPMBuildCore BuildSystemCommand.swift
[1189/1237] Compiling SPMBuildCore PluginContextSerializer.swift
[1190/1237] Compiling SPMBuildCore PluginInvocation.swift
[1191/1237] Compiling SPMBuildCore PrebuildCommandResult.swift
[1192/1237] Compiling SPMBuildCore ResolvedPackage+Extensions.swift
[1193/1237] Compiling SPMBuildCore PluginMessages.swift
[1194/1237] Compiling SPMBuildCore PluginScriptRunner.swift
[1195/1238] Wrapping AST for SPMBuildCore for debugging
[1197/1281] Emitting module Build
[1198/1283] Compiling Workspace Workspace+Pinning.swift
[1199/1283] Compiling Workspace Workspace+Registry.swift
[1200/1283] Compiling Workspace Workspace+Signing.swift
[1201/1286] Compiling Workspace CheckoutState.swift
[1202/1286] Compiling Workspace DefaultPluginScriptRunner.swift
[1203/1286] Compiling Workspace Diagnostics.swift
[1204/1286] Compiling Build SwiftCompilerOutputParser.swift
[1205/1286] Compiling Build TestObservation.swift
[1206/1286] Compiling Workspace InitPackage.swift
[1207/1286] Compiling Workspace LoadableResult.swift
[1208/1286] Compiling Workspace ManagedArtifact.swift
[1209/1286] Compiling Workspace ManagedDependency.swift
[1213/1286] Compiling Workspace FileSystemPackageContainer.swift
[1214/1286] Compiling Workspace Workspace+Editing.swift
[1217/1286] Compiling Workspace RegistryPackageContainer.swift
[1218/1286] Compiling Workspace SourceControlPackageContainer.swift
[1219/1286] Compiling Workspace ResolvedFileWatcher.swift
[1220/1286] Compiling Workspace ResolverPrecomputationProvider.swift
[1221/1286] Compiling Workspace ToolsVersionSpecificationRewriter.swift
[1222/1286] Compiling Workspace Workspace+BinaryArtifacts.swift
[1223/1286] Compiling Workspace Workspace+Configuration.swift
[1224/1286] Compiling Workspace Workspace+Delegation.swift
[1225/1286] Compiling Workspace Workspace+Dependencies.swift
[1226/1286] Emitting module Workspace
[1242/1287] Wrapping AST for Build for debugging
[1244/1290] Compiling SourceKitLSPAPI BuildDescription.swift
[1245/1290] Emitting module SourceKitLSPAPI
[1246/1290] Compiling SourceKitLSPAPI PluginTargetBuildDescription.swift
[1247/1291] Wrapping AST for SourceKitLSPAPI for debugging
[1249/1291] Compiling Workspace Workspace+SourceControl.swift
[1250/1291] Compiling Workspace Workspace+State.swift
[1251/1291] Compiling Workspace Workspace.swift
[1252/1292] Wrapping AST for Workspace for debugging
[1286/1293] Wrapping AST for SwiftSyntax for debugging
[1288/1331] Compiling SwiftParser Modifiers.swift
[1289/1331] Compiling SwiftParser Names.swift
[1290/1331] Compiling SwiftParser Nominals.swift
[1291/1331] Compiling SwiftParser Parameters.swift
[1292/1331] Compiling SwiftParser ParseSourceFile.swift
[1293/1336] Emitting module SwiftParser
[1294/1336] Compiling SwiftParser TokenPrecedence.swift
[1295/1336] Compiling SwiftParser TokenSpec.swift
[1296/1336] Compiling SwiftParser TokenSpecSet.swift
[1297/1336] Compiling SwiftParser TopLevel.swift
[1298/1336] Compiling SwiftParser TriviaParser.swift
[1299/1336] Compiling SwiftParser Lexer.swift
[1300/1336] Compiling SwiftParser RegexLiteralLexer.swift
[1301/1336] Compiling SwiftParser UnicodeScalarExtensions.swift
[1302/1336] Compiling SwiftParser Lookahead.swift
[1303/1336] Compiling SwiftParser LoopProgressCondition.swift
[1304/1336] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[1305/1336] Compiling SwiftParser StringLiterals.swift
[1306/1336] Compiling SwiftParser SwiftParserCompatibility.swift
[1307/1336] Compiling SwiftParser SyntaxUtils.swift
[1308/1336] Compiling SwiftParser TokenConsumer.swift
[1309/1336] Compiling SwiftParser Parser.swift
[1310/1336] Compiling SwiftParser Patterns.swift
[1311/1336] Compiling SwiftParser Recovery.swift
[1312/1336] Compiling SwiftParser Specifiers.swift
[1313/1336] Compiling SwiftParser Statements.swift
[1314/1336] Compiling SwiftParser Attributes.swift
[1315/1336] Compiling SwiftParser Availability.swift
[1316/1336] Compiling SwiftParser CharacterInfo.swift
[1317/1336] Compiling SwiftParser CollectionNodes+Parsable.swift
[1318/1336] Compiling SwiftParser Declarations.swift
[1319/1336] Compiling SwiftParser Directives.swift
[1320/1336] Compiling SwiftParser ExperimentalFeatures.swift
[1321/1336] Compiling SwiftParser Expressions.swift
[1322/1336] Compiling SwiftParser IncrementalParseTransition.swift
[1323/1336] Compiling SwiftParser Cursor.swift
[1324/1336] Compiling SwiftParser Lexeme.swift
[1325/1336] Compiling SwiftParser LexemeSequence.swift
[1326/1336] Compiling SwiftParser Types.swift
[1327/1336] Compiling SwiftParser IsLexerClassified.swift
[1328/1336] Compiling SwiftParser LayoutNodes+Parsable.swift
[1329/1336] Compiling SwiftParser Parser+TokenSpecSet.swift
[1330/1336] Compiling SwiftParser TokenSpecStaticMembers.swift
[1331/1337] Wrapping AST for SwiftParser for debugging
[1333/1366] Compiling SourceryFramework Generator.swift
[1334/1366] Compiling SourceryFramework SourceryTemplate.swift
[1335/1366] Compiling SourceryFramework Template.swift
[1336/1366] Compiling SourceryFramework FileParserType.swift
[1337/1370] Emitting module SourceryFramework
[1338/1370] Compiling SourceryFramework String+TypeInference.swift
[1339/1370] Compiling SourceryFramework AccessLevel+SwiftSyntax.swift
[1340/1370] Compiling SourceryFramework Actor+SwiftSyntax.swift
[1341/1370] Compiling SourceryFramework Attribute+SwiftSyntax.swift
[1342/1370] Compiling SourceryFramework Bridges.swift
[1343/1370] Compiling SourceryFramework InlineParser.swift
[1344/1370] Compiling SourceryFramework StringView.swift
[1345/1370] Compiling SourceryFramework Verifier.swift
[1346/1370] Compiling SourceryFramework Subscript+SwiftSyntax.swift
[1347/1370] Compiling SourceryFramework Type+SwiftSyntax.swift
[1348/1370] Compiling SourceryFramework TypeName+SwiftSyntax.swift
[1349/1370] Compiling SourceryFramework Variable+SwiftSyntax.swift
[1350/1370] Compiling SourceryFramework GenericRequirement+SwiftSyntax.swift
[1351/1370] Compiling SourceryFramework GenericType+SwiftSyntax.swift
[1352/1370] Compiling SourceryFramework Method+SwiftSyntax.swift
[1353/1370] Compiling SourceryFramework MethodParameter+SwiftSyntax.swift
[1354/1370] Compiling SourceryFramework Modifier+SwiftSyntax.swift
[1355/1370] Compiling SourceryFramework Protocol+SwiftSyntax.swift
[1356/1370] Compiling SourceryFramework Signature.swift
[1357/1370] Compiling SourceryFramework Struct+SwiftSyntax.swift
[1358/1370] Compiling SourceryFramework Class+SwiftSyntax.swift
[1359/1370] Compiling SourceryFramework Enum+SwiftSyntax.swift
[1360/1370] Compiling SourceryFramework EnumCase+SwiftSyntax.swift
[1361/1370] Compiling SourceryFramework GenericParameter+SwiftSyntax.swift
[1362/1370] Compiling SourceryFramework FileParserSyntax.swift
[1363/1370] Compiling SourceryFramework Syntax+Extensions.swift
[1364/1370] Compiling SourceryFramework SyntaxTreeCollector.swift
[1365/1370] Compiling SourceryFramework AnnotationsParser.swift
[1366/1371] Wrapping AST for SourceryFramework for debugging
[1368/1382] Compiling SourceryLib NSRange + Editing.swift
[1369/1382] Compiling SourceryLib FolderWatcher.swift
[1370/1383] Compiling SourceryLib DryOutputModels.swift
[1371/1383] Compiling SourceryLib Xcode+Extensions.swift
[1372/1383] Emitting module SourceryLib
/host/spi-builder-workspace/Sourcery/Generating/Templates/Swift/SwiftTemplate.swift:14:1: warning: extension declares a conformance of imported type 'SwiftTemplate' to imported protocol 'Template'; this will not behave correctly if the owners of 'SourcerySwift' introduce this conformance in the future
12 | import SourcerySwift
13 |
14 | extension SwiftTemplate: Template {
   | |- warning: extension declares a conformance of imported type 'SwiftTemplate' to imported protocol 'Template'; this will not behave correctly if the owners of 'SourcerySwift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
15 |
16 |     public func render(_ context: TemplateContext) throws -> String {
[1373/1383] Compiling SourceryLib Configuration.swift
[1374/1383] Compiling SourceryLib JavaScriptTemplate.swift
[1375/1383] Compiling SourceryLib StencilTemplate.swift
/host/spi-builder-workspace/Sourcery/Generating/Templates/Swift/SwiftTemplate.swift:14:1: warning: extension declares a conformance of imported type 'SwiftTemplate' to imported protocol 'Template'; this will not behave correctly if the owners of 'SourcerySwift' introduce this conformance in the future
12 | import SourcerySwift
13 |
14 | extension SwiftTemplate: Template {
   | |- warning: extension declares a conformance of imported type 'SwiftTemplate' to imported protocol 'Template'; this will not behave correctly if the owners of 'SourcerySwift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
15 |
16 |     public func render(_ context: TemplateContext) throws -> String {
[1376/1383] Compiling SourceryLib SwiftTemplate.swift
/host/spi-builder-workspace/Sourcery/Generating/Templates/Swift/SwiftTemplate.swift:14:1: warning: extension declares a conformance of imported type 'SwiftTemplate' to imported protocol 'Template'; this will not behave correctly if the owners of 'SourcerySwift' introduce this conformance in the future
12 | import SourcerySwift
13 |
14 | extension SwiftTemplate: Template {
   | |- warning: extension declares a conformance of imported type 'SwiftTemplate' to imported protocol 'Template'; this will not behave correctly if the owners of 'SourcerySwift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
15 |
16 |     public func render(_ context: TemplateContext) throws -> String {
[1377/1383] Compiling SourceryLib Sourcery.swift
[1378/1383] Compiling SourceryLib ByteRangeConversion.swift
[1379/1383] Compiling SourceryLib BytesRange + Editing.swift
[1380/1384] Wrapping AST for SourceryLib for debugging
[1382/1386] Compiling SourceryExecutable main.swift
/host/spi-builder-workspace/SourceryExecutable/main.swift:18:1: warning: extension declares a conformance of imported type 'Path' to imported protocol 'ArgumentConvertible'; this will not behave correctly if the owners of 'PathKit' introduce this conformance in the future
 16 | import SourceryLib
 17 |
 18 | extension Path: ArgumentConvertible {
    | |- warning: extension declares a conformance of imported type 'Path' to imported protocol 'ArgumentConvertible'; this will not behave correctly if the owners of 'PathKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 19 |     /// :nodoc:
 20 |     public init(parser: ArgumentParser) throws {
[1383/1386] Emitting module SourceryExecutable
/host/spi-builder-workspace/SourceryExecutable/main.swift:18:1: warning: extension declares a conformance of imported type 'Path' to imported protocol 'ArgumentConvertible'; this will not behave correctly if the owners of 'PathKit' introduce this conformance in the future
 16 | import SourceryLib
 17 |
 18 | extension Path: ArgumentConvertible {
    | |- warning: extension declares a conformance of imported type 'Path' to imported protocol 'ArgumentConvertible'; this will not behave correctly if the owners of 'PathKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 19 |     /// :nodoc:
 20 |     public init(parser: ArgumentParser) throws {
[1384/1387] Wrapping AST for SourceryExecutable for debugging
[1385/1387] Write Objects.LinkFileList
[1386/1387] Linking sourcery
Build complete! (107.10s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "yams",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "5.0.3",
            "upper_bound" : "6.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/jpsim/Yams.git"
    },
    {
      "identity" : "commander",
      "requirement" : {
        "exact" : [
          "0.9.1"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/kylef/Commander.git"
    },
    {
      "identity" : "pathkit",
      "requirement" : {
        "exact" : [
          "1.0.1"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/kylef/PathKit.git"
    },
    {
      "identity" : "stencilswiftkit",
      "requirement" : {
        "exact" : [
          "2.10.4"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/art-divin/StencilSwiftKit.git"
    },
    {
      "identity" : "xcodeproj",
      "requirement" : {
        "exact" : [
          "8.24.6"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/tuist/XcodeProj.git"
    },
    {
      "identity" : "swift-syntax",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "510.0.0",
            "upper_bound" : "511.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-syntax.git"
    },
    {
      "identity" : "quick",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "3.0.0",
            "upper_bound" : "4.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Quick/Quick.git"
    },
    {
      "identity" : "nimble",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "9.0.0",
            "upper_bound" : "10.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Quick/Nimble.git"
    },
    {
      "identity" : "swift-package-manager",
      "requirement" : {
        "exact" : [
          "1.0.8"
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/art-divin/swift-package-manager.git"
    },
    {
      "identity" : "swift-crypto",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "3.0.0",
            "upper_bound" : "4.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-crypto.git"
    }
  ],
  "manifest_display_name" : "Sourcery",
  "name" : "Sourcery",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "sourcery",
      "targets" : [
        "SourceryExecutable"
      ],
      "type" : {
        "executable" : null
      }
    },
    {
      "name" : "SourceryRuntime",
      "targets" : [
        "SourceryRuntime"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "SourceryStencil",
      "targets" : [
        "SourceryStencil"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "SourceryJS",
      "targets" : [
        "SourceryJS"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "SourcerySwift",
      "targets" : [
        "SourcerySwift"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "SourceryFramework",
      "targets" : [
        "SourceryFramework"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "SourceryLib",
      "targets" : [
        "SourceryLib"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "SourceryCommandPlugin",
      "targets" : [
        "SourceryCommandPlugin"
      ],
      "type" : {
        "plugin" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "TemplatesTests",
      "module_type" : "SwiftTarget",
      "name" : "TemplatesTests",
      "path" : "Templates",
      "product_dependencies" : [
        "Quick",
        "Nimble",
        "PathKit"
      ],
      "resources" : [
        {
          "path" : "/host/spi-builder-workspace/Templates/Templates",
          "rule" : {
            "copy" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Templates/Tests/Context_Linux",
          "rule" : {
            "copy" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Templates/Tests/Expected",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "Tests/TemplatesTests.swift"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SourceryUtils",
      "module_type" : "SwiftTarget",
      "name" : "SourceryUtils",
      "path" : "SourceryUtils",
      "product_dependencies" : [
        "PathKit",
        "Crypto"
      ],
      "product_memberships" : [
        "sourcery",
        "SourcerySwift",
        "SourceryFramework",
        "SourceryLib",
        "SourceryCommandPlugin"
      ],
      "sources" : [
        "Sources/Path+Extensions.swift",
        "Sources/Sha.swift",
        "Sources/Time.swift",
        "Sources/Version.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SourcerySwift",
      "module_type" : "SwiftTarget",
      "name" : "SourcerySwift",
      "path" : "SourcerySwift",
      "product_dependencies" : [
        "PathKit"
      ],
      "product_memberships" : [
        "sourcery",
        "SourcerySwift",
        "SourceryLib",
        "SourceryCommandPlugin"
      ],
      "sources" : [
        "Sources/SourceryRuntime.content.generated.swift",
        "Sources/SourceryRuntime_Linux.content.generated.swift",
        "Sources/SwiftTemplate.swift"
      ],
      "target_dependencies" : [
        "SourceryRuntime",
        "SourceryUtils"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SourceryStencil",
      "module_type" : "SwiftTarget",
      "name" : "SourceryStencil",
      "path" : "SourceryStencil",
      "product_dependencies" : [
        "PathKit",
        "StencilSwiftKit"
      ],
      "product_memberships" : [
        "sourcery",
        "SourceryStencil",
        "SourceryLib",
        "SourceryCommandPlugin"
      ],
      "sources" : [
        "Sources/NewLineNode.swift",
        "Sources/StencilTemplate.swift",
        "Sources/TypedNode.swift"
      ],
      "target_dependencies" : [
        "SourceryRuntime"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SourceryRuntime",
      "module_type" : "SwiftTarget",
      "name" : "SourceryRuntime",
      "path" : "SourceryRuntime",
      "product_dependencies" : [
        "StencilSwiftKit"
      ],
      "product_memberships" : [
        "sourcery",
        "SourceryRuntime",
        "SourceryStencil",
        "SourcerySwift",
        "SourceryFramework",
        "SourceryLib",
        "SourceryCommandPlugin"
      ],
      "sources" : [
        "Sources/Common/AST/AccessLevel.swift",
        "Sources/Common/AST/Actor.swift",
        "Sources/Common/AST/Annotations.swift",
        "Sources/Common/AST/Attribute.swift",
        "Sources/Common/AST/Class.swift",
        "Sources/Common/AST/Definition.swift",
        "Sources/Common/AST/Documentation.swift",
        "Sources/Common/AST/Import.swift",
        "Sources/Common/AST/Modifier.swift",
        "Sources/Common/AST/PhantomProtocols.swift",
        "Sources/Common/AST/Protocol.swift",
        "Sources/Common/AST/ProtocolComposition.swift",
        "Sources/Common/AST/Struct.swift",
        "Sources/Common/AST/TypeName/Array.swift",
        "Sources/Common/AST/TypeName/Dictionary.swift",
        "Sources/Common/AST/TypeName/Generic.swift",
        "Sources/Common/AST/TypeName/Set.swift",
        "Sources/Common/AST/TypeName/Typed.swift",
        "Sources/Common/AST/Typealias.swift",
        "Sources/Common/Array+Parallel.swift",
        "Sources/Common/BytesRange.swift",
        "Sources/Common/Composer/Composer.swift",
        "Sources/Common/Composer/ParserResultsComposed.swift",
        "Sources/Common/Diffable.swift",
        "Sources/Common/Extensions.swift",
        "Sources/Common/FileParserResult.swift",
        "Sources/Common/Log.swift",
        "Sources/Common/TemplateContext.swift",
        "Sources/Generated/AutoHashable.generated.swift",
        "Sources/Generated/Coding.generated.swift",
        "Sources/Generated/JSExport.generated.swift",
        "Sources/Generated/Typed.generated.swift",
        "Sources/Linux/AST/AssociatedType_Linux.swift",
        "Sources/Linux/AST/AssociatedValue_Linux.swift",
        "Sources/Linux/AST/ClosureParameter_Linux.swift",
        "Sources/Linux/AST/EnumCase_Linux.swift",
        "Sources/Linux/AST/Enum_Linux.swift",
        "Sources/Linux/AST/GenericParameter_Linux.swift",
        "Sources/Linux/AST/GenericRequirement_Linux.swift",
        "Sources/Linux/AST/MethodParameter_Linux.swift",
        "Sources/Linux/AST/Method_Linux.swift",
        "Sources/Linux/AST/Protocol_Linux.swift",
        "Sources/Linux/AST/Subscript_Linux.swift",
        "Sources/Linux/AST/TypeName/Closure_Linux.swift",
        "Sources/Linux/AST/TypeName/GenericTypeParameter_Linux.swift",
        "Sources/Linux/AST/TypeName/Tuple_Linux.swift",
        "Sources/Linux/AST/TypeName/TypeName_Linux.swift",
        "Sources/Linux/AST/Type_Linux.swift",
        "Sources/Linux/AST/Variable_Linux.swift",
        "Sources/Linux/DynamicMemberLookup_Linux.swift",
        "Sources/Linux/NSException_Linux.swift",
        "Sources/Linux/TypesCollection_Linux.swift",
        "Sources/Linux/Types_Linux.swift",
        "Sources/macOS/AST/AssociatedType.swift",
        "Sources/macOS/AST/AssociatedValue.swift",
        "Sources/macOS/AST/ClosureParameter.swift",
        "Sources/macOS/AST/Enum.swift",
        "Sources/macOS/AST/EnumCase.swift",
        "Sources/macOS/AST/GenericParameter.swift",
        "Sources/macOS/AST/GenericRequirement.swift",
        "Sources/macOS/AST/Method.swift",
        "Sources/macOS/AST/MethodParameter.swift",
        "Sources/macOS/AST/Subscript.swift",
        "Sources/macOS/AST/Type.swift",
        "Sources/macOS/AST/TypeName/Closure.swift",
        "Sources/macOS/AST/TypeName/GenericTypeParameter.swift",
        "Sources/macOS/AST/TypeName/Tuple.swift",
        "Sources/macOS/AST/TypeName/TypeName.swift",
        "Sources/macOS/AST/Variable.swift",
        "Sources/macOS/Types.swift",
        "Sources/macOS/TypesCollection.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SourceryLibTests",
      "module_type" : "SwiftTarget",
      "name" : "SourceryLibTests",
      "path" : "Tests/SourceryLibTests",
      "product_dependencies" : [
        "Quick",
        "Nimble"
      ],
      "resources" : [
        {
          "path" : "/host/spi-builder-workspace/Tests/SourceryLibTests/Stub/Configs",
          "rule" : {
            "copy" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/SourceryLibTests/Stub/DryRun-Code",
          "rule" : {
            "copy" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/SourceryLibTests/Stub/Errors",
          "rule" : {
            "copy" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/SourceryLibTests/Stub/JavaScriptTemplates",
          "rule" : {
            "copy" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/SourceryLibTests/Stub/Performance-Code",
          "rule" : {
            "copy" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/SourceryLibTests/Stub/Result",
          "rule" : {
            "copy" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/SourceryLibTests/Stub/Source_Linux",
          "rule" : {
            "copy" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/SourceryLibTests/Stub/SwiftTemplates",
          "rule" : {
            "copy" : {
            }
          }
        },
        {
          "path" : "/host/spi-builder-workspace/Tests/SourceryLibTests/Stub/Templates",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "ConfigurationSpec.swift",
        "Generating/JavaScriptTemplateSpecs.swift",
        "Generating/StencilTemplateSpec.swift",
        "Generating/SwiftTemplateSpecs.swift",
        "GeneratorSpec.swift",
        "Helpers/Builders.swift",
        "Helpers/CustomMatchers.swift",
        "Helpers/Extensions.swift",
        "Models/ActorSpec.swift",
        "Models/ArrayTypeSpec.swift",
        "Models/ClassSpec.swift",
        "Models/DiffableSpec.swift",
        "Models/EnumSpec.swift",
        "Models/MethodSpec.swift",
        "Models/ProtocolSpec.swift",
        "Models/StructSpec.swift",
        "Models/TypeSpec.swift",
        "Models/TypealiasSpec.swift",
        "Models/TypedSpec.generated.swift",
        "Models/VariableSpec.swift",
        "Output/DryOutputSpec.swift",
        "Parsing/ComposerSpec.swift",
        "Parsing/FileParserSpec.swift",
        "Parsing/FileParser_AssociatedTypeSpec.swift",
        "Parsing/FileParser_AttributesModifierSpec.swift",
        "Parsing/FileParser_MethodsSpec.swift",
        "Parsing/FileParser_ProtocolComposition.swift",
        "Parsing/FileParser_SubscriptsSpec.swift",
        "Parsing/FileParser_TypeNameSpec.swift",
        "Parsing/FileParser_VariableSpec.swift",
        "Parsing/Helpers/AnnotationsParserSpec.swift",
        "Parsing/Helpers/StringViewSpec.swift",
        "Parsing/Helpers/TemplateAnnotationsParserSpec.swift",
        "Parsing/Helpers/TemplatesAnnotationParser_ForceParseInlineCodeSpec.swift",
        "Parsing/Helpers/VerifierSpec.swift",
        "Sourcery+PerformanceSpec.swift",
        "SourcerySpec.swift",
        "Stub/Source/Bar.swift",
        "Stub/Source/Foo.swift",
        "Stub/Source/FooBar.swift",
        "Stub/Stubs.swift"
      ],
      "target_dependencies" : [
        "SourceryLib"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SourceryLib",
      "module_type" : "SwiftTarget",
      "name" : "SourceryLib",
      "path" : "Sourcery",
      "product_dependencies" : [
        "Commander",
        "PathKit",
        "Yams",
        "StencilSwiftKit",
        "SwiftSyntax",
        "XcodeProj",
        "SwiftPM-auto",
        "Crypto"
      ],
      "product_memberships" : [
        "sourcery",
        "SourceryLib",
        "SourceryCommandPlugin"
      ],
      "sources" : [
        "Configuration.swift",
        "Generating/Templates/JavaScript/JavaScriptTemplate.swift",
        "Generating/Templates/Stencil/StencilTemplate.swift",
        "Generating/Templates/Swift/SwiftTemplate.swift",
        "Sourcery.swift",
        "Utils/ByteRangeConversion.swift",
        "Utils/BytesRange + Editing.swift",
        "Utils/DryOutputModels.swift",
        "Utils/FolderWatcher.swift",
        "Utils/NSRange + Editing.swift",
        "Utils/Xcode+Extensions.swift"
      ],
      "target_dependencies" : [
        "SourceryFramework",
        "SourceryRuntime",
        "SourceryStencil",
        "SourceryJS",
        "SourcerySwift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SourceryJS",
      "module_type" : "SwiftTarget",
      "name" : "SourceryJS",
      "path" : "SourceryJS",
      "product_dependencies" : [
        "PathKit"
      ],
      "product_memberships" : [
        "sourcery",
        "SourceryJS",
        "SourceryLib",
        "SourceryCommandPlugin"
      ],
      "resources" : [
        {
          "path" : "/host/spi-builder-workspace/SourceryJS/Resources/ejs.js",
          "rule" : {
            "copy" : {
            }
          }
        }
      ],
      "sources" : [
        "Sources/EJSTemplate+Tests.swift",
        "Sources/EJSTemplate.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SourceryFramework",
      "module_type" : "SwiftTarget",
      "name" : "SourceryFramework",
      "path" : "SourceryFramework",
      "product_dependencies" : [
        "PathKit",
        "SwiftSyntax",
        "SwiftParser"
      ],
      "product_memberships" : [
        "sourcery",
        "SourceryFramework",
        "SourceryLib",
        "SourceryCommandPlugin"
      ],
      "sources" : [
        "Sources/Generating/Generator.swift",
        "Sources/Generating/SourceryTemplate.swift",
        "Sources/Generating/Template.swift",
        "Sources/Parsing/FileParserType.swift",
        "Sources/Parsing/String+TypeInference.swift",
        "Sources/Parsing/SwiftSyntax/AST/AccessLevel+SwiftSyntax.swift",
        "Sources/Parsing/SwiftSyntax/AST/Actor+SwiftSyntax.swift",
        "Sources/Parsing/SwiftSyntax/AST/Attribute+SwiftSyntax.swift",
        "Sources/Parsing/SwiftSyntax/AST/Class+SwiftSyntax.swift",
        "Sources/Parsing/SwiftSyntax/AST/Enum+SwiftSyntax.swift",
        "Sources/Parsing/SwiftSyntax/AST/EnumCase+SwiftSyntax.swift",
        "Sources/Parsing/SwiftSyntax/AST/GenericParameter+SwiftSyntax.swift",
        "Sources/Parsing/SwiftSyntax/AST/GenericRequirement+SwiftSyntax.swift",
        "Sources/Parsing/SwiftSyntax/AST/GenericType+SwiftSyntax.swift",
        "Sources/Parsing/SwiftSyntax/AST/Method+SwiftSyntax.swift",
        "Sources/Parsing/SwiftSyntax/AST/MethodParameter+SwiftSyntax.swift",
        "Sources/Parsing/SwiftSyntax/AST/Modifier+SwiftSyntax.swift",
        "Sources/Parsing/SwiftSyntax/AST/Protocol+SwiftSyntax.swift",
        "Sources/Parsing/SwiftSyntax/AST/Signature.swift",
        "Sources/Parsing/SwiftSyntax/AST/Struct+SwiftSyntax.swift",
        "Sources/Parsing/SwiftSyntax/AST/Subscript+SwiftSyntax.swift",
        "Sources/Parsing/SwiftSyntax/AST/Type+SwiftSyntax.swift",
        "Sources/Parsing/SwiftSyntax/AST/TypeName+SwiftSyntax.swift",
        "Sources/Parsing/SwiftSyntax/AST/Variable+SwiftSyntax.swift",
        "Sources/Parsing/SwiftSyntax/FileParserSyntax.swift",
        "Sources/Parsing/SwiftSyntax/Syntax+Extensions.swift",
        "Sources/Parsing/SwiftSyntax/SyntaxTreeCollector.swift",
        "Sources/Parsing/Utils/AnnotationsParser.swift",
        "Sources/Parsing/Utils/Bridges.swift",
        "Sources/Parsing/Utils/InlineParser.swift",
        "Sources/Parsing/Utils/StringView.swift",
        "Sources/Parsing/Utils/Verifier.swift"
      ],
      "target_dependencies" : [
        "SourceryUtils",
        "SourceryRuntime"
      ],
      "type" : "library"
    },
    {
      "c99name" : "SourceryExecutable",
      "module_type" : "SwiftTarget",
      "name" : "SourceryExecutable",
      "path" : "SourceryExecutable",
      "product_memberships" : [
        "sourcery",
        "SourceryCommandPlugin"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "SourceryLib"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "SourceryCommandPlugin",
      "module_type" : "PluginTarget",
      "name" : "SourceryCommandPlugin",
      "path" : "Plugins/SourceryCommandPlugin",
      "plugin_capability" : {
        "intent" : {
          "description" : "Sourcery command plugin for code generation",
          "type" : "custom",
          "verb" : "sourcery-command"
        },
        "permissions" : [
          {
            "network_scope" : {
              "none" : {
              }
            },
            "reason" : "Need permission to write generated files to package directory",
            "type" : "writeToPackageDirectory"
          }
        ],
        "type" : "command"
      },
      "product_memberships" : [
        "SourceryCommandPlugin"
      ],
      "sources" : [
        "SourceryCommandPlugin.swift"
      ],
      "target_dependencies" : [
        "SourceryExecutable"
      ],
      "type" : "plugin"
    },
    {
      "c99name" : "CodableContextTests",
      "module_type" : "SwiftTarget",
      "name" : "CodableContextTests",
      "path" : "Templates/CodableContextTests",
      "product_dependencies" : [
        "Quick",
        "Nimble"
      ],
      "sources" : [
        "CodableContextTests.swift"
      ],
      "target_dependencies" : [
        "CodableContext"
      ],
      "type" : "test"
    },
    {
      "c99name" : "CodableContext",
      "module_type" : "SwiftTarget",
      "name" : "CodableContext",
      "path" : "Templates/Tests",
      "sources" : [
        "Context/AutoCodable.swift",
        "Generated/AutoCodable.generated.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.8"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:081dcf4fb829aea9d08447f4790431afbdfbcc335bfeed728ca69c6f181ae2aa
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.