Build Information
Successful build of Actions with Swift 6.0 for Linux.
Swift 6 data race errors: 18
Build Command
bash -c docker run --rm -v "checkouts-4606859-1":/host -w "$workDir" 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 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/elegantchaos/Actions.git
Reference: master
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
From https://github.com/elegantchaos/Actions
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at 5775f81 added license
Cloned https://github.com/elegantchaos/Actions.git
Revision (git rev-parse @):
5775f81ab9d782b063580532b05e43be1eb470a0
SUCCESS checkout https://github.com/elegantchaos/Actions.git at master
========================================
Build
========================================
Selected platform: linux
Swift version: 6.0
Building package at path: $workDir
https://github.com/elegantchaos/Actions.git
Running build ...
bash -c docker run --rm -v "checkouts-4606859-1":/host -w "$workDir" 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 2>&1
Fetching https://github.com/elegantchaos/Logger.git
[1/1847] Fetching logger
Fetched https://github.com/elegantchaos/Logger.git from cache (0.25s)
Computing version for https://github.com/elegantchaos/Logger.git
Computed https://github.com/elegantchaos/Logger.git at 1.5.3 (0.45s)
Creating working copy for https://github.com/elegantchaos/Logger.git
Working copy of https://github.com/elegantchaos/Logger.git resolved at 1.5.3
Building for debugging...
[0/4] Write sources
[3/4] Write swift-version-24593BA9C3E375BF.txt
[5/12] Compiling Logger PrintHandler.swift
[6/12] Compiling Logger OSLogHandler.swift
[7/12] Compiling Logger Handler.swift
[8/12] Compiling Logger NSLogHandler.swift
[9/12] Compiling Logger Channel.swift
[10/12] Emitting module Logger
[11/12] Compiling Logger Context.swift
[12/12] Compiling Logger Manager.swift
[14/23] Compiling Actions DecodableWithContext.swift
[15/24] Compiling Actions ActionIdentification.swift
/host/spi-builder-workspace/Sources/Actions/ActionIdentification.swift:18:13: warning: var 'actionIDKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
16 | #endif
17 |
18 | private var actionIDKey: UInt8 = 0
| |- warning: var 'actionIDKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'actionIDKey' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'actionIDKey' 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
19 |
20 | extension ActionIdentification {
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:28:23: warning: static property 'observer' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
26 | public static let notification: ActionKey = "notification"
27 | public static let object: ActionKey = "object"
28 | public static let observer: ActionKey = "observer"
| |- warning: static property 'observer' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'observer' 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
29 | public static let root: ActionKey = "root"
30 | public static let selection: ActionKey = "selection"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:26:23: warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
24 | public static let info: ActionKey = "info"
25 | public static let model: ActionKey = "model"
26 | public static let notification: ActionKey = "notification"
| |- warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'notification' 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
27 | public static let object: ActionKey = "object"
28 | public static let observer: ActionKey = "observer"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:31:23: warning: static property 'sender' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
29 | public static let root: ActionKey = "root"
30 | public static let selection: ActionKey = "selection"
31 | public static let sender: ActionKey = "sender"
| |- warning: static property 'sender' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'sender' 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
32 | public static let skipValidation: ActionKey = "skipValidation"
33 | public static let target: ActionKey = "target"
[16/24] Compiling Actions ActionInfo.swift
/host/spi-builder-workspace/Sources/Actions/ActionIdentification.swift:18:13: warning: var 'actionIDKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
16 | #endif
17 |
18 | private var actionIDKey: UInt8 = 0
| |- warning: var 'actionIDKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'actionIDKey' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'actionIDKey' 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
19 |
20 | extension ActionIdentification {
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:28:23: warning: static property 'observer' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
26 | public static let notification: ActionKey = "notification"
27 | public static let object: ActionKey = "object"
28 | public static let observer: ActionKey = "observer"
| |- warning: static property 'observer' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'observer' 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
29 | public static let root: ActionKey = "root"
30 | public static let selection: ActionKey = "selection"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:26:23: warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
24 | public static let info: ActionKey = "info"
25 | public static let model: ActionKey = "model"
26 | public static let notification: ActionKey = "notification"
| |- warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'notification' 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
27 | public static let object: ActionKey = "object"
28 | public static let observer: ActionKey = "observer"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:31:23: warning: static property 'sender' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
29 | public static let root: ActionKey = "root"
30 | public static let selection: ActionKey = "selection"
31 | public static let sender: ActionKey = "sender"
| |- warning: static property 'sender' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'sender' 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
32 | public static let skipValidation: ActionKey = "skipValidation"
33 | public static let target: ActionKey = "target"
[17/24] Compiling Actions ActionNotification.swift
[18/24] Compiling Actions ActionSerialisation.swift
[19/24] Emitting module Actions
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:26:23: warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
24 | public static let info: ActionKey = "info"
25 | public static let model: ActionKey = "model"
26 | public static let notification: ActionKey = "notification"
| |- warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'notification' 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
27 | public static let object: ActionKey = "object"
28 | public static let observer: ActionKey = "observer"
/host/spi-builder-workspace/Sources/Actions/ActionIdentification.swift:18:13: warning: var 'actionIDKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
16 | #endif
17 |
18 | private var actionIDKey: UInt8 = 0
| |- warning: var 'actionIDKey' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'actionIDKey' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: annotate 'actionIDKey' 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
19 |
20 | extension ActionIdentification {
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:28:23: warning: static property 'observer' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
26 | public static let notification: ActionKey = "notification"
27 | public static let object: ActionKey = "object"
28 | public static let observer: ActionKey = "observer"
| |- warning: static property 'observer' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'observer' 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
29 | public static let root: ActionKey = "root"
30 | public static let selection: ActionKey = "selection"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:21:23: warning: static property 'action' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
19 |
20 | extension ActionKey {
21 | public static let action: ActionKey = "action"
| |- warning: static property 'action' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'action' 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
22 | public static let actionComponents: ActionKey = "components"
23 | public static let document: ActionKey = "document"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:22:23: warning: static property 'actionComponents' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
20 | extension ActionKey {
21 | public static let action: ActionKey = "action"
22 | public static let actionComponents: ActionKey = "components"
| |- warning: static property 'actionComponents' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'actionComponents' 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 | public static let document: ActionKey = "document"
24 | public static let info: ActionKey = "info"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:23:23: warning: static property 'document' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
21 | public static let action: ActionKey = "action"
22 | public static let actionComponents: ActionKey = "components"
23 | public static let document: ActionKey = "document"
| |- warning: static property 'document' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'document' 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
24 | public static let info: ActionKey = "info"
25 | public static let model: ActionKey = "model"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:24:23: warning: static property 'info' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
22 | public static let actionComponents: ActionKey = "components"
23 | public static let document: ActionKey = "document"
24 | public static let info: ActionKey = "info"
| |- warning: static property 'info' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'info' 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 | public static let model: ActionKey = "model"
26 | public static let notification: ActionKey = "notification"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:25:23: warning: static property 'model' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
23 | public static let document: ActionKey = "document"
24 | public static let info: ActionKey = "info"
25 | public static let model: ActionKey = "model"
| |- warning: static property 'model' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'model' 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
26 | public static let notification: ActionKey = "notification"
27 | public static let object: ActionKey = "object"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:27:23: warning: static property 'object' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
25 | public static let model: ActionKey = "model"
26 | public static let notification: ActionKey = "notification"
27 | public static let object: ActionKey = "object"
| |- warning: static property 'object' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'object' 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
28 | public static let observer: ActionKey = "observer"
29 | public static let root: ActionKey = "root"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:29:23: warning: static property 'root' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
27 | public static let object: ActionKey = "object"
28 | public static let observer: ActionKey = "observer"
29 | public static let root: ActionKey = "root"
| |- warning: static property 'root' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'root' 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
30 | public static let selection: ActionKey = "selection"
31 | public static let sender: ActionKey = "sender"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:30:23: warning: static property 'selection' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
28 | public static let observer: ActionKey = "observer"
29 | public static let root: ActionKey = "root"
30 | public static let selection: ActionKey = "selection"
| |- warning: static property 'selection' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'selection' 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
31 | public static let sender: ActionKey = "sender"
32 | public static let skipValidation: ActionKey = "skipValidation"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:31:23: warning: static property 'sender' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
29 | public static let root: ActionKey = "root"
30 | public static let selection: ActionKey = "selection"
31 | public static let sender: ActionKey = "sender"
| |- warning: static property 'sender' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'sender' 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
32 | public static let skipValidation: ActionKey = "skipValidation"
33 | public static let target: ActionKey = "target"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:32:23: warning: static property 'skipValidation' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
30 | public static let selection: ActionKey = "selection"
31 | public static let sender: ActionKey = "sender"
32 | public static let skipValidation: ActionKey = "skipValidation"
| |- warning: static property 'skipValidation' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'skipValidation' 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
33 | public static let target: ActionKey = "target"
34 | public static let viewModel: ActionKey = "viewModel"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:33:23: warning: static property 'target' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
31 | public static let sender: ActionKey = "sender"
32 | public static let skipValidation: ActionKey = "skipValidation"
33 | public static let target: ActionKey = "target"
| |- warning: static property 'target' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'target' 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
34 | public static let viewModel: ActionKey = "viewModel"
35 | public static let window: ActionKey = "window"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:34:23: warning: static property 'viewModel' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
32 | public static let skipValidation: ActionKey = "skipValidation"
33 | public static let target: ActionKey = "target"
34 | public static let viewModel: ActionKey = "viewModel"
| |- warning: static property 'viewModel' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'viewModel' 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
35 | public static let window: ActionKey = "window"
36 | }
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:35:23: warning: static property 'window' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
33 | public static let target: ActionKey = "target"
34 | public static let viewModel: ActionKey = "viewModel"
35 | public static let window: ActionKey = "window"
| |- warning: static property 'window' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'window' 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
36 | }
37 |
/host/spi-builder-workspace/Sources/Actions/ActionManager.swift:13:12: warning: let 'actionChannel' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
11 | */
12 |
13 | public let actionChannel = Channel("com.elegantchaos.actions")
| `- warning: let 'actionChannel' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
14 | public let providerChannel = Channel("com.elegantchaos.actions.providers")
15 |
/host/spi-builder-workspace/.build/checkouts/Logger/Sources/Logger/Channel.swift:15:14: note: class 'Channel' does not conform to the 'Sendable' protocol
13 | */
14 |
15 | public class Channel {
| `- note: class 'Channel' does not conform to the 'Sendable' protocol
16 |
17 | /**
/host/spi-builder-workspace/Sources/Actions/ActionManager.swift:7:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Logger'
5 |
6 | import Foundation
7 | import Logger
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Logger'
8 |
9 | /**
:
11 | */
12 |
13 | public let actionChannel = Channel("com.elegantchaos.actions")
| |- note: annotate 'actionChannel' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | public let providerChannel = Channel("com.elegantchaos.actions.providers")
15 |
/host/spi-builder-workspace/Sources/Actions/ActionManager.swift:14:12: warning: let 'providerChannel' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
12 |
13 | public let actionChannel = Channel("com.elegantchaos.actions")
14 | public let providerChannel = Channel("com.elegantchaos.actions.providers")
| |- warning: let 'providerChannel' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'providerChannel' 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
15 |
16 | public protocol ActionResponder {
/host/spi-builder-workspace/.build/checkouts/Logger/Sources/Logger/Channel.swift:15:14: note: class 'Channel' does not conform to the 'Sendable' protocol
13 | */
14 |
15 | public class Channel {
| `- note: class 'Channel' does not conform to the 'Sendable' protocol
16 |
17 | /**
[20/24] Compiling Actions Action.swift
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:26:23: warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
24 | public static let info: ActionKey = "info"
25 | public static let model: ActionKey = "model"
26 | public static let notification: ActionKey = "notification"
| |- warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'notification' 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
27 | public static let object: ActionKey = "object"
28 | public static let observer: ActionKey = "observer"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:31:23: warning: static property 'sender' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
29 | public static let root: ActionKey = "root"
30 | public static let selection: ActionKey = "selection"
31 | public static let sender: ActionKey = "sender"
| |- warning: static property 'sender' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'sender' 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
32 | public static let skipValidation: ActionKey = "skipValidation"
33 | public static let target: ActionKey = "target"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:21:23: warning: static property 'action' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
19 |
20 | extension ActionKey {
21 | public static let action: ActionKey = "action"
| |- warning: static property 'action' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'action' 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
22 | public static let actionComponents: ActionKey = "components"
23 | public static let document: ActionKey = "document"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:24:23: warning: static property 'info' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
22 | public static let actionComponents: ActionKey = "components"
23 | public static let document: ActionKey = "document"
24 | public static let info: ActionKey = "info"
| |- warning: static property 'info' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'info' 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 | public static let model: ActionKey = "model"
26 | public static let notification: ActionKey = "notification"
[21/24] Compiling Actions ActionContext.swift
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:26:23: warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
24 | public static let info: ActionKey = "info"
25 | public static let model: ActionKey = "model"
26 | public static let notification: ActionKey = "notification"
| |- warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'notification' 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
27 | public static let object: ActionKey = "object"
28 | public static let observer: ActionKey = "observer"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:31:23: warning: static property 'sender' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
29 | public static let root: ActionKey = "root"
30 | public static let selection: ActionKey = "selection"
31 | public static let sender: ActionKey = "sender"
| |- warning: static property 'sender' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'sender' 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
32 | public static let skipValidation: ActionKey = "skipValidation"
33 | public static let target: ActionKey = "target"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:21:23: warning: static property 'action' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
19 |
20 | extension ActionKey {
21 | public static let action: ActionKey = "action"
| |- warning: static property 'action' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'action' 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
22 | public static let actionComponents: ActionKey = "components"
23 | public static let document: ActionKey = "document"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:24:23: warning: static property 'info' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
22 | public static let actionComponents: ActionKey = "components"
23 | public static let document: ActionKey = "document"
24 | public static let info: ActionKey = "info"
| |- warning: static property 'info' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'info' 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 | public static let model: ActionKey = "model"
26 | public static let notification: ActionKey = "notification"
[22/24] Compiling Actions DelegatedAction.swift
[23/24] Compiling Actions ActionKey.swift
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:21:23: warning: static property 'action' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
19 |
20 | extension ActionKey {
21 | public static let action: ActionKey = "action"
| |- warning: static property 'action' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'action' 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
22 | public static let actionComponents: ActionKey = "components"
23 | public static let document: ActionKey = "document"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:22:23: warning: static property 'actionComponents' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
20 | extension ActionKey {
21 | public static let action: ActionKey = "action"
22 | public static let actionComponents: ActionKey = "components"
| |- warning: static property 'actionComponents' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'actionComponents' 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 | public static let document: ActionKey = "document"
24 | public static let info: ActionKey = "info"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:23:23: warning: static property 'document' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
21 | public static let action: ActionKey = "action"
22 | public static let actionComponents: ActionKey = "components"
23 | public static let document: ActionKey = "document"
| |- warning: static property 'document' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'document' 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
24 | public static let info: ActionKey = "info"
25 | public static let model: ActionKey = "model"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:24:23: warning: static property 'info' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
22 | public static let actionComponents: ActionKey = "components"
23 | public static let document: ActionKey = "document"
24 | public static let info: ActionKey = "info"
| |- warning: static property 'info' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'info' 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 | public static let model: ActionKey = "model"
26 | public static let notification: ActionKey = "notification"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:25:23: warning: static property 'model' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
23 | public static let document: ActionKey = "document"
24 | public static let info: ActionKey = "info"
25 | public static let model: ActionKey = "model"
| |- warning: static property 'model' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'model' 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
26 | public static let notification: ActionKey = "notification"
27 | public static let object: ActionKey = "object"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:26:23: warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
24 | public static let info: ActionKey = "info"
25 | public static let model: ActionKey = "model"
26 | public static let notification: ActionKey = "notification"
| |- warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'notification' 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
27 | public static let object: ActionKey = "object"
28 | public static let observer: ActionKey = "observer"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:27:23: warning: static property 'object' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
25 | public static let model: ActionKey = "model"
26 | public static let notification: ActionKey = "notification"
27 | public static let object: ActionKey = "object"
| |- warning: static property 'object' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'object' 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
28 | public static let observer: ActionKey = "observer"
29 | public static let root: ActionKey = "root"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:28:23: warning: static property 'observer' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
26 | public static let notification: ActionKey = "notification"
27 | public static let object: ActionKey = "object"
28 | public static let observer: ActionKey = "observer"
| |- warning: static property 'observer' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'observer' 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
29 | public static let root: ActionKey = "root"
30 | public static let selection: ActionKey = "selection"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:29:23: warning: static property 'root' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
27 | public static let object: ActionKey = "object"
28 | public static let observer: ActionKey = "observer"
29 | public static let root: ActionKey = "root"
| |- warning: static property 'root' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'root' 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
30 | public static let selection: ActionKey = "selection"
31 | public static let sender: ActionKey = "sender"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:30:23: warning: static property 'selection' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
28 | public static let observer: ActionKey = "observer"
29 | public static let root: ActionKey = "root"
30 | public static let selection: ActionKey = "selection"
| |- warning: static property 'selection' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'selection' 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
31 | public static let sender: ActionKey = "sender"
32 | public static let skipValidation: ActionKey = "skipValidation"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:31:23: warning: static property 'sender' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
29 | public static let root: ActionKey = "root"
30 | public static let selection: ActionKey = "selection"
31 | public static let sender: ActionKey = "sender"
| |- warning: static property 'sender' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'sender' 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
32 | public static let skipValidation: ActionKey = "skipValidation"
33 | public static let target: ActionKey = "target"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:32:23: warning: static property 'skipValidation' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
30 | public static let selection: ActionKey = "selection"
31 | public static let sender: ActionKey = "sender"
32 | public static let skipValidation: ActionKey = "skipValidation"
| |- warning: static property 'skipValidation' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'skipValidation' 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
33 | public static let target: ActionKey = "target"
34 | public static let viewModel: ActionKey = "viewModel"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:33:23: warning: static property 'target' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
31 | public static let sender: ActionKey = "sender"
32 | public static let skipValidation: ActionKey = "skipValidation"
33 | public static let target: ActionKey = "target"
| |- warning: static property 'target' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'target' 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
34 | public static let viewModel: ActionKey = "viewModel"
35 | public static let window: ActionKey = "window"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:34:23: warning: static property 'viewModel' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
32 | public static let skipValidation: ActionKey = "skipValidation"
33 | public static let target: ActionKey = "target"
34 | public static let viewModel: ActionKey = "viewModel"
| |- warning: static property 'viewModel' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'viewModel' 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
35 | public static let window: ActionKey = "window"
36 | }
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:35:23: warning: static property 'window' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
33 | public static let target: ActionKey = "target"
34 | public static let viewModel: ActionKey = "viewModel"
35 | public static let window: ActionKey = "window"
| |- warning: static property 'window' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'window' 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
36 | }
37 |
[24/24] Compiling Actions ActionManager.swift
/host/spi-builder-workspace/Sources/Actions/ActionManager.swift:13:12: warning: let 'actionChannel' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
11 | */
12 |
13 | public let actionChannel = Channel("com.elegantchaos.actions")
| `- warning: let 'actionChannel' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
14 | public let providerChannel = Channel("com.elegantchaos.actions.providers")
15 |
/host/spi-builder-workspace/.build/checkouts/Logger/Sources/Logger/Channel.swift:15:14: note: class 'Channel' does not conform to the 'Sendable' protocol
13 | */
14 |
15 | public class Channel {
| `- note: class 'Channel' does not conform to the 'Sendable' protocol
16 |
17 | /**
/host/spi-builder-workspace/Sources/Actions/ActionManager.swift:7:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Logger'
5 |
6 | import Foundation
7 | import Logger
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Logger'
8 |
9 | /**
:
11 | */
12 |
13 | public let actionChannel = Channel("com.elegantchaos.actions")
| |- note: annotate 'actionChannel' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | public let providerChannel = Channel("com.elegantchaos.actions.providers")
15 |
/host/spi-builder-workspace/Sources/Actions/ActionManager.swift:14:12: warning: let 'providerChannel' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
12 |
13 | public let actionChannel = Channel("com.elegantchaos.actions")
14 | public let providerChannel = Channel("com.elegantchaos.actions.providers")
| |- warning: let 'providerChannel' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'providerChannel' 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
15 |
16 | public protocol ActionResponder {
/host/spi-builder-workspace/.build/checkouts/Logger/Sources/Logger/Channel.swift:15:14: note: class 'Channel' does not conform to the 'Sendable' protocol
13 | */
14 |
15 | public class Channel {
| `- note: class 'Channel' does not conform to the 'Sendable' protocol
16 |
17 | /**
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:26:23: warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
24 | public static let info: ActionKey = "info"
25 | public static let model: ActionKey = "model"
26 | public static let notification: ActionKey = "notification"
| |- warning: static property 'notification' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'notification' 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
27 | public static let object: ActionKey = "object"
28 | public static let observer: ActionKey = "observer"
/host/spi-builder-workspace/Sources/Actions/ActionKey.swift:32:23: warning: static property 'skipValidation' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
6 | import Foundation
7 |
8 | public struct ActionKey: Equatable, Hashable, ExpressibleByStringLiteral {
| `- note: consider making struct 'ActionKey' conform to the 'Sendable' protocol
9 | public let value: String
10 | public init(_ value: String) { self.value = value }
:
30 | public static let selection: ActionKey = "selection"
31 | public static let sender: ActionKey = "sender"
32 | public static let skipValidation: ActionKey = "skipValidation"
| |- warning: static property 'skipValidation' is not concurrency-safe because non-'Sendable' type 'ActionKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'skipValidation' 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
33 | public static let target: ActionKey = "target"
34 | public static let viewModel: ActionKey = "viewModel"
[26/27] Emitting module ActionsTestSupport
[27/27] Compiling ActionsTestSupport ActionsTestSupport.swift
/host/spi-builder-workspace/Sources/Actions/ActionManager.swift:13:12: warning: let 'actionChannel' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
11 | */
12 |
13 | public let actionChannel = Channel("com.elegantchaos.actions")
| |- warning: let 'actionChannel' is not concurrency-safe because non-'Sendable' type 'Channel' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: annotate 'actionChannel' with '@MainActor' if property should only be accessed from the main actor
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | public let providerChannel = Channel("com.elegantchaos.actions.providers")
15 |
/host/spi-builder-workspace/.build/checkouts/Logger/Sources/Logger/Channel.swift:15:14: note: class 'Channel' does not conform to the 'Sendable' protocol
13 | */
14 |
15 | public class Channel {
| `- note: class 'Channel' does not conform to the 'Sendable' protocol
16 |
17 | /**
Build complete! (14.53s)
Build complete.
{
"dependencies" : [
{
"identity" : "logger",
"requirement" : {
"range" : [
{
"lower_bound" : "1.5.3",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/elegantchaos/Logger.git"
}
],
"manifest_display_name" : "Actions",
"name" : "Actions",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.13"
},
{
"name" : "ios",
"version" : "12.0"
},
{
"name" : "tvos",
"version" : "12.0"
}
],
"products" : [
{
"name" : "Actions",
"targets" : [
"Actions"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "ActionsTestSupport",
"targets" : [
"ActionsTestSupport"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "ActionsTests",
"module_type" : "SwiftTarget",
"name" : "ActionsTests",
"path" : "Tests/ActionsTests",
"sources" : [
"ActionContextTests.swift",
"ActionIdentificationTests.swift",
"ActionObserverTests.swift",
"ActionSerializationTests.swift",
"ActionsNotificationTests.swift",
"ActionsTests.swift",
"DelegatedActionTests.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"Actions",
"ActionsTestSupport"
],
"type" : "test"
},
{
"c99name" : "ActionsTestSupport",
"module_type" : "SwiftTarget",
"name" : "ActionsTestSupport",
"path" : "Sources/ActionsTestSupport",
"product_memberships" : [
"ActionsTestSupport"
],
"sources" : [
"ActionsTestSupport.swift"
],
"target_dependencies" : [
"Actions"
],
"type" : "library"
},
{
"c99name" : "Actions",
"module_type" : "SwiftTarget",
"name" : "Actions",
"path" : "Sources/Actions",
"product_dependencies" : [
"Logger"
],
"product_memberships" : [
"Actions",
"ActionsTestSupport"
],
"sources" : [
"Action.swift",
"ActionContext.swift",
"ActionIdentification.swift",
"ActionInfo.swift",
"ActionKey.swift",
"ActionManager.swift",
"ActionNotification.swift",
"ActionSerialisation.swift",
"DecodableWithContext.swift",
"DelegatedAction.swift"
],
"type" : "library"
}
],
"tools_version" : "5.0"
}
Done.