The Swift Package Index logo.Swift Package Index

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

Build Information

Failed to build Git, reference 3.2.0 (0dba9e), with Swift 6.0 for Linux on 30 Nov 2024 21:25:14 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1

Build Log

212 |         pthread_create(&tid, nil, callback, threadPayloadRef)
213 |
214 |         if let tid = tid {
    |            `- error: initializer for conditional binding must have Optional type, not 'pthread_t' (aka 'UInt')
215 |             // Wait for the thread to be executed
216 |             pthread_join(tid, nil)
[17/112] Compiling Git RemoteListTask.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' 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
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/host/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' 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
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/host/spi-builder-workspace/Sources/Classes/Tasks/ProcessSpawn.swift:51:24: warning: static property 'bufferSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 49 | final class ProcessSpawn {
 50 |
 51 |     private static var bufferSize = 1024 * 8
    |                        |- warning: static property 'bufferSize' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                        |- note: convert 'bufferSize' to a 'let' constant to make 'Sendable' shared state immutable
    |                        |- note: annotate 'bufferSize' 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
 52 |
 53 |     /// The arguments to be executed.
/host/spi-builder-workspace/Sources/Classes/Tasks/ProcessSpawn.swift:116:37: error: value of optional type 'UnsafeMutablePointer<CChar>?' (aka 'Optional<UnsafeMutablePointer<Int8>>') must be unwrapped to a value of type 'UnsafeMutablePointer<CChar>' (aka 'UnsafeMutablePointer<Int8>')
114 |         defer { for case let env? in envp { free(env) } }
115 |
116 |         guard posix_spawn(&pid, argv[0], &childFDActions, nil, argv + [nil], envp + [nil]) >= 0 else {
    |                                     |- error: value of optional type 'UnsafeMutablePointer<CChar>?' (aka 'Optional<UnsafeMutablePointer<Int8>>') must be unwrapped to a value of type 'UnsafeMutablePointer<CChar>' (aka 'UnsafeMutablePointer<Int8>')
    |                                     |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
    |                                     `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
117 |             throw SpawnError.canNotCreatePosixSpawn
118 |         }
/host/spi-builder-workspace/Sources/Classes/Tasks/ProcessSpawn.swift:134:12: error: initializer for conditional binding must have Optional type, not 'pthread_t' (aka 'UInt')
132 |         threadPayload?.isCancelled = true
133 |
134 |         if let threadId = tid {
    |            `- error: initializer for conditional binding must have Optional type, not 'pthread_t' (aka 'UInt')
135 |             pthread_cancel(threadId)
136 |         }
/host/spi-builder-workspace/Sources/Classes/Tasks/ProcessSpawn.swift:212:35: error: cannot convert value of type '(UnsafeMutableRawPointer) -> UnsafeMutableRawPointer?' to expected argument type '@convention(c) (UnsafeMutableRawPointer?) -> UnsafeMutableRawPointer?'
210 |         threadPayloadRef.pointee = threadPayload
211 |
212 |         pthread_create(&tid, nil, callback, threadPayloadRef)
    |                                   `- error: cannot convert value of type '(UnsafeMutableRawPointer) -> UnsafeMutableRawPointer?' to expected argument type '@convention(c) (UnsafeMutableRawPointer?) -> UnsafeMutableRawPointer?'
213 |
214 |         if let tid = tid {
/host/spi-builder-workspace/Sources/Classes/Tasks/ProcessSpawn.swift:214:12: error: initializer for conditional binding must have Optional type, not 'pthread_t' (aka 'UInt')
212 |         pthread_create(&tid, nil, callback, threadPayloadRef)
213 |
214 |         if let tid = tid {
    |            `- error: initializer for conditional binding must have Optional type, not 'pthread_t' (aka 'UInt')
215 |             // Wait for the thread to be executed
216 |             pthread_join(tid, nil)
[18/112] Compiling Git RemoteRenameTask.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' 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
 39 |
 40 |     // MARK: - Private
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
108 |             }
109 |         })
[19/112] Compiling Git RemoteUrlChangeTask.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' 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
 39 |
 40 |     // MARK: - Private
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
108 |             }
109 |         })
[20/112] Compiling Git RemoteUrlTask.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' 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
 39 |
 40 |     // MARK: - Private
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
108 |             }
109 |         })
[21/112] Compiling Git RepositoryTask.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' 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
 39 |
 40 |     // MARK: - Private
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
108 |             }
109 |         })
[22/112] Compiling Git GitResetOptions.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' 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
 39 |
 40 |     // MARK: - Private
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
108 |             }
109 |         })
[23/112] Compiling Git ResetTask.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' 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
 39 |
 40 |     // MARK: - Private
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
108 |             }
109 |         })
[24/112] Compiling Git GitSparseAddOptions.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' 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
 39 |
 40 |     // MARK: - Private
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
108 |             }
109 |         })
[25/112] Compiling Git GitSparseSetOptions.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' 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
 39 |
 40 |     // MARK: - Private
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
108 |             }
109 |         })
[26/112] Compiling Git SparseTask.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' 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
 39 |
 40 |     // MARK: - Private
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
108 |             }
109 |         })
[27/112] Compiling Git GitStashApplyOptions.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' 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
 39 |
 40 |     // MARK: - Private
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
108 |             }
109 |         })
[28/112] Compiling Git StashApplyTask.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' 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
 39 |
 40 |     // MARK: - Private
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
108 |             }
109 |         })
[29/112] Compiling Git GitStashOptions.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' 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
 39 |
 40 |     // MARK: - Private
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
108 |             }
109 |         })
[30/112] Compiling Git StashTask.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' 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
 39 |
 40 |     // MARK: - Private
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:107:17: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
105 |
106 |             DispatchQueue.main.async {
107 |                 self?.__self.handle(output: output)
    |                 |- warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
    |                 `- note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
108 |             }
109 |         })
[31/112] Compiling Git FileManager+Utils.swift
/host/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:152:10: warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
150 |
151 |     /// Occurs when stash apply operation has been fallen in case no stash record is found
152 |     case unableToApplyStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
/host/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
/host/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:155:10: warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
155 |     case unableToDropStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
156 |
157 |     /// Occuts when the merge operations finishes, but conflicts have been detected
/host/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
[32/112] Compiling Git Formatter+Date.swift
/host/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:152:10: warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
150 |
151 |     /// Occurs when stash apply operation has been fallen in case no stash record is found
152 |     case unableToApplyStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
/host/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
/host/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:155:10: warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
155 |     case unableToDropStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
156 |
157 |     /// Occuts when the merge operations finishes, but conflicts have been detected
/host/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
[33/112] Compiling Git Array+Utils.swift
/host/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:152:10: warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
150 |
151 |     /// Occurs when stash apply operation has been fallen in case no stash record is found
152 |     case unableToApplyStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
/host/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
/host/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:155:10: warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
155 |     case unableToDropStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
156 |
157 |     /// Occuts when the merge operations finishes, but conflicts have been detected
/host/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
[34/112] Compiling Git CredentialsProvider.swift
/host/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:152:10: warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
150 |
151 |     /// Occurs when stash apply operation has been fallen in case no stash record is found
152 |     case unableToApplyStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
/host/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
/host/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:155:10: warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
155 |     case unableToDropStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
156 |
157 |     /// Occuts when the merge operations finishes, but conflicts have been detected
/host/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
[35/112] Compiling Git Repository.swift
/host/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:152:10: warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
150 |
151 |     /// Occurs when stash apply operation has been fallen in case no stash record is found
152 |     case unableToApplyStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
/host/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
/host/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:155:10: warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
155 |     case unableToDropStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
156 |
157 |     /// Occuts when the merge operations finishes, but conflicts have been detected
/host/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
[36/112] Compiling Git RepositoryDelegate.swift
/host/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:152:10: warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
150 |
151 |     /// Occurs when stash apply operation has been fallen in case no stash record is found
152 |     case unableToApplyStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
/host/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
/host/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:155:10: warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
155 |     case unableToDropStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
156 |
157 |     /// Occuts when the merge operations finishes, but conflicts have been detected
/host/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
[37/112] Compiling Git RepositoryError.swift
/host/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:152:10: warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
150 |
151 |     /// Occurs when stash apply operation has been fallen in case no stash record is found
152 |     case unableToApplyStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
/host/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
/host/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:155:10: warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
155 |     case unableToDropStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
156 |
157 |     /// Occuts when the merge operations finishes, but conflicts have been detected
/host/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
[38/112] Compiling Git RepositoryLogRecord.swift
/host/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:152:10: warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
150 |
151 |     /// Occurs when stash apply operation has been fallen in case no stash record is found
152 |     case unableToApplyStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
/host/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
/host/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:155:10: warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
155 |     case unableToDropStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
156 |
157 |     /// Occuts when the merge operations finishes, but conflicts have been detected
/host/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
[39/112] Compiling Git RepositoryReference.swift
/host/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:152:10: warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
150 |
151 |     /// Occurs when stash apply operation has been fallen in case no stash record is found
152 |     case unableToApplyStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
/host/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
/host/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:155:10: warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
155 |     case unableToDropStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
156 |
157 |     /// Occuts when the merge operations finishes, but conflicts have been detected
/host/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
[40/112] Compiling Git RepositoryReferenceName.swift
/host/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:152:10: warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
150 |
151 |     /// Occurs when stash apply operation has been fallen in case no stash record is found
152 |     case unableToApplyStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
/host/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
/host/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:155:10: warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
155 |     case unableToDropStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
156 |
157 |     /// Occuts when the merge operations finishes, but conflicts have been detected
/host/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
[41/112] Compiling Git RepositoryRemote.swift
/host/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:152:10: warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
150 |
151 |     /// Occurs when stash apply operation has been fallen in case no stash record is found
152 |     case unableToApplyStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
/host/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
/host/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:155:10: warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
155 |     case unableToDropStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
156 |
157 |     /// Occuts when the merge operations finishes, but conflicts have been detected
/host/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
[42/112] Compiling Git RepositoryStashRecord.swift
/host/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:152:10: warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
150 |
151 |     /// Occurs when stash apply operation has been fallen in case no stash record is found
152 |     case unableToApplyStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
/host/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
/host/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:155:10: warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
155 |     case unableToDropStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
156 |
157 |     /// Occuts when the merge operations finishes, but conflicts have been detected
/host/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
[43/112] Compiling Git RepositoryTagRecord.swift
/host/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:152:10: warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
150 |
151 |     /// Occurs when stash apply operation has been fallen in case no stash record is found
152 |     case unableToApplyStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToApplyStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
/host/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
/host/spi-builder-workspace/Sources/Protocols/RepositoryError.swift:155:10: warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
153 |
154 |     /// Occurs when stash drop operation has been fallen in case no stash record is found
155 |     case unableToDropStashRecordNotFound(record: RepositoryStashRecord)
    |          `- warning: associated value 'unableToDropStashRecordNotFound(record:)' of 'Sendable'-conforming enum 'RepositoryError' has non-sendable type 'any RepositoryStashRecord'; this is an error in the Swift 6 language mode
156 |
157 |     /// Occuts when the merge operations finishes, but conflicts have been detected
/host/spi-builder-workspace/Sources/Protocols/RepositoryStashRecord.swift:21:17: note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
19 |
20 | /// Describes a single shash record in a repository
21 | public protocol RepositoryStashRecord: RepositoryLogRecord {
   |                 `- note: protocol 'RepositoryStashRecord' does not conform to the 'Sendable' protocol
22 |
23 |     /// An index of this stash record in repository.
[44/112] Compiling Git File.swift
/host/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'default' 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
 25 |
 26 |     /// Indicates whether line annotations should be read.
[45/112] Compiling Git FileAnnotationRecord.swift
/host/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'default' 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
 25 |
 26 |     /// Indicates whether line annotations should be read.
[46/112] Compiling Git FileCoder.swift
/host/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'default' 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
 25 |
 26 |     /// Indicates whether line annotations should be read.
[47/112] Compiling Git FileStorage.swift
/host/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'default' 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
 25 |
 26 |     /// Indicates whether line annotations should be read.
[48/112] Compiling Git GitFile.swift
/host/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'default' 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
 25 |
 26 |     /// Indicates whether line annotations should be read.
[49/112] Compiling Git GitFileStorage.swift
/host/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'default' 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
 25 |
 26 |     /// Indicates whether line annotations should be read.
[50/112] Compiling Git GitCredentialsProvider.swift
/host/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'default' 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
 25 |
 26 |     /// Indicates whether line annotations should be read.
[51/112] Compiling Git GitFileStatus.swift
/host/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'default' 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
 25 |
 26 |     /// Indicates whether line annotations should be read.
[52/112] Compiling Git GitFileStatusList.swift
/host/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'default' 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
 25 |
 26 |     /// Indicates whether line annotations should be read.
[53/112] Compiling Git GitLogRecord.swift
/host/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'default' 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
 25 |
 26 |     /// Indicates whether line annotations should be read.
[54/112] Compiling Git GitLogRecordList.swift
/host/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'default' 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
 25 |
 26 |     /// Indicates whether line annotations should be read.
[55/112] Compiling Git GitMergeStatus.swift
/host/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'default' 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
 25 |
 26 |     /// Indicates whether line annotations should be read.
[56/112] Compiling Git GitReference.swift
/host/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'default' 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
 25 |
 26 |     /// Indicates whether line annotations should be read.
[57/112] Compiling Git GitReferenceList.swift
/host/spi-builder-workspace/Sources/Classes/FileManagement/File.swift:24:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 22 |
 23 |     /// Returns a default options to apply while processing a file
 24 |     public static var `default` = FileOptions()
    |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'default' 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
 25 |
 26 |     /// Indicates whether line annotations should be read.
[58/112] Compiling Git GitStashDropOptions.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
/host/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     /// Creates options with the pattern match
[59/112] Compiling Git StashDropTask.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
/host/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     /// Creates options with the pattern match
[60/112] Compiling Git GitStashListOptions.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
/host/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     /// Creates options with the pattern match
[61/112] Compiling Git StashListTask.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
/host/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     /// Creates options with the pattern match
[62/112] Compiling Git GitStatusOptions.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
/host/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     /// Creates options with the pattern match
[63/112] Compiling Git StatusTask.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
/host/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     /// Creates options with the pattern match
[64/112] Compiling Git GitTagListOptions.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
/host/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     /// Creates options with the pattern match
[65/112] Compiling Git GitTagOptions.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
/host/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     /// Creates options with the pattern match
[66/112] Compiling Git TagTask.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
/host/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     /// Creates options with the pattern match
[67/112] Compiling Git GitFormatDecoder.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
/host/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     /// Creates options with the pattern match
[68/112] Compiling Git GitFormatEncoder.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
/host/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     /// Creates options with the pattern match
[69/112] Compiling Git GitOutputParser.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
/host/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     /// Creates options with the pattern match
[70/112] Compiling Git IndexIterator.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
/host/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     /// Creates options with the pattern match
[71/112] Compiling Git GitReferenceName.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' 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
 39 |
 40 |     // MARK: - Private
/host/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
/host/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' 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
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/host/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' 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
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/host/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
[72/112] Compiling Git GitRemote.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' 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
 39 |
 40 |     // MARK: - Private
/host/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
/host/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' 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
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/host/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' 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
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/host/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
[73/112] Compiling Git GitRemoteList.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' 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
 39 |
 40 |     // MARK: - Private
/host/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
/host/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' 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
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/host/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' 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
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/host/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
[74/112] Compiling Git GitRepository.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' 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
 39 |
 40 |     // MARK: - Private
/host/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
/host/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' 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
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/host/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' 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
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/host/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
[75/112] Compiling Git GitRepository+Cherry.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' 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
 39 |
 40 |     // MARK: - Private
/host/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
/host/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' 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
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/host/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' 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
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/host/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
[76/112] Compiling Git GitRepository+CherryPick.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' 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
 39 |
 40 |     // MARK: - Private
/host/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
/host/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' 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
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/host/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' 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
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/host/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
[77/112] Compiling Git GitRepository+Files.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' 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
 39 |
 40 |     // MARK: - Private
/host/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
/host/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' 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
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/host/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' 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
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/host/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
[78/112] Compiling Git GitRepository+Init.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' 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
 39 |
 40 |     // MARK: - Private
/host/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
/host/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' 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
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/host/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' 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
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/host/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
[79/112] Compiling Git GitRepository+Log.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' 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
 39 |
 40 |     // MARK: - Private
/host/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
/host/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' 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
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/host/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' 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
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/host/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
[80/112] Compiling Git GitRepository+Merge.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' 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
 39 |
 40 |     // MARK: - Private
/host/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
/host/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' 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
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/host/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' 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
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/host/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
[81/112] Compiling Git GitRepository+Reference.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' 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
 39 |
 40 |     // MARK: - Private
/host/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
/host/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' 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
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/host/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' 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
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/host/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
[82/112] Compiling Git GitRepository+Remotes.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' 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
 39 |
 40 |     // MARK: - Private
/host/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
/host/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' 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
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/host/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' 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
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/host/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
[83/112] Compiling Git GitRepository+SparseCheckout.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' 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
 39 |
 40 |     // MARK: - Private
/host/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
/host/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' 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
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/host/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' 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
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/host/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
[84/112] Compiling Git GitRepository+Status.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/RepositoryTask.swift:38:16: warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 36 |
 37 |     /// A path to git executable file on the disk
 38 |     static var executablePath = "/usr/bin/git"
    |                |- warning: static property 'executablePath' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'executablePath' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: annotate 'executablePath' 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
 39 |
 40 |     // MARK: - Private
/host/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
/host/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:78:20: warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 76 |
 77 |         static var head: String = "HEAD"
 78 |         static var mergeHead: String = "MERGE_HEAD"
    |                    |- warning: static property 'mergeHead' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'mergeHead' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'mergeHead' 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
 79 |
 80 |         public required init(referenceName: String, direction: ComparisonDirection) {
/host/spi-builder-workspace/Sources/Classes/Tasks/Log/GitLogCompareOptions.swift:77:20: warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
 75 |     class Reference {
 76 |
 77 |         static var head: String = "HEAD"
    |                    |- warning: static property 'head' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                    |- note: convert 'head' to a 'let' constant to make 'Sendable' shared state immutable
    |                    |- note: annotate 'head' 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
 78 |         static var mergeHead: String = "MERGE_HEAD"
 79 |
/host/spi-builder-workspace/Sources/Classes/Tasks/Status/GitStatusOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitStatusOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
[85/112] Compiling Git CherryTask.swift
[86/112] Compiling Git GitCherryOptions.swift
[87/112] Compiling Git GitCherryResult.swift
[88/112] Compiling Git CherryPickOptions.swift
[89/112] Compiling Git CherryPickTask.swift
[90/112] Compiling Git CleanOptions.swift
[91/112] Compiling Git CleanTask.swift
[92/112] Compiling Git CloneOptions.swift
[93/112] Compiling Git CloneTask.swift
[94/112] Compiling Git CommitOptions.swift
[95/112] Compiling Git CommitTask.swift
[96/112] Compiling Git FetchTask.swift
[97/112] Compiling Git GitFetchOptions.swift
[98/112] Compiling Git InitOptions.swift
[99/112] Compiling Git GitRepository+Tag.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     /// Creates options with the pattern match
/host/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
[100/112] Compiling Git GitRepositoryErrorFormatter.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     /// Creates options with the pattern match
/host/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
[101/112] Compiling Git GitStashRecord.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     /// Creates options with the pattern match
/host/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
[102/112] Compiling Git GitStashRecordList.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     /// Creates options with the pattern match
/host/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
[103/112] Compiling Git GitTagRecord.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     /// Creates options with the pattern match
/host/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
[104/112] Compiling Git GitTagRecordList.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     /// Creates options with the pattern match
/host/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
[105/112] Compiling Git AddTask.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     /// Creates options with the pattern match
/host/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
[106/112] Compiling Git GitAddOptions.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     /// Creates options with the pattern match
/host/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
[107/112] Compiling Git ArgumentConvertible.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     /// Creates options with the pattern match
/host/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
[108/112] Compiling Git BranchOptions.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     /// Creates options with the pattern match
/host/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
[109/112] Compiling Git BranchTask.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     /// Creates options with the pattern match
/host/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
[110/112] Compiling Git CheckReferenceTask.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     /// Creates options with the pattern match
/host/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
[111/112] Compiling Git CheckoutOptions.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     /// Creates options with the pattern match
/host/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
[112/112] Compiling Git CheckoutTask.swift
/host/spi-builder-workspace/Sources/Classes/Tasks/Tag/GitTagListOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 | /// A set of options that are used for the listing tags operation
21 | public struct GitTagListOptions: ArgumentConvertible {
22 |     public static var `default` = GitTagListOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     /// Creates options with the pattern match
/host/spi-builder-workspace/Sources/Classes/Tasks/Add/GitAddOptions.swift:22:23: warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
20 |
21 |     /// Returns a default options
22 |     public static var `default` = GitAddOptions()
   |                       |- warning: static property 'default' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'default' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: annotate 'default' 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
23 |
24 |     public init() {}
BUILD FAILURE 6.0 linux