Build Information
Successful build of Workflow, reference main (20d302
), with Swift 6.1 for macOS (SPM) on 5 May 2025 21:29:21 UTC.
Swift 6 data race errors: 34
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
Build Log
[766/905] Compiling Workflow Sink.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[767/905] Compiling Workflow StateMutationSink.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[768/905] Emitting module IdentifiedCollections
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[775/905] Compiling Workflow WorkflowLogger.swift
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowLogger.swift:27:28: warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
25 | /// `true`, defaults to the `workflow` handle, otherwise defaults to the shared `.disabled`
26 | /// handle.
27 | fileprivate static var active: OSLog = WorkflowLogging.isOSLoggingAllowed ? .workflow : .disabled
| |- warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'active' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | }
29 |
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowLogger.swift:93:23: warning: static property 'config' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
91 |
92 | /// Configuration options used to determine which activities are logged.
93 | public static var config: Config = .rootRendersAndActions
| |- warning: static property 'config' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'config' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'config' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
94 | }
95 |
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowLogger.swift:99:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'WorkflowLogging.Config' may have shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | extension WorkflowLogging {
50 | public struct Config {
| `- note: consider making struct 'Config' conform to the 'Sendable' protocol
51 | /// Configuration options to control logging during a render pass.
52 | public enum RenderLoggingMode {
:
97 | /// Logging config that will output the most information.
98 | /// Will also have the most noticeable effect on performance.
99 | public static let debug: Self = .init(renderLoggingMode: .allNodes, logLifetimes: true, logActions: true)
| |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'WorkflowLogging.Config' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'debug' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
100 |
101 | /// Logging config that will record render timings for root nodes as well as action events.
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowLogger.swift:104:23: warning: static property 'rootRendersAndActions' is not concurrency-safe because non-'Sendable' type 'WorkflowLogging.Config' may have shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | extension WorkflowLogging {
50 | public struct Config {
| `- note: consider making struct 'Config' conform to the 'Sendable' protocol
51 | /// Configuration options to control logging during a render pass.
52 | public enum RenderLoggingMode {
:
102 | /// This provides a reasonable performance tradeoff if you're interested in the runtime's behavior
103 | /// but don't wan to pay the price of logging everything.
104 | public static let rootRendersAndActions: Self = .init(renderLoggingMode: .rootsOnly, logLifetimes: false, logActions: true)
| |- warning: static property 'rootRendersAndActions' is not concurrency-safe because non-'Sendable' type 'WorkflowLogging.Config' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'rootRendersAndActions' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 | }
106 |
[776/905] Compiling Workflow WorkflowNode.swift
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/SubtreeManager.swift:343:21: warning: capture of 'self' with non-sendable type 'WorkflowNode<WorkflowType>.SubtreeManager.ReusableSink<Action>?' in a '@Sendable' closure
333 | }
334 |
335 | fileprivate final class ReusableSink<Action: WorkflowAction>: AnyReusableSink where Action.WorkflowType == WorkflowType {
| `- note: generic class 'ReusableSink' does not conform to the 'Sendable' protocol
336 | func handle(action: Action) {
337 | let output = Output.update(action, source: .external)
:
341 | // Scheduling it to be processed after.
342 | DispatchQueue.workflowExecution.async { [weak self] in
343 | self?.eventPipe.handle(event: output)
| `- warning: capture of 'self' with non-sendable type 'WorkflowNode<WorkflowType>.SubtreeManager.ReusableSink<Action>?' in a '@Sendable' closure
344 | }
345 | return
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/SubtreeManager.swift:343:51: warning: capture of 'output' with non-sendable type 'WorkflowNode<WorkflowType>.SubtreeManager.Output' in a '@Sendable' closure
156 |
157 | extension WorkflowNode.SubtreeManager {
158 | enum Output {
| `- note: consider making enum 'Output' conform to the 'Sendable' protocol
159 | case update(any WorkflowAction<WorkflowType>, source: EventSource)
160 | case childDidUpdate(WorkflowUpdateDebugInfo?)
:
341 | // Scheduling it to be processed after.
342 | DispatchQueue.workflowExecution.async { [weak self] in
343 | self?.eventPipe.handle(event: output)
| `- warning: capture of 'output' with non-sendable type 'WorkflowNode<WorkflowType>.SubtreeManager.Output' in a '@Sendable' closure
344 | }
345 | return
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/SubtreeManager.swift:343:21: warning: capture of 'self' with non-sendable type 'WorkflowNode<WorkflowType>.SubtreeManager.ReusableSink<Action>?' in a '@Sendable' closure
333 | }
334 |
335 | fileprivate final class ReusableSink<Action: WorkflowAction>: AnyReusableSink where Action.WorkflowType == WorkflowType {
| `- note: generic class 'ReusableSink' does not conform to the 'Sendable' protocol
336 | func handle(action: Action) {
337 | let output = Output.update(action, source: .external)
:
341 | // Scheduling it to be processed after.
342 | DispatchQueue.workflowExecution.async { [weak self] in
343 | self?.eventPipe.handle(event: output)
| `- warning: capture of 'self' with non-sendable type 'WorkflowNode<WorkflowType>.SubtreeManager.ReusableSink<Action>?' in a '@Sendable' closure
344 | }
345 | return
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/SubtreeManager.swift:343:51: warning: capture of 'output' with non-sendable type 'WorkflowNode<WorkflowType>.SubtreeManager.Output' in a '@Sendable' closure
156 |
157 | extension WorkflowNode.SubtreeManager {
158 | enum Output {
| `- note: consider making enum 'Output' conform to the 'Sendable' protocol
159 | case update(any WorkflowAction<WorkflowType>, source: EventSource)
160 | case childDidUpdate(WorkflowUpdateDebugInfo?)
:
341 | // Scheduling it to be processed after.
342 | DispatchQueue.workflowExecution.async { [weak self] in
343 | self?.eventPipe.handle(event: output)
| `- warning: capture of 'output' with non-sendable type 'WorkflowNode<WorkflowType>.SubtreeManager.Output' in a '@Sendable' closure
344 | }
345 | return
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/Debugging.swift:163:28: warning: static property 'unexpectedlyMissing' is not concurrency-safe because non-'Sendable' type 'WorkflowUpdateDebugInfo' may have shared mutable state; this is an error in the Swift 6 language mode
15 | */
16 |
17 | public struct WorkflowUpdateDebugInfo: Codable, Equatable {
| `- note: consider making struct 'WorkflowUpdateDebugInfo' conform to the 'Sendable' protocol
18 | public var workflowType: String
19 | public var kind: Kind
:
161 |
162 | extension WorkflowUpdateDebugInfo {
163 | fileprivate static let unexpectedlyMissing = {
| |- warning: static property 'unexpectedlyMissing' is not concurrency-safe because non-'Sendable' type 'WorkflowUpdateDebugInfo' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'unexpectedlyMissing' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
164 | assertionFailure("Creation of actual WorkflowUpdateDebugInfo failed unexpectedly")
165 | return WorkflowUpdateDebugInfo(
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/Debugging.swift:163:28: warning: static property 'unexpectedlyMissing' is not concurrency-safe because non-'Sendable' type 'WorkflowUpdateDebugInfo' may have shared mutable state; this is an error in the Swift 6 language mode
15 | */
16 |
17 | public struct WorkflowUpdateDebugInfo: Codable, Equatable {
| `- note: consider making struct 'WorkflowUpdateDebugInfo' conform to the 'Sendable' protocol
18 | public var workflowType: String
19 | public var kind: Kind
:
161 |
162 | extension WorkflowUpdateDebugInfo {
163 | fileprivate static let unexpectedlyMissing = {
| |- warning: static property 'unexpectedlyMissing' is not concurrency-safe because non-'Sendable' type 'WorkflowUpdateDebugInfo' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'unexpectedlyMissing' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
164 | assertionFailure("Creation of actual WorkflowUpdateDebugInfo failed unexpectedly")
165 | return WorkflowUpdateDebugInfo(
[781/906] Compiling Workflow WorkflowAction.swift
[784/906] Compiling Workflow WorkflowHost.swift
[787/906] Compiling Workflow WorkflowNode.swift
[788/906] Compiling Workflow WorkflowLogger.swift
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowLogger.swift:27:28: warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
25 | /// `true`, defaults to the `workflow` handle, otherwise defaults to the shared `.disabled`
26 | /// handle.
27 | fileprivate static var active: OSLog = WorkflowLogging.isOSLoggingAllowed ? .workflow : .disabled
| |- warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'active' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | }
29 |
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowLogger.swift:93:23: warning: static property 'config' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
91 |
92 | /// Configuration options used to determine which activities are logged.
93 | public static var config: Config = .rootRendersAndActions
| |- warning: static property 'config' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'config' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'config' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
94 | }
95 |
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowLogger.swift:99:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'WorkflowLogging.Config' may have shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | extension WorkflowLogging {
50 | public struct Config {
| `- note: consider making struct 'Config' conform to the 'Sendable' protocol
51 | /// Configuration options to control logging during a render pass.
52 | public enum RenderLoggingMode {
:
97 | /// Logging config that will output the most information.
98 | /// Will also have the most noticeable effect on performance.
99 | public static let debug: Self = .init(renderLoggingMode: .allNodes, logLifetimes: true, logActions: true)
| |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'WorkflowLogging.Config' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'debug' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
100 |
101 | /// Logging config that will record render timings for root nodes as well as action events.
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowLogger.swift:104:23: warning: static property 'rootRendersAndActions' is not concurrency-safe because non-'Sendable' type 'WorkflowLogging.Config' may have shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | extension WorkflowLogging {
50 | public struct Config {
| `- note: consider making struct 'Config' conform to the 'Sendable' protocol
51 | /// Configuration options to control logging during a render pass.
52 | public enum RenderLoggingMode {
:
102 | /// This provides a reasonable performance tradeoff if you're interested in the runtime's behavior
103 | /// but don't wan to pay the price of logging everything.
104 | public static let rootRendersAndActions: Self = .init(renderLoggingMode: .rootsOnly, logLifetimes: false, logActions: true)
| |- warning: static property 'rootRendersAndActions' is not concurrency-safe because non-'Sendable' type 'WorkflowLogging.Config' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'rootRendersAndActions' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 | }
106 |
[791/906] Emitting module Workflow
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/Debugging.swift:163:28: warning: static property 'unexpectedlyMissing' is not concurrency-safe because non-'Sendable' type 'WorkflowUpdateDebugInfo' may have shared mutable state; this is an error in the Swift 6 language mode
15 | */
16 |
17 | public struct WorkflowUpdateDebugInfo: Codable, Equatable {
| `- note: consider making struct 'WorkflowUpdateDebugInfo' conform to the 'Sendable' protocol
18 | public var workflowType: String
19 | public var kind: Kind
:
161 |
162 | extension WorkflowUpdateDebugInfo {
163 | fileprivate static let unexpectedlyMissing = {
| |- warning: static property 'unexpectedlyMissing' is not concurrency-safe because non-'Sendable' type 'WorkflowUpdateDebugInfo' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'unexpectedlyMissing' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
164 | assertionFailure("Creation of actual WorkflowUpdateDebugInfo failed unexpectedly")
165 | return WorkflowUpdateDebugInfo(
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowLogger.swift:27:28: warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
25 | /// `true`, defaults to the `workflow` handle, otherwise defaults to the shared `.disabled`
26 | /// handle.
27 | fileprivate static var active: OSLog = WorkflowLogging.isOSLoggingAllowed ? .workflow : .disabled
| |- warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'active' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | }
29 |
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowLogger.swift:93:23: warning: static property 'config' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
91 |
92 | /// Configuration options used to determine which activities are logged.
93 | public static var config: Config = .rootRendersAndActions
| |- warning: static property 'config' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'config' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'config' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
94 | }
95 |
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowLogger.swift:99:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'WorkflowLogging.Config' may have shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | extension WorkflowLogging {
50 | public struct Config {
| `- note: consider making struct 'Config' conform to the 'Sendable' protocol
51 | /// Configuration options to control logging during a render pass.
52 | public enum RenderLoggingMode {
:
97 | /// Logging config that will output the most information.
98 | /// Will also have the most noticeable effect on performance.
99 | public static let debug: Self = .init(renderLoggingMode: .allNodes, logLifetimes: true, logActions: true)
| |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'WorkflowLogging.Config' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'debug' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
100 |
101 | /// Logging config that will record render timings for root nodes as well as action events.
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowLogger.swift:104:23: warning: static property 'rootRendersAndActions' is not concurrency-safe because non-'Sendable' type 'WorkflowLogging.Config' may have shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | extension WorkflowLogging {
50 | public struct Config {
| `- note: consider making struct 'Config' conform to the 'Sendable' protocol
51 | /// Configuration options to control logging during a render pass.
52 | public enum RenderLoggingMode {
:
102 | /// This provides a reasonable performance tradeoff if you're interested in the runtime's behavior
103 | /// but don't wan to pay the price of logging everything.
104 | public static let rootRendersAndActions: Self = .init(renderLoggingMode: .rootsOnly, logLifetimes: false, logActions: true)
| |- warning: static property 'rootRendersAndActions' is not concurrency-safe because non-'Sendable' type 'WorkflowLogging.Config' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'rootRendersAndActions' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 | }
106 |
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowObserver.swift:107:28: warning: static property '_nextRawID' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
105 | public struct WorkflowSession {
106 | public struct Identifier: Hashable {
107 | private static var _nextRawID: UInt64 = 0
| |- warning: static property '_nextRawID' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_nextRawID' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_nextRawID' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
108 | private static func _makeNextSessionID() -> UInt64 {
109 | let nextID = _nextRawID
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowObserver.swift:349:24: warning: static property '_sharedInterceptorStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
347 | @_spi(WorkflowGlobalObservation)
348 | public enum WorkflowObservation {
349 | private static var _sharedInterceptorStorage: ObserversInterceptor = NoOpObserversInterceptor()
| |- warning: static property '_sharedInterceptorStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_sharedInterceptorStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_sharedInterceptorStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
350 |
351 | /// The `DefaultObserversProvider` used by all runtimes.
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[796/906] Emitting module IdentifiedCollections
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[797/907] Compiling Workflow WorkflowAction.swift
[798/907] Compiling Workflow WorkflowHost.swift
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/Debugging.swift:163:28: warning: static property 'unexpectedlyMissing' is not concurrency-safe because non-'Sendable' type 'WorkflowUpdateDebugInfo' may have shared mutable state; this is an error in the Swift 6 language mode
15 | */
16 |
17 | public struct WorkflowUpdateDebugInfo: Codable, Equatable {
| `- note: consider making struct 'WorkflowUpdateDebugInfo' conform to the 'Sendable' protocol
18 | public var workflowType: String
19 | public var kind: Kind
:
161 |
162 | extension WorkflowUpdateDebugInfo {
163 | fileprivate static let unexpectedlyMissing = {
| |- warning: static property 'unexpectedlyMissing' is not concurrency-safe because non-'Sendable' type 'WorkflowUpdateDebugInfo' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'unexpectedlyMissing' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
164 | assertionFailure("Creation of actual WorkflowUpdateDebugInfo failed unexpectedly")
165 | return WorkflowUpdateDebugInfo(
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/Debugging.swift:163:28: warning: static property 'unexpectedlyMissing' is not concurrency-safe because non-'Sendable' type 'WorkflowUpdateDebugInfo' may have shared mutable state; this is an error in the Swift 6 language mode
15 | */
16 |
17 | public struct WorkflowUpdateDebugInfo: Codable, Equatable {
| `- note: consider making struct 'WorkflowUpdateDebugInfo' conform to the 'Sendable' protocol
18 | public var workflowType: String
19 | public var kind: Kind
:
161 |
162 | extension WorkflowUpdateDebugInfo {
163 | fileprivate static let unexpectedlyMissing = {
| |- warning: static property 'unexpectedlyMissing' is not concurrency-safe because non-'Sendable' type 'WorkflowUpdateDebugInfo' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'unexpectedlyMissing' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
164 | assertionFailure("Creation of actual WorkflowUpdateDebugInfo failed unexpectedly")
165 | return WorkflowUpdateDebugInfo(
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/SubtreeManager.swift:343:21: warning: capture of 'self' with non-sendable type 'WorkflowNode<WorkflowType>.SubtreeManager.ReusableSink<Action>?' in a '@Sendable' closure
333 | }
334 |
335 | fileprivate final class ReusableSink<Action: WorkflowAction>: AnyReusableSink where Action.WorkflowType == WorkflowType {
| `- note: generic class 'ReusableSink' does not conform to the 'Sendable' protocol
336 | func handle(action: Action) {
337 | let output = Output.update(action, source: .external)
:
341 | // Scheduling it to be processed after.
342 | DispatchQueue.workflowExecution.async { [weak self] in
343 | self?.eventPipe.handle(event: output)
| `- warning: capture of 'self' with non-sendable type 'WorkflowNode<WorkflowType>.SubtreeManager.ReusableSink<Action>?' in a '@Sendable' closure
344 | }
345 | return
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/SubtreeManager.swift:343:51: warning: capture of 'output' with non-sendable type 'WorkflowNode<WorkflowType>.SubtreeManager.Output' in a '@Sendable' closure
156 |
157 | extension WorkflowNode.SubtreeManager {
158 | enum Output {
| `- note: consider making enum 'Output' conform to the 'Sendable' protocol
159 | case update(any WorkflowAction<WorkflowType>, source: EventSource)
160 | case childDidUpdate(WorkflowUpdateDebugInfo?)
:
341 | // Scheduling it to be processed after.
342 | DispatchQueue.workflowExecution.async { [weak self] in
343 | self?.eventPipe.handle(event: output)
| `- warning: capture of 'output' with non-sendable type 'WorkflowNode<WorkflowType>.SubtreeManager.Output' in a '@Sendable' closure
344 | }
345 | return
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/SubtreeManager.swift:343:21: warning: capture of 'self' with non-sendable type 'WorkflowNode<WorkflowType>.SubtreeManager.ReusableSink<Action>?' in a '@Sendable' closure
333 | }
334 |
335 | fileprivate final class ReusableSink<Action: WorkflowAction>: AnyReusableSink where Action.WorkflowType == WorkflowType {
| `- note: generic class 'ReusableSink' does not conform to the 'Sendable' protocol
336 | func handle(action: Action) {
337 | let output = Output.update(action, source: .external)
:
341 | // Scheduling it to be processed after.
342 | DispatchQueue.workflowExecution.async { [weak self] in
343 | self?.eventPipe.handle(event: output)
| `- warning: capture of 'self' with non-sendable type 'WorkflowNode<WorkflowType>.SubtreeManager.ReusableSink<Action>?' in a '@Sendable' closure
344 | }
345 | return
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/SubtreeManager.swift:343:51: warning: capture of 'output' with non-sendable type 'WorkflowNode<WorkflowType>.SubtreeManager.Output' in a '@Sendable' closure
156 |
157 | extension WorkflowNode.SubtreeManager {
158 | enum Output {
| `- note: consider making enum 'Output' conform to the 'Sendable' protocol
159 | case update(any WorkflowAction<WorkflowType>, source: EventSource)
160 | case childDidUpdate(WorkflowUpdateDebugInfo?)
:
341 | // Scheduling it to be processed after.
342 | DispatchQueue.workflowExecution.async { [weak self] in
343 | self?.eventPipe.handle(event: output)
| `- warning: capture of 'output' with non-sendable type 'WorkflowNode<WorkflowType>.SubtreeManager.Output' in a '@Sendable' closure
344 | }
345 | return
[805/907] Emitting module Workflow
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/Debugging.swift:163:28: warning: static property 'unexpectedlyMissing' is not concurrency-safe because non-'Sendable' type 'WorkflowUpdateDebugInfo' may have shared mutable state; this is an error in the Swift 6 language mode
15 | */
16 |
17 | public struct WorkflowUpdateDebugInfo: Codable, Equatable {
| `- note: consider making struct 'WorkflowUpdateDebugInfo' conform to the 'Sendable' protocol
18 | public var workflowType: String
19 | public var kind: Kind
:
161 |
162 | extension WorkflowUpdateDebugInfo {
163 | fileprivate static let unexpectedlyMissing = {
| |- warning: static property 'unexpectedlyMissing' is not concurrency-safe because non-'Sendable' type 'WorkflowUpdateDebugInfo' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'unexpectedlyMissing' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
164 | assertionFailure("Creation of actual WorkflowUpdateDebugInfo failed unexpectedly")
165 | return WorkflowUpdateDebugInfo(
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowLogger.swift:27:28: warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
25 | /// `true`, defaults to the `workflow` handle, otherwise defaults to the shared `.disabled`
26 | /// handle.
27 | fileprivate static var active: OSLog = WorkflowLogging.isOSLoggingAllowed ? .workflow : .disabled
| |- warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'active' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
28 | }
29 |
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowLogger.swift:93:23: warning: static property 'config' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
91 |
92 | /// Configuration options used to determine which activities are logged.
93 | public static var config: Config = .rootRendersAndActions
| |- warning: static property 'config' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'config' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'config' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
94 | }
95 |
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowLogger.swift:99:23: warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'WorkflowLogging.Config' may have shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | extension WorkflowLogging {
50 | public struct Config {
| `- note: consider making struct 'Config' conform to the 'Sendable' protocol
51 | /// Configuration options to control logging during a render pass.
52 | public enum RenderLoggingMode {
:
97 | /// Logging config that will output the most information.
98 | /// Will also have the most noticeable effect on performance.
99 | public static let debug: Self = .init(renderLoggingMode: .allNodes, logLifetimes: true, logActions: true)
| |- warning: static property 'debug' is not concurrency-safe because non-'Sendable' type 'WorkflowLogging.Config' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'debug' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
100 |
101 | /// Logging config that will record render timings for root nodes as well as action events.
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowLogger.swift:104:23: warning: static property 'rootRendersAndActions' is not concurrency-safe because non-'Sendable' type 'WorkflowLogging.Config' may have shared mutable state; this is an error in the Swift 6 language mode
48 |
49 | extension WorkflowLogging {
50 | public struct Config {
| `- note: consider making struct 'Config' conform to the 'Sendable' protocol
51 | /// Configuration options to control logging during a render pass.
52 | public enum RenderLoggingMode {
:
102 | /// This provides a reasonable performance tradeoff if you're interested in the runtime's behavior
103 | /// but don't wan to pay the price of logging everything.
104 | public static let rootRendersAndActions: Self = .init(renderLoggingMode: .rootsOnly, logLifetimes: false, logActions: true)
| |- warning: static property 'rootRendersAndActions' is not concurrency-safe because non-'Sendable' type 'WorkflowLogging.Config' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'rootRendersAndActions' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
105 | }
106 |
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowObserver.swift:107:28: warning: static property '_nextRawID' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
105 | public struct WorkflowSession {
106 | public struct Identifier: Hashable {
107 | private static var _nextRawID: UInt64 = 0
| |- warning: static property '_nextRawID' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_nextRawID' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_nextRawID' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
108 | private static func _makeNextSessionID() -> UInt64 {
109 | let nextID = _nextRawID
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowObserver.swift:349:24: warning: static property '_sharedInterceptorStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
347 | @_spi(WorkflowGlobalObservation)
348 | public enum WorkflowObservation {
349 | private static var _sharedInterceptorStorage: ObserversInterceptor = NoOpObserversInterceptor()
| |- warning: static property '_sharedInterceptorStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_sharedInterceptorStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_sharedInterceptorStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
350 |
351 | /// The `DefaultObserversProvider` used by all runtimes.
[810/907] Compiling IdentifiedCollections IdentifiedCollection.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[812/973] Compiling Workflow WorkflowObserver.swift
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowObserver.swift:107:28: warning: static property '_nextRawID' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
105 | public struct WorkflowSession {
106 | public struct Identifier: Hashable {
107 | private static var _nextRawID: UInt64 = 0
| |- warning: static property '_nextRawID' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_nextRawID' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_nextRawID' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
108 | private static func _makeNextSessionID() -> UInt64 {
109 | let nextID = _nextRawID
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowObserver.swift:349:24: warning: static property '_sharedInterceptorStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
347 | @_spi(WorkflowGlobalObservation)
348 | public enum WorkflowObservation {
349 | private static var _sharedInterceptorStorage: ObserversInterceptor = NoOpObserversInterceptor()
| |- warning: static property '_sharedInterceptorStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_sharedInterceptorStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_sharedInterceptorStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
350 |
351 | /// The `DefaultObserversProvider` used by all runtimes.
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowObserver.swift:107:28: warning: static property '_nextRawID' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
105 | public struct WorkflowSession {
106 | public struct Identifier: Hashable {
107 | private static var _nextRawID: UInt64 = 0
| |- warning: static property '_nextRawID' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_nextRawID' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_nextRawID' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
108 | private static func _makeNextSessionID() -> UInt64 {
109 | let nextID = _nextRawID
/Users/admin/builder/spi-builder-workspace/Workflow/Sources/WorkflowObserver.swift:349:24: warning: static property '_sharedInterceptorStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
347 | @_spi(WorkflowGlobalObservation)
348 | public enum WorkflowObservation {
349 | private static var _sharedInterceptorStorage: ObserversInterceptor = NoOpObserversInterceptor()
| |- warning: static property '_sharedInterceptorStorage' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_sharedInterceptorStorage' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_sharedInterceptorStorage' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
350 |
351 | /// The `DefaultObserversProvider` used by all runtimes.
[814/973] Compiling CasePathsCore KeyPath+Sendable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[815/973] Compiling CasePathsCore UncheckedSendable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[816/988] Compiling CasePathsCore Optional+CasePathable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[817/988] Compiling CasePathsCore TypeName.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[818/988] Compiling CasePathsCore CasePathReflectable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[819/988] Compiling CasePathsCore Never+CasePathable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[820/988] Compiling CasePathsCore CasePathIterable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[821/988] Emitting module CasePathsCore
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[822/988] Compiling CasePathsCore AnyCasePath.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[823/988] Compiling CasePathsCore CasePathable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[824/988] Compiling CasePathsCore Result+CasePathable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[825/988] Emitting module WorkflowRxSwift
/Users/admin/builder/spi-builder-workspace/WorkflowRxSwift/Sources/Logger.swift:36:28: warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 | fileprivate static let worker = OSLog(subsystem: "com.squareup.WorkflowRxSwift", category: "Worker")
35 |
36 | fileprivate static var active: OSLog = WorkflowLogging.isOSLoggingAllowed ? .worker : .disabled
| |- warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'active' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | }
38 |
[826/988] Compiling WorkflowRxSwift Worker.swift
[827/988] Compiling WorkflowRxSwift ObservableWorkflow.swift
[828/988] Compiling WorkflowRxSwift Logger.swift
/Users/admin/builder/spi-builder-workspace/WorkflowRxSwift/Sources/Logger.swift:36:28: warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 | fileprivate static let worker = OSLog(subsystem: "com.squareup.WorkflowRxSwift", category: "Worker")
35 |
36 | fileprivate static var active: OSLog = WorkflowLogging.isOSLoggingAllowed ? .worker : .disabled
| |- warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'active' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | }
38 |
[829/998] Compiling CasePathsCore Never+CasePathable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[830/998] Compiling CasePathsCore UncheckedSendable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[831/998] Compiling CasePathsCore TypeName.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[832/998] Compiling CasePathsCore Optional+CasePathable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[833/999] Compiling CasePathsCore AnyCasePath.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[834/999] Compiling CasePathsCore CasePathIterable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[835/999] Compiling CasePathsCore CasePathReflectable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[836/999] Emitting module CasePathsCore
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[837/999] Compiling CasePathsCore CasePathable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[838/999] Compiling CasePathsCore KeyPath+Sendable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[839/999] Compiling WorkflowRxSwift Worker.swift
[840/999] Compiling WorkflowRxSwift ObservableWorkflow.swift
[841/999] Emitting module WorkflowRxSwift
/Users/admin/builder/spi-builder-workspace/WorkflowRxSwift/Sources/Logger.swift:36:28: warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 | fileprivate static let worker = OSLog(subsystem: "com.squareup.WorkflowRxSwift", category: "Worker")
35 |
36 | fileprivate static var active: OSLog = WorkflowLogging.isOSLoggingAllowed ? .worker : .disabled
| |- warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'active' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | }
38 |
[842/999] Compiling WorkflowRxSwift Logger.swift
/Users/admin/builder/spi-builder-workspace/WorkflowRxSwift/Sources/Logger.swift:36:28: warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 | fileprivate static let worker = OSLog(subsystem: "com.squareup.WorkflowRxSwift", category: "Worker")
35 |
36 | fileprivate static var active: OSLog = WorkflowLogging.isOSLoggingAllowed ? .worker : .disabled
| |- warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'active' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | }
38 |
[843/999] Compiling CasePathsCore Result+CasePathable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[844/999] Compiling WorkflowReactiveSwift SignalProducerWorkflow.swift
[845/999] Compiling WorkflowReactiveSwift Logger.swift
/Users/admin/builder/spi-builder-workspace/WorkflowReactiveSwift/Sources/Logger.swift:36:28: warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 | fileprivate static let worker = OSLog(subsystem: "com.squareup.WorkflowReactiveSwift", category: "Worker")
35 |
36 | fileprivate static var active: OSLog = WorkflowLogging.isOSLoggingAllowed ? .worker : .disabled
| |- warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'active' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | }
38 |
[846/999] Compiling WorkflowReactiveSwift SignalWorker.swift
[847/999] Emitting module WorkflowReactiveSwift
/Users/admin/builder/spi-builder-workspace/WorkflowReactiveSwift/Sources/Logger.swift:36:28: warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 | fileprivate static let worker = OSLog(subsystem: "com.squareup.WorkflowReactiveSwift", category: "Worker")
35 |
36 | fileprivate static var active: OSLog = WorkflowLogging.isOSLoggingAllowed ? .worker : .disabled
| |- warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'active' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | }
38 |
/Users/admin/builder/spi-builder-workspace/WorkflowReactiveSwift/Sources/QueueScheduler+Workflow.swift:23:16: warning: static property 'workflowExecution' is not concurrency-safe because non-'Sendable' type 'QueueScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
21 |
22 | extension QueueScheduler {
23 | static let workflowExecution: QueueScheduler = .init(
| `- warning: static property 'workflowExecution' is not concurrency-safe because non-'Sendable' type 'QueueScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
24 | qos: .userInteractive,
25 | name: "com.squareup.workflow",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ReactiveSwift/Sources/Scheduler.swift:322:20: note: class 'QueueScheduler' does not conform to the 'Sendable' protocol
320 |
321 | /// A scheduler backed by a serial GCD queue.
322 | public final class QueueScheduler: DateScheduler {
| `- note: class 'QueueScheduler' does not conform to the 'Sendable' protocol
323 | /// A singleton `QueueScheduler` that always targets the main thread's GCD
324 | /// queue.
/Users/admin/builder/spi-builder-workspace/WorkflowReactiveSwift/Sources/QueueScheduler+Workflow.swift:18:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ReactiveSwift'
16 |
17 | import Foundation
18 | import ReactiveSwift
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ReactiveSwift'
19 |
20 | @_spi(WorkflowInternals) import Workflow
21 |
22 | extension QueueScheduler {
23 | static let workflowExecution: QueueScheduler = .init(
| |- note: add '@MainActor' to make static property 'workflowExecution' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 | qos: .userInteractive,
25 | name: "com.squareup.workflow",
[848/999] Compiling WorkflowReactiveSwift Worker.swift
[849/999] Compiling WorkflowReactiveSwift QueueScheduler+Workflow.swift
/Users/admin/builder/spi-builder-workspace/WorkflowReactiveSwift/Sources/QueueScheduler+Workflow.swift:23:16: warning: static property 'workflowExecution' is not concurrency-safe because non-'Sendable' type 'QueueScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
21 |
22 | extension QueueScheduler {
23 | static let workflowExecution: QueueScheduler = .init(
| `- warning: static property 'workflowExecution' is not concurrency-safe because non-'Sendable' type 'QueueScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
24 | qos: .userInteractive,
25 | name: "com.squareup.workflow",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ReactiveSwift/Sources/Scheduler.swift:322:20: note: class 'QueueScheduler' does not conform to the 'Sendable' protocol
320 |
321 | /// A scheduler backed by a serial GCD queue.
322 | public final class QueueScheduler: DateScheduler {
| `- note: class 'QueueScheduler' does not conform to the 'Sendable' protocol
323 | /// A singleton `QueueScheduler` that always targets the main thread's GCD
324 | /// queue.
/Users/admin/builder/spi-builder-workspace/WorkflowReactiveSwift/Sources/QueueScheduler+Workflow.swift:18:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ReactiveSwift'
16 |
17 | import Foundation
18 | import ReactiveSwift
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ReactiveSwift'
19 |
20 | @_spi(WorkflowInternals) import Workflow
21 |
22 | extension QueueScheduler {
23 | static let workflowExecution: QueueScheduler = .init(
| |- note: add '@MainActor' to make static property 'workflowExecution' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 | qos: .userInteractive,
25 | name: "com.squareup.workflow",
[850/999] Emitting module SwiftSyntax
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[851/1013] Compiling WorkflowConcurrency Worker.swift
/Users/admin/builder/spi-builder-workspace/WorkflowConcurrency/Sources/Worker.swift:66:58: warning: converting non-sendable function value to '@MainActor @Sendable (WorkerWorkflow<WorkerType>.Output) -> Void' (aka '@MainActor @Sendable (WorkerType.Output) -> ()') may introduce data races
64 | let sink = context.makeOutputSink()
65 | context.runSideEffect(key: state) { lifetime in
66 | let send: @MainActor (Output) -> Void = sink.send
| `- warning: converting non-sendable function value to '@MainActor @Sendable (WorkerWorkflow<WorkerType>.Output) -> Void' (aka '@MainActor @Sendable (WorkerType.Output) -> ()') may introduce data races
67 | let task = Task(priority: .high) {
68 | logger.logStarted()
/Users/admin/builder/spi-builder-workspace/WorkflowConcurrency/Sources/Worker.swift:67:46: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
65 | context.runSideEffect(key: state) { lifetime in
66 | let send: @MainActor (Output) -> Void = sink.send
67 | let task = Task(priority: .high) {
| `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
68 | logger.logStarted()
| `- note: closure captures non-Sendable 'logger'
69 | let output = await worker.run()
| `- note: closure captures non-Sendable 'self'
70 | if Task.isCancelled {
71 | logger.logFinished(status: "Cancelled")
/Users/admin/builder/spi-builder-workspace/WorkflowConcurrency/Sources/Worker.swift:77:23: warning: sending 'output' risks causing data races; this is an error in the Swift 6 language mode
75 | logger.logOutput()
76 | logger.logFinished(status: "Finished")
77 | await send(output)
| |- warning: sending 'output' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'output' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
78 | }
79 | lifetime.onEnded {
[852/1013] Emitting module WorkflowConcurrency
[853/1013] Compiling WorkflowConcurrency AsyncOperationWorker.swift
[854/1013] Compiling WorkflowConcurrency Logger.swift
[855/1013] Compiling WorkflowReactiveSwift Logger.swift
/Users/admin/builder/spi-builder-workspace/WorkflowReactiveSwift/Sources/Logger.swift:36:28: warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 | fileprivate static let worker = OSLog(subsystem: "com.squareup.WorkflowReactiveSwift", category: "Worker")
35 |
36 | fileprivate static var active: OSLog = WorkflowLogging.isOSLoggingAllowed ? .worker : .disabled
| |- warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'active' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | }
38 |
[856/1013] Compiling WorkflowReactiveSwift SignalWorker.swift
[857/1013] Emitting module WorkflowReactiveSwift
/Users/admin/builder/spi-builder-workspace/WorkflowReactiveSwift/Sources/Logger.swift:36:28: warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 | fileprivate static let worker = OSLog(subsystem: "com.squareup.WorkflowReactiveSwift", category: "Worker")
35 |
36 | fileprivate static var active: OSLog = WorkflowLogging.isOSLoggingAllowed ? .worker : .disabled
| |- warning: static property 'active' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'active' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'active' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | }
38 |
/Users/admin/builder/spi-builder-workspace/WorkflowReactiveSwift/Sources/QueueScheduler+Workflow.swift:23:16: warning: static property 'workflowExecution' is not concurrency-safe because non-'Sendable' type 'QueueScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
21 |
22 | extension QueueScheduler {
23 | static let workflowExecution: QueueScheduler = .init(
| `- warning: static property 'workflowExecution' is not concurrency-safe because non-'Sendable' type 'QueueScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
24 | qos: .userInteractive,
25 | name: "com.squareup.workflow",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ReactiveSwift/Sources/Scheduler.swift:322:20: note: class 'QueueScheduler' does not conform to the 'Sendable' protocol
320 |
321 | /// A scheduler backed by a serial GCD queue.
322 | public final class QueueScheduler: DateScheduler {
| `- note: class 'QueueScheduler' does not conform to the 'Sendable' protocol
323 | /// A singleton `QueueScheduler` that always targets the main thread's GCD
324 | /// queue.
/Users/admin/builder/spi-builder-workspace/WorkflowReactiveSwift/Sources/QueueScheduler+Workflow.swift:18:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ReactiveSwift'
16 |
17 | import Foundation
18 | import ReactiveSwift
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ReactiveSwift'
19 |
20 | @_spi(WorkflowInternals) import Workflow
21 |
22 | extension QueueScheduler {
23 | static let workflowExecution: QueueScheduler = .init(
| |- note: add '@MainActor' to make static property 'workflowExecution' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 | qos: .userInteractive,
25 | name: "com.squareup.workflow",
[858/1013] Compiling WorkflowReactiveSwift SignalProducerWorkflow.swift
[859/1013] Compiling WorkflowReactiveSwift Worker.swift
[860/1013] Compiling WorkflowReactiveSwift QueueScheduler+Workflow.swift
/Users/admin/builder/spi-builder-workspace/WorkflowReactiveSwift/Sources/QueueScheduler+Workflow.swift:23:16: warning: static property 'workflowExecution' is not concurrency-safe because non-'Sendable' type 'QueueScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
21 |
22 | extension QueueScheduler {
23 | static let workflowExecution: QueueScheduler = .init(
| `- warning: static property 'workflowExecution' is not concurrency-safe because non-'Sendable' type 'QueueScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
24 | qos: .userInteractive,
25 | name: "com.squareup.workflow",
/Users/admin/builder/spi-builder-workspace/.build/checkouts/ReactiveSwift/Sources/Scheduler.swift:322:20: note: class 'QueueScheduler' does not conform to the 'Sendable' protocol
320 |
321 | /// A scheduler backed by a serial GCD queue.
322 | public final class QueueScheduler: DateScheduler {
| `- note: class 'QueueScheduler' does not conform to the 'Sendable' protocol
323 | /// A singleton `QueueScheduler` that always targets the main thread's GCD
324 | /// queue.
/Users/admin/builder/spi-builder-workspace/WorkflowReactiveSwift/Sources/QueueScheduler+Workflow.swift:18:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ReactiveSwift'
16 |
17 | import Foundation
18 | import ReactiveSwift
| `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ReactiveSwift'
19 |
20 | @_spi(WorkflowInternals) import Workflow
21 |
22 | extension QueueScheduler {
23 | static let workflowExecution: QueueScheduler = .init(
| |- note: add '@MainActor' to make static property 'workflowExecution' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
24 | qos: .userInteractive,
25 | name: "com.squareup.workflow",
[861/1013] Compiling WorkflowConcurrency AsyncOperationWorker.swift
[862/1013] Emitting module WorkflowConcurrency
[863/1013] Compiling WorkflowConcurrency Logger.swift
[864/1013] Compiling WorkflowConcurrency Worker.swift
/Users/admin/builder/spi-builder-workspace/WorkflowConcurrency/Sources/Worker.swift:66:58: warning: converting non-sendable function value to '@MainActor @Sendable (WorkerWorkflow<WorkerType>.Output) -> Void' (aka '@MainActor @Sendable (WorkerType.Output) -> ()') may introduce data races
64 | let sink = context.makeOutputSink()
65 | context.runSideEffect(key: state) { lifetime in
66 | let send: @MainActor (Output) -> Void = sink.send
| `- warning: converting non-sendable function value to '@MainActor @Sendable (WorkerWorkflow<WorkerType>.Output) -> Void' (aka '@MainActor @Sendable (WorkerType.Output) -> ()') may introduce data races
67 | let task = Task(priority: .high) {
68 | logger.logStarted()
/Users/admin/builder/spi-builder-workspace/WorkflowConcurrency/Sources/Worker.swift:67:46: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
65 | context.runSideEffect(key: state) { lifetime in
66 | let send: @MainActor (Output) -> Void = sink.send
67 | let task = Task(priority: .high) {
| `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
68 | logger.logStarted()
| `- note: closure captures non-Sendable 'logger'
69 | let output = await worker.run()
| `- note: closure captures non-Sendable 'self'
70 | if Task.isCancelled {
71 | logger.logFinished(status: "Cancelled")
/Users/admin/builder/spi-builder-workspace/WorkflowConcurrency/Sources/Worker.swift:77:23: warning: sending 'output' risks causing data races; this is an error in the Swift 6 language mode
75 | logger.logOutput()
76 | logger.logFinished(status: "Finished")
77 | await send(output)
| |- warning: sending 'output' risks causing data races; this is an error in the Swift 6 language mode
| `- note: sending task-isolated 'output' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
78 | }
79 | lifetime.onEnded {
[865/1023] Compiling CustomDump Diff.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[866/1023] Compiling CustomDump Photos.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[867/1023] Compiling CustomDump Speech.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[868/1023] Compiling CustomDump StoreKit.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[869/1023] Compiling CustomDump AnyType.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[870/1023] Compiling CustomDump CollectionDifference.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[871/1023] Compiling CustomDump Identifiable.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[872/1023] Compiling WorkflowCombine Logger.swift
[873/1023] Compiling WorkflowCombine Publisher+Extensions.swift
[874/1023] Compiling WorkflowCombine PublisherWorkflow.swift
[875/1023] Emitting module WorkflowCombine
[876/1023] Compiling WorkflowCombine Worker.swift
[877/1023] Compiling WorkflowCombine Logger.swift
[878/1023] Compiling WorkflowCombine PublisherWorkflow.swift
[879/1023] Compiling WorkflowCombine Publisher+Extensions.swift
[880/1023] Compiling WorkflowCombine Worker.swift
[881/1023] Emitting module WorkflowCombine
[882/1023] Emitting module ViewEnvironment
/Users/admin/builder/spi-builder-workspace/ViewEnvironment/Sources/EnvironmentValues+ViewEnvironment.swift:28:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ViewEnvironment' may have shared mutable state; this is an error in the Swift 6 language mode
26 |
27 | private struct ViewEnvironmentKey: EnvironmentKey {
28 | static let defaultValue: ViewEnvironment = .empty
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ViewEnvironment' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 | }
30 | }
/Users/admin/builder/spi-builder-workspace/ViewEnvironment/Sources/ViewEnvironment.swift:24:15: note: consider making struct 'ViewEnvironment' conform to the 'Sendable' protocol
22 | /// the environment of its two children according to which position they’re
23 | /// appearing in).
24 | public struct ViewEnvironment {
| `- note: consider making struct 'ViewEnvironment' conform to the 'Sendable' protocol
25 | /// An empty view environment. This should only be used when setting up a
26 | /// root workflow into a root WorkflowHostingController or when writing tests.
/Users/admin/builder/spi-builder-workspace/ViewEnvironment/Sources/ViewEnvironment.swift:29:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'ViewEnvironment' may have shared mutable state; this is an error in the Swift 6 language mode
22 | /// the environment of its two children according to which position they’re
23 | /// appearing in).
24 | public struct ViewEnvironment {
| `- note: consider making struct 'ViewEnvironment' conform to the 'Sendable' protocol
25 | /// An empty view environment. This should only be used when setting up a
26 | /// root workflow into a root WorkflowHostingController or when writing tests.
27 | /// In other scenarios, containers should pass down the ViewEnvironment
28 | /// value they get from above.
29 | public static let empty: ViewEnvironment = .init()
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'ViewEnvironment' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'empty' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 | /// Storage of [K.Type: K.Value] where K: ViewEnvironmentKey
[883/1023] Compiling ViewEnvironment EnvironmentValues+ViewEnvironment.swift
/Users/admin/builder/spi-builder-workspace/ViewEnvironment/Sources/EnvironmentValues+ViewEnvironment.swift:28:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ViewEnvironment' may have shared mutable state; this is an error in the Swift 6 language mode
26 |
27 | private struct ViewEnvironmentKey: EnvironmentKey {
28 | static let defaultValue: ViewEnvironment = .empty
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ViewEnvironment' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 | }
30 | }
/Users/admin/builder/spi-builder-workspace/ViewEnvironment/Sources/ViewEnvironment.swift:24:15: note: consider making struct 'ViewEnvironment' conform to the 'Sendable' protocol
22 | /// the environment of its two children according to which position they’re
23 | /// appearing in).
24 | public struct ViewEnvironment {
| `- note: consider making struct 'ViewEnvironment' conform to the 'Sendable' protocol
25 | /// An empty view environment. This should only be used when setting up a
26 | /// root workflow into a root WorkflowHostingController or when writing tests.
/Users/admin/builder/spi-builder-workspace/ViewEnvironment/Sources/EnvironmentValues+ViewEnvironment.swift:28:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ViewEnvironment' may have shared mutable state; this is an error in the Swift 6 language mode
26 |
27 | private struct ViewEnvironmentKey: EnvironmentKey {
28 | static let defaultValue: ViewEnvironment = .empty
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ViewEnvironment' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 | }
30 | }
/Users/admin/builder/spi-builder-workspace/ViewEnvironment/Sources/ViewEnvironment.swift:24:15: note: consider making struct 'ViewEnvironment' conform to the 'Sendable' protocol
22 | /// the environment of its two children according to which position they’re
23 | /// appearing in).
24 | public struct ViewEnvironment {
| `- note: consider making struct 'ViewEnvironment' conform to the 'Sendable' protocol
25 | /// An empty view environment. This should only be used when setting up a
26 | /// root workflow into a root WorkflowHostingController or when writing tests.
[885/1023] Emitting module ViewEnvironment
/Users/admin/builder/spi-builder-workspace/ViewEnvironment/Sources/EnvironmentValues+ViewEnvironment.swift:28:20: warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ViewEnvironment' may have shared mutable state; this is an error in the Swift 6 language mode
26 |
27 | private struct ViewEnvironmentKey: EnvironmentKey {
28 | static let defaultValue: ViewEnvironment = .empty
| |- warning: static property 'defaultValue' is not concurrency-safe because non-'Sendable' type 'ViewEnvironment' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultValue' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
29 | }
30 | }
/Users/admin/builder/spi-builder-workspace/ViewEnvironment/Sources/ViewEnvironment.swift:24:15: note: consider making struct 'ViewEnvironment' conform to the 'Sendable' protocol
22 | /// the environment of its two children according to which position they’re
23 | /// appearing in).
24 | public struct ViewEnvironment {
| `- note: consider making struct 'ViewEnvironment' conform to the 'Sendable' protocol
25 | /// An empty view environment. This should only be used when setting up a
26 | /// root workflow into a root WorkflowHostingController or when writing tests.
/Users/admin/builder/spi-builder-workspace/ViewEnvironment/Sources/ViewEnvironment.swift:29:23: warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'ViewEnvironment' may have shared mutable state; this is an error in the Swift 6 language mode
22 | /// the environment of its two children according to which position they’re
23 | /// appearing in).
24 | public struct ViewEnvironment {
| `- note: consider making struct 'ViewEnvironment' conform to the 'Sendable' protocol
25 | /// An empty view environment. This should only be used when setting up a
26 | /// root workflow into a root WorkflowHostingController or when writing tests.
27 | /// In other scenarios, containers should pass down the ViewEnvironment
28 | /// value they get from above.
29 | public static let empty: ViewEnvironment = .init()
| |- warning: static property 'empty' is not concurrency-safe because non-'Sendable' type 'ViewEnvironment' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'empty' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 |
31 | /// Storage of [K.Type: K.Value] where K: ViewEnvironmentKey
[886/1035] Compiling ViewEnvironmentUI ViewEnvironmentPropagationNode.swift
[887/1035] Emitting module ViewEnvironmentUI
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:404:16: warning: static property 'needsEnvironmentUpdate' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
402 |
403 | private enum ViewEnvironmentPropagatingNSObjectAssociatedKeys {
404 | static var needsEnvironmentUpdate: UInt8 = 0
| |- warning: static property 'needsEnvironmentUpdate' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'needsEnvironmentUpdate' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'needsEnvironmentUpdate' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
405 | static var needsUpdateObservers: UInt8 = 0
406 | static var ancestorOverride: UInt8 = 0
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:405:16: warning: static property 'needsUpdateObservers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
403 | private enum ViewEnvironmentPropagatingNSObjectAssociatedKeys {
404 | static var needsEnvironmentUpdate: UInt8 = 0
405 | static var needsUpdateObservers: UInt8 = 0
| |- warning: static property 'needsUpdateObservers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'needsUpdateObservers' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'needsUpdateObservers' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
406 | static var ancestorOverride: UInt8 = 0
407 | static var descendantsOverride: UInt8 = 0
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:406:16: warning: static property 'ancestorOverride' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
404 | static var needsEnvironmentUpdate: UInt8 = 0
405 | static var needsUpdateObservers: UInt8 = 0
406 | static var ancestorOverride: UInt8 = 0
| |- warning: static property 'ancestorOverride' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'ancestorOverride' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'ancestorOverride' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
407 | static var descendantsOverride: UInt8 = 0
408 | static var customizations: UInt8 = 0
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:407:16: warning: static property 'descendantsOverride' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
405 | static var needsUpdateObservers: UInt8 = 0
406 | static var ancestorOverride: UInt8 = 0
407 | static var descendantsOverride: UInt8 = 0
| |- warning: static property 'descendantsOverride' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'descendantsOverride' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'descendantsOverride' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
408 | static var customizations: UInt8 = 0
409 | }
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:408:16: warning: static property 'customizations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
406 | static var ancestorOverride: UInt8 = 0
407 | static var descendantsOverride: UInt8 = 0
408 | static var customizations: UInt8 = 0
| |- warning: static property 'customizations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'customizations' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'customizations' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
409 | }
410 |
[888/1035] Compiling ViewEnvironmentUI UIView+ViewEnvironmentPropagating.swift
[889/1035] Compiling ViewEnvironmentUI ViewEnvironmentPropagationNode.swift
[890/1035] Emitting module ViewEnvironmentUI
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:404:16: warning: static property 'needsEnvironmentUpdate' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
402 |
403 | private enum ViewEnvironmentPropagatingNSObjectAssociatedKeys {
404 | static var needsEnvironmentUpdate: UInt8 = 0
| |- warning: static property 'needsEnvironmentUpdate' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'needsEnvironmentUpdate' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'needsEnvironmentUpdate' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
405 | static var needsUpdateObservers: UInt8 = 0
406 | static var ancestorOverride: UInt8 = 0
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:405:16: warning: static property 'needsUpdateObservers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
403 | private enum ViewEnvironmentPropagatingNSObjectAssociatedKeys {
404 | static var needsEnvironmentUpdate: UInt8 = 0
405 | static var needsUpdateObservers: UInt8 = 0
| |- warning: static property 'needsUpdateObservers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'needsUpdateObservers' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'needsUpdateObservers' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
406 | static var ancestorOverride: UInt8 = 0
407 | static var descendantsOverride: UInt8 = 0
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:406:16: warning: static property 'ancestorOverride' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
404 | static var needsEnvironmentUpdate: UInt8 = 0
405 | static var needsUpdateObservers: UInt8 = 0
406 | static var ancestorOverride: UInt8 = 0
| |- warning: static property 'ancestorOverride' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'ancestorOverride' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'ancestorOverride' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
407 | static var descendantsOverride: UInt8 = 0
408 | static var customizations: UInt8 = 0
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:407:16: warning: static property 'descendantsOverride' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
405 | static var needsUpdateObservers: UInt8 = 0
406 | static var ancestorOverride: UInt8 = 0
407 | static var descendantsOverride: UInt8 = 0
| |- warning: static property 'descendantsOverride' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'descendantsOverride' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'descendantsOverride' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
408 | static var customizations: UInt8 = 0
409 | }
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:408:16: warning: static property 'customizations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
406 | static var ancestorOverride: UInt8 = 0
407 | static var descendantsOverride: UInt8 = 0
408 | static var customizations: UInt8 = 0
| |- warning: static property 'customizations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'customizations' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'customizations' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
409 | }
410 |
[891/1035] Compiling ViewEnvironmentUI ViewEnvironmentObserving.swift
[892/1035] Compiling ViewEnvironmentUI ViewEnvironmentPropagating.swift
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:404:16: warning: static property 'needsEnvironmentUpdate' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
402 |
403 | private enum ViewEnvironmentPropagatingNSObjectAssociatedKeys {
404 | static var needsEnvironmentUpdate: UInt8 = 0
| |- warning: static property 'needsEnvironmentUpdate' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'needsEnvironmentUpdate' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'needsEnvironmentUpdate' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
405 | static var needsUpdateObservers: UInt8 = 0
406 | static var ancestorOverride: UInt8 = 0
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:405:16: warning: static property 'needsUpdateObservers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
403 | private enum ViewEnvironmentPropagatingNSObjectAssociatedKeys {
404 | static var needsEnvironmentUpdate: UInt8 = 0
405 | static var needsUpdateObservers: UInt8 = 0
| |- warning: static property 'needsUpdateObservers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'needsUpdateObservers' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'needsUpdateObservers' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
406 | static var ancestorOverride: UInt8 = 0
407 | static var descendantsOverride: UInt8 = 0
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:406:16: warning: static property 'ancestorOverride' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
404 | static var needsEnvironmentUpdate: UInt8 = 0
405 | static var needsUpdateObservers: UInt8 = 0
406 | static var ancestorOverride: UInt8 = 0
| |- warning: static property 'ancestorOverride' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'ancestorOverride' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'ancestorOverride' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
407 | static var descendantsOverride: UInt8 = 0
408 | static var customizations: UInt8 = 0
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:407:16: warning: static property 'descendantsOverride' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
405 | static var needsUpdateObservers: UInt8 = 0
406 | static var ancestorOverride: UInt8 = 0
407 | static var descendantsOverride: UInt8 = 0
| |- warning: static property 'descendantsOverride' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'descendantsOverride' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'descendantsOverride' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
408 | static var customizations: UInt8 = 0
409 | }
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:408:16: warning: static property 'customizations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
406 | static var ancestorOverride: UInt8 = 0
407 | static var descendantsOverride: UInt8 = 0
408 | static var customizations: UInt8 = 0
| |- warning: static property 'customizations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'customizations' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'customizations' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
409 | }
410 |
[893/1035] Compiling ViewEnvironmentUI UIView+ViewEnvironmentPropagating.swift
[894/1035] Compiling ViewEnvironmentUI UIViewController+ViewEnvironmentPropagating.swift
[895/1035] Compiling PerceptionCore _PerceptionRegistrar.swift
[896/1036] Compiling ViewEnvironmentUI ViewEnvironmentObserving.swift
[897/1036] Compiling ViewEnvironmentUI UIViewController+ViewEnvironmentPropagating.swift
[898/1036] Compiling ViewEnvironmentUI ViewEnvironmentPropagating.swift
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:404:16: warning: static property 'needsEnvironmentUpdate' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
402 |
403 | private enum ViewEnvironmentPropagatingNSObjectAssociatedKeys {
404 | static var needsEnvironmentUpdate: UInt8 = 0
| |- warning: static property 'needsEnvironmentUpdate' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'needsEnvironmentUpdate' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'needsEnvironmentUpdate' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
405 | static var needsUpdateObservers: UInt8 = 0
406 | static var ancestorOverride: UInt8 = 0
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:405:16: warning: static property 'needsUpdateObservers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
403 | private enum ViewEnvironmentPropagatingNSObjectAssociatedKeys {
404 | static var needsEnvironmentUpdate: UInt8 = 0
405 | static var needsUpdateObservers: UInt8 = 0
| |- warning: static property 'needsUpdateObservers' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'needsUpdateObservers' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'needsUpdateObservers' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
406 | static var ancestorOverride: UInt8 = 0
407 | static var descendantsOverride: UInt8 = 0
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:406:16: warning: static property 'ancestorOverride' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
404 | static var needsEnvironmentUpdate: UInt8 = 0
405 | static var needsUpdateObservers: UInt8 = 0
406 | static var ancestorOverride: UInt8 = 0
| |- warning: static property 'ancestorOverride' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'ancestorOverride' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'ancestorOverride' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
407 | static var descendantsOverride: UInt8 = 0
408 | static var customizations: UInt8 = 0
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:407:16: warning: static property 'descendantsOverride' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
405 | static var needsUpdateObservers: UInt8 = 0
406 | static var ancestorOverride: UInt8 = 0
407 | static var descendantsOverride: UInt8 = 0
| |- warning: static property 'descendantsOverride' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'descendantsOverride' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'descendantsOverride' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
408 | static var customizations: UInt8 = 0
409 | }
/Users/admin/builder/spi-builder-workspace/ViewEnvironmentUI/Sources/ViewEnvironmentPropagating.swift:408:16: warning: static property 'customizations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
406 | static var ancestorOverride: UInt8 = 0
407 | static var descendantsOverride: UInt8 = 0
408 | static var customizations: UInt8 = 0
| |- warning: static property 'customizations' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'customizations' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'customizations' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
409 | }
410 |
[899/1049] Emitting module PerceptionCore
[900/1062] Compiling PerceptionCore PerceptionRegistrar.swift
[901/1063] Compiling PerceptionCore PerceptionChecking.swift
[902/1063] Compiling PerceptionCore Perceptible.swift
[903/1063] Compiling PerceptionCore Unchecked.swift
[904/1063] Compiling WorkflowUI WorkflowUIEvents.swift
[905/1063] Compiling WorkflowUI WorkflowUIObserver.swift
[906/1063] Compiling PerceptionCore _PerceptionRegistrar.swift
[907/1063] Compiling WorkflowUI WorkflowHostingController.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-perception/Sources/PerceptionCore/Bindable.swift:35:58: error: cannot convert value of type 'KeyPath<Observer<Value>, Subject>' to expected argument type 'ReferenceWritableKeyPath<Observer<Value>, Subject>'
33 | ) -> Binding<Subject> where Value: AnyObject {
34 | withPerceptionTracking {
35 | self.$observer[dynamicMember: (\Observer.object).appending(path: keyPath)]
| `- error: cannot convert value of type 'KeyPath<Observer<Value>, Subject>' to expected argument type 'ReferenceWritableKeyPath<Observer<Value>, Subject>'
36 | } onChange: { [send = UncheckedSendable(self.observer.objectWillChange.send)] in
37 | send.value()
[908/1063] Compiling WorkflowUI ModuleExports.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-perception/Sources/PerceptionCore/Bindable.swift:35:58: error: cannot convert value of type 'KeyPath<Observer<Value>, Subject>' to expected argument type 'ReferenceWritableKeyPath<Observer<Value>, Subject>'
33 | ) -> Binding<Subject> where Value: AnyObject {
34 | withPerceptionTracking {
35 | self.$observer[dynamicMember: (\Observer.object).appending(path: keyPath)]
| `- error: cannot convert value of type 'KeyPath<Observer<Value>, Subject>' to expected argument type 'ReferenceWritableKeyPath<Observer<Value>, Subject>'
36 | } onChange: { [send = UncheckedSendable(self.observer.objectWillChange.send)] in
37 | send.value()
[909/1063] Compiling WorkflowUI WorkflowUIViewController.swift
[910/1063] Compiling WorkflowUI AdaptedEnvironmentScreen.swift
[911/1063] Emitting module PerceptionCore
[912/1063] Compiling PerceptionCore PerceptionTracking.swift
[913/1063] Compiling PerceptionCore Unchecked.swift
[916/1063] Compiling PerceptionCore PerceptionRegistrar.swift
[917/1063] Compiling PerceptionCore PerceptionChecking.swift
[918/1063] Compiling PerceptionCore Perceptible.swift
[921/1063] Compiling PerceptionCore PerceptionTracking.swift
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-perception/Sources/PerceptionCore/Bindable.swift:35:58: error: cannot convert value of type 'KeyPath<Observer<Value>, Subject>' to expected argument type 'ReferenceWritableKeyPath<Observer<Value>, Subject>'
33 | ) -> Binding<Subject> where Value: AnyObject {
34 | withPerceptionTracking {
35 | self.$observer[dynamicMember: (\Observer.object).appending(path: keyPath)]
| `- error: cannot convert value of type 'KeyPath<Observer<Value>, Subject>' to expected argument type 'ReferenceWritableKeyPath<Observer<Value>, Subject>'
36 | } onChange: { [send = UncheckedSendable(self.observer.objectWillChange.send)] in
37 | send.value()
/Users/admin/builder/spi-builder-workspace/.build/checkouts/swift-perception/Sources/PerceptionCore/Bindable.swift:35:58: error: cannot convert value of type 'KeyPath<Observer<Value>, Subject>' to expected argument type 'ReferenceWritableKeyPath<Observer<Value>, Subject>'
33 | ) -> Binding<Subject> where Value: AnyObject {
34 | withPerceptionTracking {
35 | self.$observer[dynamicMember: (\Observer.object).appending(path: keyPath)]
| `- error: cannot convert value of type 'KeyPath<Observer<Value>, Subject>' to expected argument type 'ReferenceWritableKeyPath<Observer<Value>, Subject>'
36 | } onChange: { [send = UncheckedSendable(self.observer.objectWillChange.send)] in
37 | send.value()
[924/1063] Compiling WorkflowUI DescribedViewController.swift
[925/1064] Compiling WorkflowUI UIViewController+Extensions.swift
[926/1064] Compiling WorkflowUI ScreenViewController.swift
[931/1064] Compiling WorkflowUI Screen.swift
[932/1064] Compiling WorkflowUI AnyScreen.swift
[933/1064] Emitting module WorkflowUI
[936/1064] Compiling WorkflowUI ScreenContaining.swift
[937/1064] Compiling PerceptionCore WithPerceptionTracking.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
[944/1064] Compiling CustomDump Foundation.swift
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'InferSendableFromCaptures' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'GlobalActorIsolatedTypesUsability' is already enabled as of Swift version 6
<unknown>:0: warning: upcoming feature 'DisableOutwardActorInference' is already enabled as of Swift version 6
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64
[0/1] Planning build
Building for debugging...
[0/7] Write swift-version-2F0A5646E1D333AE.txt
[2/134] Emitting module SwiftSyntax600
[3/134] Compiling SwiftSyntax600 Empty.swift
[4/134] Compiling SwiftSyntax509 Empty.swift
[5/134] Emitting module SwiftSyntax509
[6/134] Emitting module SwiftSyntax510
[7/134] Compiling SwiftSyntax510 Empty.swift
[8/485] Compiling ViewEnvironment ViewEnvironmentKey.swift
[9/485] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+SE-0370.swift
[10/485] Compiling InternalCollectionsUtilities UnsafeMutablePointer+SE-0370.swift
[11/487] Compiling InternalCollectionsUtilities _SortedCollection.swift
[12/487] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[13/487] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[14/488] Compiling ViewEnvironment EnvironmentValues+ViewEnvironment.swift
[15/488] Emitting module ViewEnvironment
[16/488] Compiling ViewEnvironment ViewEnvironment.swift
[17/488] Compiling ViewEnvironment ViewEnvironmentKey.swift
[18/488] Compiling InternalCollectionsUtilities UnsafeRawPointer extensions.swift
[19/488] Compiling InternalCollectionsUtilities FixedWidthInteger+roundUpToPowerOfTwo.swift
[20/488] Emitting module ViewEnvironment
[21/488] Compiling InternalCollectionsUtilities UInt+reversed.swift
[22/488] Compiling InternalCollectionsUtilities _UnsafeBitSet+Index.swift
[23/488] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[24/488] Compiling InternalCollectionsUtilities Specialize.swift
[25/488] Compiling ViewEnvironment EnvironmentValues+ViewEnvironment.swift
[26/488] Compiling ViewEnvironment ViewEnvironment.swift
[27/488] Compiling IssueReporting TestContext.swift
[28/488] Compiling IssueReporting Unimplemented.swift
[29/488] Compiling InternalCollectionsUtilities _UnsafeBitSet+_Word.swift
[30/488] Compiling InternalCollectionsUtilities _UnsafeBitSet.swift
[33/488] Compiling IssueReporting WithExpectedIssue.swift
[34/488] Compiling IssueReporting WithIssueContext.swift
[35/488] Compiling RxSwift Producer.swift
[41/498] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[63/507] Compiling RxSwift RecursiveScheduler.swift
[64/507] Compiling RxSwift Reduce.swift
[65/507] Compiling RxSwift RefCountDisposable.swift
[66/507] Compiling RxSwift Repeat.swift
[67/507] Compiling RxSwift ReplaySubject.swift
[68/507] Compiling RxSwift PublishSubject.swift
[69/507] Compiling RxSwift Queue.swift
[70/507] Compiling RxSwift Range.swift
[71/507] Compiling RxSwift Reactive.swift
[72/507] Compiling RxSwift RecursiveLock.swift
[73/507] Compiling InternalCollectionsUtilities Integer rank.swift
[74/507] Compiling InternalCollectionsUtilities UInt+first and last set bit.swift
[75/507] Compiling InternalCollectionsUtilities Debugging.swift
[76/507] Compiling InternalCollectionsUtilities Descriptions.swift
[81/507] Compiling RxSwift AnyObserver.swift
[82/507] Compiling RxSwift AsMaybe.swift
[83/507] Compiling RxSwift AsSingle.swift
[84/507] Compiling RxSwift AsyncLock.swift
[85/507] Compiling RxSwift AsyncSubject.swift
[86/507] Compiling RxSwift AtomicInt.swift
[87/507] Compiling RxSwift Bag+Rx.swift
[88/507] Compiling RxSwift Bag.swift
[89/507] Compiling RxSwift BehaviorSubject.swift
[90/507] Compiling RxSwift BinaryDisposable.swift
[91/507] Emitting module IssueReporting
[92/572] Emitting module InternalCollectionsUtilities
[93/572] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[94/572] Compiling SwiftSyntax TokenSequence.swift
[95/572] Compiling SwiftSyntax TokenSyntax.swift
[96/572] Compiling SwiftSyntax SyntaxTreeViewMode.swift
[97/572] Compiling SwiftSyntax TokenDiagnostic.swift
[98/572] Compiling SwiftSyntax Trivia.swift
[99/572] Compiling SwiftSyntax SyntaxCollections.swift
[100/572] Compiling SwiftSyntax SyntaxRewriter.swift
[101/572] Compiling SwiftSyntax SyntaxTraits.swift
[102/572] Compiling SwiftSyntax AbsoluteSyntaxInfo.swift
[103/572] Compiling SwiftSyntax Assert.swift
[104/572] Compiling SwiftSyntax BumpPtrAllocator.swift
[105/572] Compiling SwiftSyntax CommonAncestor.swift
[106/572] Compiling SwiftSyntax Convenience.swift
[107/572] Compiling SwiftSyntax CustomTraits.swift
[108/578] Emitting module IssueReporting
[109/578] Compiling ViewEnvironmentUI UIViewController+ViewEnvironmentPropagating.swift
[110/578] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[113/578] Compiling SwiftSyntax AbsolutePosition.swift
[114/578] Compiling SwiftSyntax AbsoluteRawSyntax.swift
[117/578] Emitting module InternalCollectionsUtilities
[118/578] Compiling SwiftSyntax SyntaxProtocol.swift
[119/578] Compiling SwiftSyntax SyntaxText.swift
[130/578] Compiling RxSwift Enumerated.swift
[131/578] Compiling RxSwift Error.swift
[132/578] Compiling RxSwift Errors.swift
[133/578] Compiling RxSwift Event.swift
[134/578] Compiling RxSwift Filter.swift
[135/578] Compiling RxSwift First.swift
[136/578] Compiling RxSwift Generate.swift
[137/578] Compiling RxSwift GroupBy.swift
[138/578] Compiling RxSwift GroupedObservable.swift
[139/578] Compiling RxSwift HistoricalScheduler.swift
[140/578] Compiling RxSwift HistoricalSchedulerTimeConverter.swift
[141/578] Compiling RxSwift ImmediateSchedulerType.swift
[142/578] Compiling RxSwift Infallible+CombineLatest+Collection.swift
[143/578] Compiling RxSwift Infallible+CombineLatest+arity.swift
[144/578] Compiling RxSwift Infallible+Concurrency.swift
[145/578] Compiling RxSwift Infallible+Create.swift
[148/597] Emitting module ReactiveSwift
[150/610] Compiling PerceptionCore BetaChecking.swift
[151/610] Compiling PerceptionCore Exports.swift
[152/610] Compiling PerceptionCore Locking.swift
[153/610] Compiling PerceptionCore ThreadLocal.swift
[154/610] Compiling PerceptionCore Bindable.swift
[155/610] Compiling PerceptionCore Environment.swift
[156/610] Compiling ViewEnvironmentUI ViewEnvironmentObserving.swift
[157/610] Compiling ViewEnvironmentUI UIView+ViewEnvironmentPropagating.swift
[158/610] Compiling ViewEnvironmentUI ViewEnvironmentPropagating.swift
[159/610] Compiling ViewEnvironmentUI ViewEnvironmentPropagationNode.swift
[160/610] Emitting module ViewEnvironmentUI
[161/666] Compiling OrderedCollections _HashTable.swift
[162/666] Compiling OrderedCollections OrderedDictionary+Partial MutableCollection.swift
[163/666] Compiling OrderedCollections OrderedDictionary+Partial RangeReplaceableCollection.swift
[164/666] Compiling OrderedCollections OrderedDictionary+Sendable.swift
[165/666] Compiling OrderedCollections OrderedDictionary+Sequence.swift
[166/666] Compiling OrderedCollections OrderedSet+RandomAccessCollection.swift
[167/666] Compiling OrderedCollections OrderedSet+ReserveCapacity.swift
[168/666] Compiling OrderedCollections OrderedSet+Sendable.swift
[169/666] Compiling OrderedCollections _Hashtable+Header.swift
[170/666] Compiling OrderedCollections OrderedDictionary+Codable.swift
[171/666] Compiling OrderedCollections _HashTable+Bucket.swift
[172/666] Compiling OrderedCollections _HashTable+BucketIterator.swift
[173/666] Compiling OrderedCollections _HashTable+Constants.swift
[174/666] Compiling OrderedCollections _HashTable+CustomStringConvertible.swift
[175/666] Compiling OrderedCollections _HashTable+Testing.swift
[176/666] Compiling OrderedCollections _HashTable+UnsafeHandle.swift
[193/666] Compiling OrderedCollections OrderedDictionary+Values.swift
[194/666] Compiling OrderedCollections OrderedDictionary.swift
[195/666] Compiling OrderedCollections OrderedSet+Partial SetAlgebra symmetricDifference.swift
[196/666] Compiling OrderedCollections OrderedSet+Partial SetAlgebra union.swift
[197/666] Compiling OrderedCollections OrderedSet+Partial SetAlgebra+Basics.swift
[215/685] Compiling OrderedCollections OrderedDictionary+Elements.swift
[216/685] Compiling OrderedCollections OrderedDictionary+Equatable.swift
[217/685] Compiling OrderedCollections OrderedDictionary+ExpressibleByDictionaryLiteral.swift
[218/685] Compiling OrderedCollections OrderedDictionary+Hashable.swift
[219/685] Compiling OrderedCollections OrderedDictionary+Initializers.swift
[220/685] Compiling OrderedCollections OrderedDictionary+Invariants.swift
[221/685] Compiling SwiftSyntax RawSyntaxNodesEF.swift
[222/685] Compiling SwiftSyntax RawSyntaxNodesGHI.swift
[223/685] Compiling SwiftSyntax SyntaxArenaAllocatedBuffer.swift
[224/685] Compiling SwiftSyntax SyntaxChildren.swift
[225/685] Compiling SwiftSyntax SyntaxCollection.swift
[226/685] Compiling SwiftSyntax SyntaxHashable.swift
[227/685] Compiling SwiftSyntax SyntaxIdentifier.swift
[228/685] Compiling SwiftSyntax SyntaxNodeFactory.swift
[229/685] Compiling SwiftSyntax SyntaxNodeStructure.swift
[230/685] Compiling RxSwift ElementAt.swift
[231/685] Compiling ViewEnvironmentUI UIView+ViewEnvironmentPropagating.swift
[232/685] Compiling ViewEnvironmentUI ViewEnvironmentObserving.swift
[233/685] Emitting module ViewEnvironmentUI
[234/685] Compiling ViewEnvironmentUI ViewEnvironmentPropagationNode.swift
[235/685] Compiling ViewEnvironmentUI ViewEnvironmentPropagating.swift
[236/685] Compiling ViewEnvironmentUI UIViewController+ViewEnvironmentPropagating.swift
[237/685] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formIntersection.swift
[238/685] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formSymmetricDifference.swift
[239/685] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formUnion.swift
[240/685] Compiling OrderedCollections OrderedSet+Partial SetAlgebra intersection.swift
[241/685] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isDisjoint.swift
[242/685] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isEqualSet.swift
[243/691] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSubset.swift
[244/691] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSuperset.swift
[245/691] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSubset.swift
[246/691] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSuperset.swift
[247/691] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtract.swift
[248/691] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtracting.swift
[255/691] Compiling OrderedCollections OrderedSet+Codable.swift
[256/691] Compiling OrderedCollections OrderedSet+CustomReflectable.swift
[257/691] Compiling OrderedCollections OrderedSet+Descriptions.swift
[258/691] Compiling OrderedCollections OrderedSet+Initializers.swift
[259/691] Compiling OrderedCollections OrderedSet+Insertions.swift
[260/691] Compiling OrderedCollections OrderedSet+Invariants.swift
[261/691] Compiling OrderedCollections OrderedSet+Partial MutableCollection.swift
[262/691] Compiling OrderedCollections OrderedSet+Partial RangeReplaceableCollection.swift
[268/691] Compiling OrderedCollections OrderedDictionary+CustomReflectable.swift
[269/691] Compiling OrderedCollections OrderedDictionary+Deprecations.swift
[270/691] Compiling OrderedCollections OrderedDictionary+Descriptions.swift
[271/691] Compiling OrderedCollections OrderedDictionary+Elements.SubSequence.swift
[272/691] Compiling OrderedCollections OrderedSet+Hashable.swift
[279/691] Compiling PerceptionCore PerceptionTracking.swift
[280/692] Emitting module RxSwift
[281/692] Compiling XCTestDynamicOverlay Exports.swift
[282/692] Compiling OrderedCollections OrderedSet+UnorderedView.swift
[283/692] Compiling OrderedCollections OrderedSet+UnstableInternals.swift
[284/692] Compiling OrderedCollections OrderedSet.swift
[285/692] Compiling OrderedCollections _UnsafeBitset.swift
[298/699] Compiling OrderedCollections OrderedSet+Diffing.swift
[299/699] Compiling OrderedCollections OrderedSet+Equatable.swift
[300/699] Compiling OrderedCollections OrderedSet+ExpressibleByArrayLiteral.swift
[301/712] Compiling PerceptionCore Unchecked.swift
[334/712] Compiling XCTestDynamicOverlay Exports.swift
[335/712] Emitting module XCTestDynamicOverlay
[336/712] Compiling XCTestDynamicOverlay Deprecations.swift
[371/712] Compiling PerceptionCore _PerceptionRegistrar.swift
[372/712] Compiling PerceptionCore Perceptible.swift
[373/712] Compiling PerceptionCore PerceptionChecking.swift
[374/712] Compiling PerceptionCore Locking.swift
[375/712] Compiling PerceptionCore ThreadLocal.swift
[376/712] Compiling PerceptionCore BetaChecking.swift
[377/712] Compiling PerceptionCore Exports.swift
[378/712] Compiling PerceptionCore Bindable.swift
[379/712] Compiling PerceptionCore Environment.swift
[380/712] Compiling PerceptionCore PerceptionRegistrar.swift
[381/712] Emitting module PerceptionCore
[389/768] Emitting module XCTestDynamicOverlay
[390/768] Compiling XCTestDynamicOverlay Deprecations.swift
[391/768] Compiling RxSwift Date+Dispatch.swift
[392/768] Compiling RxSwift Debounce.swift
[393/768] Compiling RxSwift Infallible+Debug.swift
[394/768] Compiling RxSwift Infallible+Operators.swift
[395/768] Compiling RxSwift Infallible+Zip+arity.swift
[396/768] Compiling RxSwift Infallible.swift
[397/768] Compiling RxSwift InfiniteSequence.swift
[398/768] Compiling RxSwift InvocableScheduledItem.swift
[399/768] Compiling RxSwift InvocableType.swift
[400/768] Compiling RxSwift Just.swift
[401/768] Compiling RxSwift Lock.swift
[402/768] Compiling RxSwift LockOwnerType.swift
[403/768] Compiling RxSwift MainScheduler.swift
[404/768] Compiling RxSwift Map.swift
[405/768] Compiling RxSwift Materialize.swift
[406/768] Compiling RxSwift Maybe.swift
[407/768] Compiling RxSwift Merge.swift
[408/768] Compiling RxSwift Multicast.swift
[409/768] Compiling RxSwift Never.swift
[410/768] Compiling RxSwift NopDisposable.swift
[411/768] Compiling RxSwift Observable+Concurrency.swift
[412/768] Compiling RxSwift Observable.swift
[413/768] Compiling RxSwift ObservableConvertibleType+Infallible.swift
[414/768] Compiling RxSwift ObservableConvertibleType.swift
[415/768] Compiling RxSwift ObservableType+Extensions.swift
[416/768] Compiling RxSwift ObservableType+PrimitiveSequence.swift
[417/768] Compiling RxSwift ObservableType.swift
[418/768] Compiling RxSwift ObserveOn.swift
[419/768] Compiling RxSwift ObserverBase.swift
[420/768] Compiling RxSwift ObserverType.swift
[421/768] Compiling RxSwift OperationQueueScheduler.swift
[422/768] Compiling RxSwift Optional.swift
[423/768] Compiling RxSwift Platform.Darwin.swift
[424/768] Compiling SwiftSyntax SyntaxNodesEF.swift
[425/768] Compiling SwiftSyntax SyntaxNodesGHI.swift
[426/768] Compiling SwiftSyntax SyntaxNodesJKLMN.swift
[427/768] Compiling SwiftSyntax SyntaxNodesOP.swift
[428/768] Compiling SwiftSyntax SyntaxNodesQRS.swift
[429/768] Compiling SwiftSyntax SyntaxNodesTUVWXYZ.swift
[430/768] Compiling RxSwift CompactMap.swift
[431/768] Compiling RxSwift Completable+AndThen.swift
[432/768] Compiling RxSwift Completable.swift
[433/768] Compiling RxSwift CompositeDisposable.swift
[434/768] Compiling RxSwift Concat.swift
[435/768] Compiling RxSwift ConcurrentDispatchQueueScheduler.swift
[436/768] Compiling RxSwift ConcurrentMainScheduler.swift
[437/768] Compiling RxSwift ConnectableObservableType.swift
[438/768] Compiling RxSwift Create.swift
[439/768] Compiling RxSwift CurrentThreadScheduler.swift
[440/768] Compiling RxSwift Platform.Linux.swift
[441/768] Compiling RxSwift Sink.swift
[442/768] Compiling RxSwift Skip.swift
[443/768] Compiling RxSwift SkipUntil.swift
[444/768] Compiling RxSwift SkipWhile.swift
[445/768] Compiling RxSwift StartWith.swift
[446/768] Compiling RxSwift SubjectType.swift
[447/768] Compiling RxSwift SubscribeOn.swift
[448/768] Compiling RxSwift SubscriptionDisposable.swift
[449/768] Compiling RxSwift SwiftSupport.swift
[450/768] Compiling RxSwift Switch.swift
[451/768] Compiling RxSwift SwitchIfEmpty.swift
[452/768] Compiling RxSwift SynchronizedDisposeType.swift
[453/768] Compiling RxSwift SynchronizedOnType.swift
[454/768] Compiling RxSwift SynchronizedUnsubscribeType.swift
[455/768] Compiling RxSwift TailRecursiveSink.swift
[456/768] Compiling RxSwift Take.swift
[473/768] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSuperset.swift
[474/768] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSubset.swift
[475/768] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSuperset.swift
[476/768] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtract.swift
[477/768] Compiling OrderedCollections OrderedSet+Partial SetAlgebra subtracting.swift
[478/768] Compiling OrderedCollections OrderedSet+Hashable.swift
[479/768] Compiling OrderedCollections OrderedSet+Initializers.swift
[480/768] Compiling OrderedCollections OrderedSet+Insertions.swift
[481/768] Compiling OrderedCollections OrderedSet+Invariants.swift
[482/768] Compiling OrderedCollections OrderedSet+Partial MutableCollection.swift
[483/768] Compiling OrderedCollections OrderedSet+Partial RangeReplaceableCollection.swift
[484/768] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formIntersection.swift
[485/768] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formSymmetricDifference.swift
[486/768] Compiling OrderedCollections OrderedSet+Partial SetAlgebra formUnion.swift
[487/768] Compiling OrderedCollections OrderedSet+Partial SetAlgebra intersection.swift
[488/768] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isDisjoint.swift
[489/768] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isEqualSet.swift
[490/768] Compiling OrderedCollections _Hashtable+Header.swift
[491/768] Compiling OrderedCollections OrderedDictionary+Codable.swift
[492/768] Compiling OrderedCollections OrderedDictionary+CustomReflectable.swift
[493/768] Compiling OrderedCollections OrderedDictionary+Deprecations.swift
[494/768] Compiling OrderedCollections OrderedDictionary+Descriptions.swift
[495/768] Compiling OrderedCollections OrderedDictionary+Elements.SubSequence.swift
[496/768] Compiling OrderedCollections OrderedSet+SubSequence.swift
[497/768] Compiling OrderedCollections OrderedSet+Testing.swift
[505/768] Compiling SwiftSyntax SyntaxNodesD.swift
[507/768] Emitting module RxSwift
[573/768] Compiling PerceptionCore WithPerceptionTracking.swift
[574/768] Compiling OrderedCollections OrderedSet+Partial SetAlgebra union.swift
[575/768] Compiling OrderedCollections OrderedSet+Partial SetAlgebra+Basics.swift
[576/768] Compiling OrderedCollections OrderedSet+RandomAccessCollection.swift
[577/768] Compiling OrderedCollections OrderedSet+ReserveCapacity.swift
[578/768] Compiling OrderedCollections OrderedSet+Sendable.swift
[579/768] Compiling OrderedCollections OrderedSet+Codable.swift
[580/768] Compiling OrderedCollections OrderedDictionary+Elements.swift
[581/768] Compiling OrderedCollections OrderedDictionary+Equatable.swift
[582/768] Compiling OrderedCollections OrderedDictionary+ExpressibleByDictionaryLiteral.swift
[583/768] Compiling OrderedCollections OrderedDictionary+Hashable.swift
[584/768] Compiling OrderedCollections OrderedDictionary+Initializers.swift
[585/768] Compiling OrderedCollections OrderedDictionary+Invariants.swift
[586/768] Compiling OrderedCollections OrderedSet+Partial SetAlgebra symmetricDifference.swift
[593/824] Compiling PerceptionCore Perceptible.swift
[594/825] Compiling CustomDump String.swift
[595/825] Compiling CustomDump Unordered.swift
[596/825] Compiling OrderedCollections OrderedDictionary+Sendable.swift
[597/825] Compiling OrderedCollections OrderedDictionary+Sequence.swift
[598/825] Compiling OrderedCollections OrderedDictionary+Values.swift
[599/825] Compiling OrderedCollections OrderedDictionary.swift
[612/831] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isStrictSubset.swift
[624/831] Compiling CustomDump CustomDumpStringConvertible.swift
[625/831] Compiling CustomDump Diff.swift
[626/831] Compiling PerceptionCore PerceptionTracking.swift
[627/831] Compiling PerceptionCore _PerceptionRegistrar.swift
[628/831] Compiling PerceptionCore Unchecked.swift
[629/831] Compiling CustomDump CoreMotion.swift
[630/831] Compiling CustomDump CustomDumpRepresentable.swift
[631/831] Compiling PerceptionCore PerceptionChecking.swift
[632/831] Compiling PerceptionCore PerceptionRegistrar.swift
[633/831] Emitting module PerceptionCore
[634/831] Compiling CustomDump CoreImage.swift
[635/831] Compiling CustomDump CoreLocation.swift
[636/831] Emitting module OrderedCollections
[637/831] Compiling CustomDump AnyType.swift
[638/831] Compiling CustomDump CollectionDifference.swift
[639/831] Compiling CustomDump Identifiable.swift
[640/831] Compiling CustomDump Swift.swift
[641/831] Compiling CustomDump SwiftUI.swift
[642/831] Compiling CustomDump UIKit.swift
[643/831] Compiling CustomDump Photos.swift
[644/831] Compiling CustomDump Speech.swift
[645/831] Compiling CustomDump StoreKit.swift
[646/831] Compiling CustomDump UserNotifications.swift
[647/831] Compiling CustomDump UserNotificationsUI.swift
[648/831] Compiling CustomDump CustomDumpReflectable.swift
[649/831] Compiling CustomDump Foundation.swift
[650/831] Compiling CustomDump GameKit.swift
[651/831] Compiling CustomDump KeyPath.swift
[652/831] Compiling CustomDump Dump.swift
[653/831] Compiling CustomDump ExpectDifference.swift
[654/831] Compiling CustomDump ExpectNoDifference.swift
[655/831] Compiling CustomDump Mirror.swift
[662/841] Compiling PerceptionCore WithPerceptionTracking.swift
[663/860] Compiling RxSwift TakeLast.swift
[664/860] Compiling RxSwift TakeWithPredicate.swift
[665/860] Compiling RxSwift Throttle.swift
[666/860] Compiling RxSwift Timeout.swift
[667/860] Compiling RxSwift Timer.swift
[668/860] Compiling RxSwift ToArray.swift
[669/860] Compiling RxSwift Using.swift
[670/860] Compiling RxSwift VirtualTimeConverterType.swift
[671/860] Compiling RxSwift VirtualTimeScheduler.swift
[672/860] Compiling RxSwift Window.swift
[673/860] Compiling RxSwift WithLatestFrom.swift
[674/860] Compiling RxSwift WithUnretained.swift
[675/860] Compiling RxSwift Zip+Collection.swift
[676/860] Compiling RxSwift Zip+arity.swift
[677/860] Compiling RxSwift Zip.swift
[678/860] Compiling RxSwift resource_bundle_accessor.swift
[679/860] Compiling CasePathsCore Never+CasePathable.swift
[680/860] Compiling CasePathsCore UncheckedSendable.swift
[681/860] Compiling CasePathsCore Optional+CasePathable.swift
[682/861] Compiling OrderedCollections OrderedSet+SubSequence.swift
[683/861] Compiling OrderedCollections OrderedSet+Testing.swift
[684/861] Compiling OrderedCollections OrderedSet+UnorderedView.swift
[685/861] Compiling OrderedCollections OrderedSet+UnstableInternals.swift
[686/861] Compiling OrderedCollections OrderedSet.swift
[687/861] Compiling OrderedCollections _UnsafeBitset.swift
[688/861] Compiling CasePathsCore TypeName.swift
[689/861] Compiling CasePathsCore CasePathReflectable.swift
[690/861] Compiling CasePathsCore KeyPath+Sendable.swift
[691/861] Compiling CasePathsCore AnyCasePath.swift
[692/861] Compiling CasePathsCore CasePathIterable.swift
[693/861] Emitting module CasePathsCore
[694/861] Compiling CasePathsCore CasePathable.swift
[695/871] Compiling CasePathsCore Result+CasePathable.swift
[706/871] Compiling IdentifiedCollections IdentifiedArray+Insertions.swift
[707/871] Compiling IdentifiedCollections IdentifiedArray+MutableCollection.swift
[708/872] Compiling IdentifiedCollections IdentifiedArray+RandomAccessCollection.swift
[709/872] Compiling IdentifiedCollections IdentifiedArray+RangeReplaceableCollection.swift
[710/872] Compiling IdentifiedCollections IdentifiedArray+Sendable.swift
[711/872] Compiling IdentifiedCollections IdentifiedArray.swift
[712/872] Compiling IdentifiedCollections IdentifiedArray+CustomStringConvertible.swift
[713/872] Compiling IdentifiedCollections IdentifiedArray+Equatable.swift
[714/872] Compiling IdentifiedCollections IdentifiedArray+ExpressibleByArrayLiteral.swift
[715/872] Compiling IdentifiedCollections IdentifiedArray+Hashable.swift
[716/872] Compiling IdentifiedCollections IdentifiedArray+IdentifiedCollection.swift
[717/872] Compiling IdentifiedCollections IdentifiedArray+Initializers.swift
[718/872] Emitting module OrderedCollections
[719/872] Compiling IdentifiedCollections IdentifiedArray+CustomDebugStringConvertible.swift
[720/872] Compiling IdentifiedCollections IdentifiedArray+CustomReflectable.swift
[721/872] Compiling IdentifiedCollections IdentifiedArray+Collection.swift
[722/872] Compiling IdentifiedCollections IdentifiedArray+CollectionAlgorithms.swift
[723/872] Compiling CasePathsCore TypeName.swift
[724/888] Compiling CasePathsCore Never+CasePathable.swift
[725/888] Compiling CasePathsCore UncheckedSendable.swift
[726/888] Compiling CasePathsCore KeyPath+Sendable.swift
[727/888] Compiling CasePathsCore Optional+CasePathable.swift
[728/903] Compiling IdentifiedCollections IdentifiedCollection.swift
[729/922] Compiling IdentifiedCollections IdentifiedArray+RandomAccessCollection.swift
[730/922] Compiling IdentifiedCollections IdentifiedArray+RangeReplaceableCollection.swift
[731/922] Emitting module IdentifiedCollections
[732/922] Compiling CasePathsCore CasePathIterable.swift
[733/922] Compiling CasePathsCore CasePathReflectable.swift
[734/922] Emitting module CasePathsCore
[735/922] Compiling CasePathsCore AnyCasePath.swift
[736/922] Compiling CasePathsCore CasePathable.swift
[753/922] Compiling CasePathsCore Result+CasePathable.swift
[754/922] Compiling IdentifiedCollections IdentifiedArray+Sendable.swift
[755/922] Compiling IdentifiedCollections IdentifiedArray.swift
[756/922] Compiling IdentifiedCollections IdentifiedArray+CustomStringConvertible.swift
[757/922] Compiling IdentifiedCollections IdentifiedArray+Equatable.swift
[760/923] Compiling IdentifiedCollections IdentifiedArray+Insertions.swift
[761/923] Compiling IdentifiedCollections IdentifiedArray+MutableCollection.swift
[762/923] Compiling Workflow WorkflowLogger.swift
[763/923] Compiling Workflow WorkflowNode.swift
[764/923] Compiling Workflow WorkflowHost.swift
[765/923] Compiling Workflow WorkflowAction.swift
[766/923] Compiling IdentifiedCollections IdentifiedArray+ExpressibleByArrayLiteral.swift
[767/923] Compiling IdentifiedCollections IdentifiedArray+Hashable.swift
[770/924] Compiling IdentifiedCollections IdentifiedArray+IdentifiedCollection.swift
[771/924] Compiling IdentifiedCollections IdentifiedArray+Initializers.swift
[772/924] Compiling IdentifiedCollections IdentifiedArray+CustomDebugStringConvertible.swift
[773/924] Compiling IdentifiedCollections IdentifiedArray+CustomReflectable.swift
[774/924] Compiling IdentifiedCollections Identified.swift
[775/924] Compiling IdentifiedCollections IdentifiedArray+Codable.swift
[776/924] Compiling IdentifiedCollections IdentifiedArray+Collection.swift
[777/924] Compiling IdentifiedCollections IdentifiedArray+CollectionAlgorithms.swift
[780/924] Compiling Workflow WorkflowNode.swift
[781/924] Compiling Workflow WorkflowLogger.swift
[782/924] Compiling Workflow WorkflowAction.swift
[789/924] Emitting module Workflow
[790/924] Compiling Workflow WorkflowHost.swift
[793/925] Emitting module IdentifiedCollections
[794/925] Compiling IdentifiedCollections IdentifiedCollection.swift
[795/925] Emitting module Workflow
[804/925] Compiling Workflow WorkflowObserver.swift
[806/974] Emitting module WorkflowReactiveSwift
[807/974] Compiling WorkflowReactiveSwift QueueScheduler+Workflow.swift
[808/974] Compiling WorkflowReactiveSwift Logger.swift
[809/974] Compiling WorkflowReactiveSwift SignalProducerWorkflow.swift
[810/974] Compiling WorkflowUI DescribedViewController.swift
[811/974] Compiling WorkflowUI ScreenViewController.swift
[812/974] Compiling WorkflowUI UIViewController+Extensions.swift
[813/975] Compiling WorkflowUI Screen.swift
[814/975] Compiling WorkflowUI ScreenContaining.swift
[815/975] Compiling WorkflowUI WorkflowHostingController.swift
[816/975] Compiling WorkflowUI ModuleExports.swift
[817/975] Compiling WorkflowUI AnyScreen.swift
[818/975] Compiling WorkflowCombine PublisherWorkflow.swift
[819/975] Compiling WorkflowCombine Publisher+Extensions.swift
[820/975] Compiling WorkflowCombine Logger.swift
[821/975] Compiling WorkflowCombine Worker.swift
[822/975] Emitting module WorkflowCombine
[823/975] Compiling WorkflowConcurrency AsyncOperationWorker.swift
[824/975] Compiling WorkflowConcurrency Logger.swift
[825/975] Emitting module WorkflowConcurrency
[826/975] Compiling WorkflowConcurrency Worker.swift
[827/975] Compiling WorkflowUI WorkflowUIEvents.swift
[828/975] Compiling WorkflowUI WorkflowUIObserver.swift
[829/975] Emitting module WorkflowUI
[830/975] Compiling WorkflowUI WorkflowUIViewController.swift
[831/975] Compiling WorkflowUI AdaptedEnvironmentScreen.swift
[832/975] Compiling WorkflowReactiveSwift SignalWorker.swift
[833/975] Compiling WorkflowReactiveSwift Worker.swift
[834/975] Compiling WorkflowRxSwift Worker.swift
[835/975] Compiling WorkflowRxSwift ObservableWorkflow.swift
[836/975] Emitting module WorkflowRxSwift
[837/975] Compiling WorkflowRxSwift Logger.swift
[841/977] Compiling WorkflowRxSwift Worker.swift
[842/977] Compiling WorkflowRxSwift ObservableWorkflow.swift
[843/977] Emitting module WorkflowRxSwift
[844/977] Compiling WorkflowRxSwift Logger.swift
[845/983] Compiling WorkflowUI ScreenViewController.swift
[846/993] Compiling WorkflowUI ScreenContaining.swift
[847/993] Compiling WorkflowUI DescribedViewController.swift
[848/993] Compiling WorkflowUI Screen.swift
[853/993] Compiling WorkflowUI AnyScreen.swift
[856/993] Emitting module WorkflowUI
[857/993] Compiling WorkflowUI UIViewController+Extensions.swift
[858/993] Compiling WorkflowUI ViewControllerDescription.swift
[859/998] Emitting module CustomDump
[861/1000] Compiling WorkflowReactiveSwift SignalProducerWorkflow.swift
[862/1000] Compiling WorkflowReactiveSwift Worker.swift
[863/1000] Compiling WorkflowReactiveSwift SignalWorker.swift
[864/1000] Compiling WorkflowCombine PublisherWorkflow.swift
[865/1000] Compiling WorkflowCombine Publisher+Extensions.swift
[866/1000] Emitting module WorkflowCombine
[867/1000] Compiling WorkflowCombine Worker.swift
[868/1000] Compiling WorkflowCombine Logger.swift
[869/1000] Compiling WorkflowReactiveSwift QueueScheduler+Workflow.swift
[870/1000] Emitting module WorkflowReactiveSwift
[871/1000] Compiling WorkflowReactiveSwift Logger.swift
[872/1000] Compiling WorkflowUI ViewControllerDescription.swift
[873/1000] Emitting module WorkflowConcurrency
[874/1000] Compiling WorkflowConcurrency Logger.swift
[875/1000] Compiling WorkflowConcurrency Worker.swift
[876/1000] Compiling WorkflowConcurrency AsyncOperationWorker.swift
[880/1005] Compiling CustomDump XCTAssertDifference.swift
[881/1005] Compiling CustomDump XCTAssertNoDifference.swift
[882/1005] Compiling WorkflowSwiftUIExperimental SwiftUIScreen.swift
[886/1005] Compiling WorkflowSwiftUIExperimental WithModel.swift
[887/1005] Compiling WorkflowSwiftUIExperimental ObservableValue+Binding.swift
[888/1005] Compiling WorkflowSwiftUIExperimental ObservableValue.swift
[889/1005] Emitting module WorkflowSwiftUIExperimental
[919/1005] Compiling WorkflowSwiftUIExperimental SwiftUIScreen.swift
[920/1005] Compiling WorkflowSwiftUIExperimental ObservableValue+Binding.swift
[921/1005] Compiling WorkflowSwiftUIExperimental WithModel.swift
[922/1005] Emitting module WorkflowSwiftUIExperimental
[923/1005] Compiling WorkflowSwiftUIExperimental ObservableValue.swift
[957/1019] Emitting module SwiftSyntax
[993/1019] Compiling WorkflowTesting WorkflowRenderTester.swift
[994/1019] Compiling WorkflowTesting RenderExpectations.swift
[995/1019] Compiling WorkflowTesting AppliedAction.swift
[996/1019] Compiling WorkflowTesting WorkflowActionTester.swift
[997/1019] Compiling WorkflowTesting RenderTesterResult.swift
[998/1019] Compiling WorkflowTesting WorkflowRenderTester.swift
[999/1019] Compiling WorkflowTesting RenderTester+TestContext.swift
[1000/1019] Emitting module WorkflowTesting
[1001/1019] Compiling WorkflowTesting RenderTesterResult.swift
[1002/1019] Compiling WorkflowTesting WorkflowActionTester.swift
[1003/1019] Emitting module WorkflowTesting
[1004/1019] Compiling WorkflowTesting RenderExpectations.swift
[1005/1019] Compiling WorkflowTesting AppliedAction.swift
[1006/1019] Compiling WorkflowTesting RenderTester+TestContext.swift
[1007/1041] Compiling WorkflowRxSwiftTesting WorkerTesting.swift
[1008/1041] Emitting module WorkflowRxSwiftTesting
[1009/1041] Compiling WorkflowRxSwiftTesting ObservableTesting.swift
[1010/1041] Compiling WorkflowCombineTesting WorkerTesting.swift
[1011/1041] Compiling WorkflowConcurrencyTesting WorkerTesting.swift
[1012/1041] Emitting module WorkflowConcurrencyTesting
[1013/1041] Compiling WorkflowReactiveSwiftTesting SignalProducerWorkflowTesting.swift
[1014/1041] Emitting module WorkflowReactiveSwiftTesting
[1015/1041] Compiling WorkflowReactiveSwiftTesting WorkerTesting.swift
[1016/1041] Emitting module WorkflowCombineTesting
[1017/1041] Compiling WorkflowCombineTesting PublisherTesting.swift
[1018/1041] Emitting module WorkflowCombineTesting
[1019/1041] Emitting module WorkflowRxSwiftTesting
[1020/1041] Compiling WorkflowCombineTesting PublisherTesting.swift
[1021/1041] Compiling WorkflowCombineTesting WorkerTesting.swift
[1022/1041] Compiling WorkflowReactiveSwiftTesting SignalProducerWorkflowTesting.swift
[1023/1041] Emitting module WorkflowReactiveSwiftTesting
[1024/1041] Compiling WorkflowReactiveSwiftTesting WorkerTesting.swift
[1025/1041] Compiling WorkflowConcurrencyTesting WorkerTesting.swift
[1026/1041] Emitting module WorkflowConcurrencyTesting
[1027/1041] Compiling WorkflowRxSwiftTesting ObservableTesting.swift
[1028/1041] Compiling WorkflowRxSwiftTesting WorkerTesting.swift
[1036/1099] Compiling SwiftDiagnostics BasicDiagnosticDecorator.swift
[1037/1100] Compiling SwiftDiagnostics Message.swift
[1038/1100] Compiling SwiftDiagnostics Diagnostic.swift
[1039/1100] Compiling SwiftDiagnostics Convenience.swift
[1040/1100] Emitting module SwiftDiagnostics
[1041/1100] Compiling SwiftDiagnostics ANSIDiagnosticDecorator.swift
[1042/1100] Compiling SwiftDiagnostics Note.swift
[1043/1100] Compiling SwiftDiagnostics GroupedDiagnostics.swift
[1044/1100] Compiling SwiftDiagnostics FixIt.swift
[1045/1100] Compiling SwiftDiagnostics DiagnosticDecorator.swift
[1046/1100] Compiling SwiftDiagnostics DiagnosticsFormatter.swift
[1047/1100] Compiling SwiftBasicFormat Trivia+FormatExtensions.swift
[1048/1100] Compiling SwiftBasicFormat SyntaxProtocol+Formatted.swift
[1049/1100] Compiling SwiftBasicFormat InferIndentation.swift
[1050/1100] Emitting module SwiftBasicFormat
[1051/1100] Compiling SwiftBasicFormat Syntax+Extensions.swift
[1052/1100] Compiling SwiftBasicFormat BasicFormat.swift
[1053/1100] Compiling SwiftParser TopLevel.swift
[1054/1100] Compiling SwiftParser TriviaParser.swift
[1055/1100] Compiling SwiftParser Types.swift
[1056/1100] Compiling SwiftParser ExperimentalFeatures.swift
[1057/1104] Compiling SwiftParser StringLiterals.swift
[1058/1104] Compiling SwiftParser SwiftParserCompatibility.swift
[1059/1104] Compiling SwiftParser SwiftVersion.swift
[1060/1104] Compiling SwiftParser SyntaxUtils.swift
[1061/1104] Compiling SwiftParser TokenConsumer.swift
[1062/1104] Compiling SwiftParser TokenPrecedence.swift
[1063/1104] Compiling SwiftParser TokenSpec.swift
[1064/1104] Compiling SwiftParser TokenSpecSet.swift
[1065/1104] Emitting module SwiftParser
[1066/1104] Compiling SwiftParser UnicodeScalarExtensions.swift
[1067/1104] Compiling SwiftParser Lookahead.swift
[1068/1104] Compiling SwiftParser LoopProgressCondition.swift
[1069/1104] Compiling SwiftParser Modifiers.swift
[1070/1104] Compiling SwiftParser Names.swift
[1071/1104] Compiling SwiftParser Nominals.swift
[1072/1104] Compiling SwiftParser Parameters.swift
[1073/1104] Compiling SwiftParser ParseSourceFile.swift
[1074/1104] Compiling SwiftParser Parser.swift
[1075/1104] Compiling SwiftParser Patterns.swift
[1076/1104] Compiling SwiftParser Recovery.swift
[1077/1104] Compiling SwiftParser Specifiers.swift
[1078/1104] Compiling SwiftParser Statements.swift
[1079/1104] Compiling SwiftParser StringLiteralRepresentedLiteralValue.swift
[1080/1104] Compiling SwiftParser Directives.swift
[1081/1104] Compiling SwiftParser ExpressionInterpretedAsVersionTuple.swift
[1082/1104] Compiling SwiftParser Expressions.swift
[1083/1104] Compiling SwiftParser IncrementalParseTransition.swift
[1084/1104] Compiling SwiftParser IsValidIdentifier.swift
[1085/1104] Compiling SwiftParser Cursor.swift
[1086/1104] Compiling SwiftParser Lexeme.swift
[1087/1104] Compiling SwiftParser LexemeSequence.swift
[1088/1104] Compiling SwiftParser Lexer.swift
[1089/1104] Compiling SwiftParser RegexLiteralLexer.swift
[1090/1104] Compiling SwiftParser Attributes.swift
[1091/1104] Compiling SwiftParser Availability.swift
[1092/1104] Compiling SwiftParser CharacterInfo.swift
[1093/1104] Compiling SwiftParser CollectionNodes+Parsable.swift
[1094/1104] Compiling SwiftParser Declarations.swift
[1095/1104] Compiling SwiftParser IsLexerClassified.swift
[1096/1104] Compiling SwiftParser LayoutNodes+Parsable.swift
[1097/1104] Compiling SwiftParser Parser+TokenSpecSet.swift
[1098/1104] Compiling SwiftParser TokenSpecStaticMembers.swift
[1099/1127] Compiling SwiftParserDiagnostics SyntaxKindNameForDiagnostics.swift
[1100/1128] Compiling SwiftOperators PrecedenceGroup.swift
[1101/1129] Compiling SwiftParserDiagnostics TokenNameForDiagnostics.swift
[1102/1129] Compiling SwiftOperators PrecedenceGraph.swift
[1103/1129] Compiling SwiftOperators SyntaxSynthesis.swift
[1104/1129] Compiling SwiftOperators OperatorTable+Semantics.swift
[1105/1129] Compiling SwiftOperators OperatorTable.swift
[1106/1129] Compiling SwiftOperators OperatorError.swift
[1107/1129] Compiling SwiftOperators OperatorTable+Defaults.swift
[1108/1129] Emitting module SwiftOperators
[1109/1129] Compiling SwiftOperators OperatorError+Diagnostics.swift
[1110/1129] Compiling SwiftOperators Operator.swift
[1111/1129] Compiling SwiftOperators OperatorTable+Folding.swift
[1112/1129] Compiling SwiftParserDiagnostics PresenceUtils.swift
[1113/1129] Compiling SwiftParserDiagnostics ChildNameForDiagnostics.swift
[1114/1129] Compiling SwiftParserDiagnostics SyntaxExtensions.swift
[1115/1129] Compiling SwiftParserDiagnostics Utils.swift
[1116/1129] Compiling SwiftParserDiagnostics ParserDiagnosticMessages.swift
[1117/1129] Compiling SwiftParserDiagnostics MissingNodesError.swift
[1118/1129] Compiling SwiftParserDiagnostics MissingTokenError.swift
[1119/1129] Emitting module SwiftParserDiagnostics
[1120/1129] Compiling SwiftParserDiagnostics DiagnosticExtensions.swift
[1121/1129] Compiling SwiftParserDiagnostics LexerDiagnosticMessages.swift
[1122/1129] Compiling SwiftParserDiagnostics MultiLineStringLiteralDiagnosticsGenerator.swift
[1123/1129] Compiling SwiftParserDiagnostics ParseDiagnosticsGenerator.swift
[1124/1144] Compiling SwiftSyntaxBuilder RenamedChildrenBuilderCompatibility.swift
[1125/1144] Compiling SwiftSyntaxBuilder ResultBuilders.swift
[1126/1145] Compiling SwiftSyntaxBuilder ConvenienceInitializers.swift
[1127/1145] Compiling SwiftSyntaxBuilder DeclSyntaxParseable.swift
[1128/1145] Compiling SwiftSyntaxBuilder ResultBuilderExtensions.swift
[1129/1145] Compiling SwiftSyntaxBuilder SwiftSyntaxBuilderCompatibility.swift
[1130/1145] Compiling SwiftSyntaxBuilder SyntaxParsable+ExpressibleByStringInterpolation.swift
[1131/1145] Compiling SwiftSyntaxBuilder ValidatingSyntaxNodes.swift
[1132/1145] Compiling SwiftSyntaxBuilder BuildableNodes.swift
[1133/1145] Emitting module SwiftSyntaxBuilder
[1134/1145] Compiling SwiftSyntaxBuilder WithTrailingCommaSyntax+EnsuringTrailingComma.swift
[1135/1145] Compiling SwiftSyntaxBuilder Indenter.swift
[1136/1145] Compiling SwiftSyntaxBuilder ListBuilder.swift
[1137/1145] Compiling SwiftSyntaxBuilder Syntax+StringInterpolation.swift
[1138/1145] Compiling SwiftSyntaxBuilder SyntaxNodeWithBody.swift
[1139/1145] Compiling SwiftSyntaxBuilder SyntaxExpressibleByStringInterpolationConformances.swift
[1140/1163] Compiling SwiftSyntaxMacros PreambleMacro.swift
[1141/1164] Compiling SwiftSyntaxMacros Macro.swift
[1142/1164] Compiling SwiftSyntaxMacros MemberAttributeMacro.swift
[1143/1164] Compiling SwiftSyntaxMacros ExpressionMacro.swift
[1144/1164] Compiling SwiftSyntaxMacros ExtensionMacro.swift
[1145/1164] Compiling SwiftSyntaxMacros MacroExpansionDiagnosticMessages.swift
[1146/1164] Compiling SwiftSyntaxMacros AccessorMacro.swift
[1147/1164] Compiling SwiftSyntaxMacros CodeItemMacro.swift
[1148/1164] Compiling SwiftSyntaxMacros DeclarationMacro.swift
[1149/1164] Compiling SwiftSyntaxMacros AttachedMacro.swift
[1150/1164] Compiling SwiftSyntaxMacros BodyMacro.swift
[1151/1164] Compiling SwiftSyntaxMacros FreestandingMacro.swift
[1152/1164] Compiling SwiftSyntaxMacros Macro+Format.swift
[1153/1164] Compiling SwiftSyntaxMacros MemberMacro.swift
[1154/1164] Compiling SwiftSyntaxMacros PeerMacro.swift
[1155/1164] Compiling SwiftSyntaxMacros AbstractSourceLocation.swift
[1156/1164] Compiling SwiftSyntaxMacros MacroExpansionContext.swift
[1157/1164] Emitting module SwiftSyntaxMacros
[1158/1164] Compiling SwiftSyntaxMacros Syntax+LexicalContext.swift
[1159/1174] Emitting module SwiftSyntaxMacroExpansion
[1160/1174] Compiling SwiftSyntaxMacroExpansion MacroArgument.swift
[1161/1174] Compiling SwiftSyntaxMacroExpansion MacroExpansion.swift
[1162/1174] Compiling SwiftSyntaxMacroExpansion BasicMacroExpansionContext.swift
[1163/1174] Compiling SwiftSyntaxMacroExpansion FunctionParameterUtils.swift
[1164/1174] Compiling SwiftSyntaxMacroExpansion MacroExpansionDiagnosticMessages.swift
[1165/1174] Compiling SwiftSyntaxMacroExpansion MacroSpec.swift
[1166/1174] Compiling SwiftSyntaxMacroExpansion MacroReplacement.swift
[1167/1174] Compiling SwiftSyntaxMacroExpansion MacroSystem.swift
[1168/1174] Compiling SwiftSyntaxMacroExpansion IndentationUtils.swift
[1169/1186] Compiling SwiftCompilerPluginMessageHandling PluginMessageCompatibility.swift
[1170/1186] Compiling SwiftCompilerPluginMessageHandling PluginMacroExpansionContext.swift
[1171/1186] Compiling SwiftCompilerPluginMessageHandling Macros.swift
[1172/1186] Compiling SwiftCompilerPluginMessageHandling LRUCache.swift
[1173/1186] Compiling SwiftCompilerPluginMessageHandling PluginMessages.swift
[1174/1186] Compiling SwiftCompilerPluginMessageHandling JSONEncoding.swift
[1175/1187] Compiling SwiftCompilerPluginMessageHandling CodingUtilities.swift
[1176/1187] Compiling SwiftCompilerPluginMessageHandling JSON.swift
[1177/1187] Compiling SwiftCompilerPluginMessageHandling CompilerPluginMessageHandler.swift
[1178/1187] Compiling SwiftCompilerPluginMessageHandling Diagnostics.swift
[1179/1187] Compiling SwiftCompilerPluginMessageHandling JSONDecoding.swift
[1180/1187] Emitting module SwiftCompilerPluginMessageHandling
[1181/1187] Compiling SwiftCompilerPluginMessageHandling StandardIOMessageConnection.swift
[1182/1189] Compiling SwiftCompilerPlugin CompilerPlugin.swift
[1183/1189] Emitting module SwiftCompilerPlugin
[1184/1202] Compiling PerceptionMacros Plugins.swift
[1185/1202] Compiling PerceptionMacros Availability.swift
[1186/1202] Compiling PerceptionMacros PerceptibleMacro.swift
[1187/1202] Compiling PerceptionMacros Extensions.swift
[1188/1202] Emitting module PerceptionMacros
[1188/1202] Write Objects.LinkFileList
[1190/1202] Compiling WorkflowSwiftUIMacros Plugins.swift
[1191/1202] Compiling WorkflowSwiftUIMacros Extensions.swift
/Users/admin/builder/spi-builder-workspace/WorkflowSwiftUIMacros/Sources/Derived/Extensions.swift:47:21: warning: 'as' is deprecated: This cast will always succeed
45 | func accessorsMatching(_ predicate: (TokenKind) -> Bool) -> [AccessorDeclSyntax] {
46 | let patternBindings = bindings.compactMap { binding in
47 | binding.as(PatternBindingSyntax.self)
| `- warning: 'as' is deprecated: This cast will always succeed
48 | }
49 | let accessors: [AccessorDeclListSyntax.Element] = patternBindings.compactMap { patternBinding in
/Users/admin/builder/spi-builder-workspace/WorkflowSwiftUIMacros/Sources/Derived/Extensions.swift:58:39: warning: 'as' is deprecated: This cast will always succeed
56 | }.flatMap { $0 }
57 | return accessors.compactMap { accessor in
58 | guard let decl = accessor.as(AccessorDeclSyntax.self) else {
| `- warning: 'as' is deprecated: This cast will always succeed
59 | return nil
60 | }
/Users/admin/builder/spi-builder-workspace/WorkflowSwiftUIMacros/Sources/Derived/Extensions.swift:236:38: warning: 'as' is deprecated: This cast will always succeed
234 | var standins = [FunctionDeclSyntax.SignatureStandin]()
235 | for member in memberBlock.members {
236 | if let function = member.as(MemberBlockItemSyntax.self)?.decl.as(FunctionDeclSyntax.self) {
| `- warning: 'as' is deprecated: This cast will always succeed
237 | standins.append(function.signatureStandin)
238 | }
/Users/admin/builder/spi-builder-workspace/WorkflowSwiftUIMacros/Sources/Derived/Extensions.swift:245:38: warning: 'as' is deprecated: This cast will always succeed
243 | func hasMemberFunction(equvalentTo other: FunctionDeclSyntax) -> Bool {
244 | for member in memberBlock.members {
245 | if let function = member.as(MemberBlockItemSyntax.self)?.decl.as(FunctionDeclSyntax.self) {
| `- warning: 'as' is deprecated: This cast will always succeed
246 | if function.isEquivalent(to: other) {
247 | return true
/Users/admin/builder/spi-builder-workspace/WorkflowSwiftUIMacros/Sources/Derived/Extensions.swift:256:38: warning: 'as' is deprecated: This cast will always succeed
254 | func hasMemberProperty(equivalentTo other: VariableDeclSyntax) -> Bool {
255 | for member in memberBlock.members {
256 | if let variable = member.as(MemberBlockItemSyntax.self)?.decl.as(VariableDeclSyntax.self) {
| `- warning: 'as' is deprecated: This cast will always succeed
257 | if variable.isEquivalent(to: other) {
258 | return true
/Users/admin/builder/spi-builder-workspace/WorkflowSwiftUIMacros/Sources/Derived/Extensions.swift:267:42: warning: 'as' is deprecated: This cast will always succeed
265 | var definedVariables: [VariableDeclSyntax] {
266 | memberBlock.members.compactMap { member in
267 | if let variableDecl = member.as(MemberBlockItemSyntax.self)?.decl.as(VariableDeclSyntax.self) {
| `- warning: 'as' is deprecated: This cast will always succeed
268 | return variableDecl
269 | }
[1192/1202] Emitting module WorkflowSwiftUIMacros
[1193/1202] Compiling WorkflowSwiftUIMacros ObservableStateMacro.swift
/Users/admin/builder/spi-builder-workspace/WorkflowSwiftUIMacros/Sources/Derived/ObservableStateMacro.swift:454:30: warning: 'MacroExpansionErrorMessage' is deprecated: MacroExpansionErrorMessage has been moved to the SwiftSyntaxMacros module
452 | Diagnostic(
453 | node: attribute,
454 | message: MacroExpansionErrorMessage("'@\(name)' cannot be used in '@ObservableState'"),
| `- warning: 'MacroExpansionErrorMessage' is deprecated: MacroExpansionErrorMessage has been moved to the SwiftSyntaxMacros module
455 | fixIt: .replace(
456 | message: MacroExpansionFixItMessage("Use '@\(rename)' instead"),
/Users/admin/builder/spi-builder-workspace/WorkflowSwiftUIMacros/Sources/Derived/ObservableStateMacro.swift:456:34: warning: 'MacroExpansionFixItMessage' is deprecated: MacroExpansionFixItMessage has been moved to the SwiftSyntaxMacros module
454 | message: MacroExpansionErrorMessage("'@\(name)' cannot be used in '@ObservableState'"),
455 | fixIt: .replace(
456 | message: MacroExpansionFixItMessage("Use '@\(rename)' instead"),
| `- warning: 'MacroExpansionFixItMessage' is deprecated: MacroExpansionFixItMessage has been moved to the SwiftSyntaxMacros module
457 | oldNode: attribute,
458 | newNode: attribute.with(
[1194/1202] Compiling WorkflowSwiftUIMacros Availability.swift
[1195/1202] Emitting module CasePathsMacros
[1196/1202] Compiling CasePathsMacros CasePathableMacro.swift
[1197/1202] Compiling CasePathsMacros Plugin.swift
[1197/1202] Write Objects.LinkFileList
[1199/1202] Linking PerceptionMacros-tool
[1200/1202] Linking WorkflowSwiftUIMacros-tool
[1201/1202] Linking CasePathsMacros-tool
[1203/1222] Compiling Perception Exports.swift
[1204/1222] Compiling CasePaths XCTestSupport.swift
[1206/1222] Emitting module Perception
[1207/1222] Compiling Perception Macros.swift
[1208/1222] Compiling Perception Exports.swift
[1209/1222] Emitting module Perception
[1210/1222] Compiling Perception Macros.swift
[1211/1222] Compiling CasePaths LockIsolated.swift
[1212/1222] Compiling CasePaths Exports.swift
[1213/1222] Compiling CasePaths Deprecations.swift
[1214/1222] Compiling CasePaths EnumReflection.swift
[1215/1222] Compiling CasePaths LockIsolated.swift
[1216/1222] Compiling CasePaths Macros.swift
[1217/1222] Compiling CasePaths Exports.swift
[1218/1222] Compiling CasePaths EnumReflection.swift
[1219/1222] Compiling CasePaths Macros.swift
[1220/1222] Emitting module CasePaths
[1221/1222] Compiling CasePaths Deprecations.swift
[1222/1222] Emitting module CasePaths
[1223/1254] Compiling WorkflowSwiftUI Workflow+Preview.swift
[1225/1256] Compiling WorkflowSwiftUI Store+Preview.swift
[1226/1256] Compiling WorkflowSwiftUI ActionModel.swift
[1227/1256] Compiling WorkflowSwiftUI Bindable+Store.swift
[1228/1256] Compiling WorkflowSwiftUI ObservationStateRegistrar.swift
[1229/1256] Compiling WorkflowSwiftUI Exports.swift
[1230/1256] Compiling WorkflowSwiftUI Store.swift
[1231/1256] Compiling WorkflowSwiftUI WorkflowView.swift
[1232/1256] Compiling WorkflowSwiftUI Store+Preview.swift
[1233/1256] Compiling WorkflowSwiftUI Macros.swift
[1234/1256] Compiling WorkflowSwiftUI ObservableModel.swift
[1235/1256] Compiling WorkflowSwiftUI ActionModel.swift
[1236/1256] Compiling WorkflowSwiftUI AreOrderedSetsDuplicates.swift
[1237/1256] Compiling WorkflowSwiftUI ObservableState.swift
[1238/1256] Compiling WorkflowSwiftUI Bindable+Store.swift
[1243/1256] Compiling WorkflowSwiftUI AreOrderedSetsDuplicates.swift
[1244/1256] Compiling WorkflowSwiftUI Store.swift
[1245/1256] Compiling WorkflowSwiftUI ObservableState.swift
[1254/1256] Compiling WorkflowSwiftUI WorkflowView.swift
[1255/1256] Emitting module WorkflowSwiftUI
Build complete! (37.44s)
Build complete.
{
"dependencies" : [
{
"identity" : "reactiveswift",
"requirement" : {
"range" : [
{
"lower_bound" : "7.1.1",
"upper_bound" : "8.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/ReactiveCocoa/ReactiveSwift.git"
},
{
"identity" : "rxswift",
"requirement" : {
"range" : [
{
"lower_bound" : "6.6.0",
"upper_bound" : "7.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/ReactiveX/RxSwift.git"
},
{
"identity" : "swift-syntax",
"requirement" : {
"range" : [
{
"lower_bound" : "509.0.0",
"upper_bound" : "601.0.0-prerelease"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swiftlang/swift-syntax"
},
{
"identity" : "swift-case-paths",
"requirement" : {
"range" : [
{
"lower_bound" : "1.5.5",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swift-case-paths"
},
{
"identity" : "swift-identified-collections",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swift-identified-collections"
},
{
"identity" : "swift-macro-testing",
"requirement" : {
"range" : [
{
"lower_bound" : "0.4.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swift-macro-testing"
},
{
"identity" : "swift-perception",
"requirement" : {
"range" : [
{
"lower_bound" : "1.5.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swift-perception"
},
{
"identity" : "swift-custom-dump",
"requirement" : {
"range" : [
{
"lower_bound" : "1.2.1",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swift-custom-dump"
}
],
"manifest_display_name" : "Workflow",
"name" : "Workflow",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "15.0"
},
{
"name" : "macos",
"version" : "12.0"
},
{
"name" : "watchos",
"version" : "8.0"
},
{
"name" : "maccatalyst",
"version" : "15.0"
},
{
"name" : "tvos",
"version" : "12.0"
}
],
"products" : [
{
"name" : "Workflow",
"targets" : [
"Workflow"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "WorkflowTesting",
"targets" : [
"WorkflowTesting"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "WorkflowUI",
"targets" : [
"WorkflowUI"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "WorkflowSwiftUI",
"targets" : [
"WorkflowSwiftUI"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "WorkflowReactiveSwift",
"targets" : [
"WorkflowReactiveSwift"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "WorkflowReactiveSwiftTesting",
"targets" : [
"WorkflowReactiveSwiftTesting"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "WorkflowRxSwift",
"targets" : [
"WorkflowRxSwift"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "WorkflowRxSwiftTesting",
"targets" : [
"WorkflowRxSwiftTesting"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "WorkflowCombine",
"targets" : [
"WorkflowCombine"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "WorkflowCombineTesting",
"targets" : [
"WorkflowCombineTesting"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "WorkflowConcurrency",
"targets" : [
"WorkflowConcurrency"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "WorkflowConcurrencyTesting",
"targets" : [
"WorkflowConcurrencyTesting"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "ViewEnvironment",
"targets" : [
"ViewEnvironment"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "ViewEnvironmentUI",
"targets" : [
"ViewEnvironmentUI"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "WorkflowSwiftUIExperimental",
"targets" : [
"WorkflowSwiftUIExperimental"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "WorkflowSwiftUIMacros",
"targets" : [
"WorkflowSwiftUIMacros"
],
"type" : {
"macro" : null
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "WorkflowUITests",
"module_type" : "SwiftTarget",
"name" : "WorkflowUITests",
"path" : "WorkflowUI/Tests",
"sources" : [
"AdaptedEnvironmentScreenTests.swift",
"DescribedViewControllerTests.swift",
"ScreenContainingTests.swift",
"UIViewControllerExtensionTests.swift",
"ViewControllerDescriptionTests.swift",
"WorkflowHostingControllerTests.swift",
"WorkflowUIObservationTestCase.swift",
"WorkflowUIViewControllerTests.swift",
"XCTestCase+Extensions.swift"
],
"target_dependencies" : [
"WorkflowUI",
"WorkflowReactiveSwift"
],
"type" : "test"
},
{
"c99name" : "WorkflowUI",
"module_type" : "SwiftTarget",
"name" : "WorkflowUI",
"path" : "WorkflowUI/Sources",
"product_memberships" : [
"WorkflowUI",
"WorkflowSwiftUI",
"WorkflowSwiftUIExperimental"
],
"sources" : [
"Hosting/WorkflowHostingController.swift",
"ModuleExports.swift",
"Observation/WorkflowUIEvents.swift",
"Observation/WorkflowUIObserver.swift",
"Observation/WorkflowUIViewController.swift",
"Screen/AdaptedEnvironmentScreen.swift",
"Screen/AnyScreen/AnyScreen.swift",
"Screen/Screen.swift",
"Screen/ScreenContaining.swift",
"Screen/ScreenViewController.swift",
"ViewControllerDescription/DescribedViewController.swift",
"ViewControllerDescription/UIViewController+Extensions.swift",
"ViewControllerDescription/ViewControllerDescription.swift"
],
"target_dependencies" : [
"Workflow",
"ViewEnvironment",
"ViewEnvironmentUI"
],
"type" : "library"
},
{
"c99name" : "WorkflowTests",
"module_type" : "SwiftTarget",
"name" : "WorkflowTests",
"path" : "Workflow/Tests",
"sources" : [
"AnyWorkflowActionTests.swift",
"AnyWorkflowTests.swift",
"ConcurrencyTests.swift",
"DebuggingTests.swift",
"HostContextTests.swift",
"PerformanceTests.swift",
"StateMutationSinkTests.swift",
"SubtreeManagerTests.swift",
"TestUtilities.swift",
"WorkflowHostTests.swift",
"WorkflowNodeTests.swift",
"WorkflowObserverTests.swift"
],
"target_dependencies" : [
"Workflow"
],
"type" : "test"
},
{
"c99name" : "WorkflowTestingTests",
"module_type" : "SwiftTarget",
"name" : "WorkflowTestingTests",
"path" : "WorkflowTesting/Tests",
"sources" : [
"WorkflowActionTesterTests.swift",
"WorkflowRenderTesterFailureTests.swift",
"WorkflowRenderTesterTests.swift"
],
"target_dependencies" : [
"WorkflowTesting"
],
"type" : "test"
},
{
"c99name" : "WorkflowTesting",
"module_type" : "SwiftTarget",
"name" : "WorkflowTesting",
"path" : "WorkflowTesting/Sources",
"product_dependencies" : [
"CustomDump"
],
"product_memberships" : [
"WorkflowTesting",
"WorkflowReactiveSwiftTesting",
"WorkflowRxSwiftTesting",
"WorkflowCombineTesting",
"WorkflowConcurrencyTesting"
],
"sources" : [
"Internal/AppliedAction.swift",
"Internal/RenderExpectations.swift",
"Internal/RenderTester+TestContext.swift",
"RenderTesterResult.swift",
"WorkflowActionTester.swift",
"WorkflowRenderTester.swift"
],
"target_dependencies" : [
"Workflow"
],
"type" : "library"
},
{
"c99name" : "WorkflowSwiftUITests",
"module_type" : "SwiftTarget",
"name" : "WorkflowSwiftUITests",
"path" : "WorkflowSwiftUI/Tests",
"sources" : [
"Derived/ObservableStateTests.swift",
"NestedStoreTests.swift",
"ObservableScreenTests.swift",
"PreferredContentSizeTests.swift",
"StoreTests.swift"
],
"target_dependencies" : [
"WorkflowSwiftUI"
],
"type" : "test"
},
{
"c99name" : "WorkflowSwiftUIMacrosTests",
"module_type" : "SwiftTarget",
"name" : "WorkflowSwiftUIMacrosTests",
"path" : "WorkflowSwiftUIMacros/Tests",
"product_dependencies" : [
"MacroTesting"
],
"sources" : [
"Derived/ObservableStateMacroTests.swift"
],
"target_dependencies" : [
"WorkflowSwiftUIMacros"
],
"type" : "test"
},
{
"c99name" : "WorkflowSwiftUIMacros",
"module_type" : "SwiftTarget",
"name" : "WorkflowSwiftUIMacros",
"path" : "WorkflowSwiftUIMacros/Sources",
"product_dependencies" : [
"SwiftSyntaxMacros",
"SwiftCompilerPlugin"
],
"product_memberships" : [
"WorkflowSwiftUI",
"WorkflowSwiftUIMacros"
],
"sources" : [
"Derived/Availability.swift",
"Derived/Extensions.swift",
"Derived/ObservableStateMacro.swift",
"Plugins.swift"
],
"type" : "macro"
},
{
"c99name" : "WorkflowSwiftUIExperimentalTests",
"module_type" : "SwiftTarget",
"name" : "WorkflowSwiftUIExperimentalTests",
"path" : "WorkflowSwiftUIExperimental/Tests",
"sources" : [
"SwiftUIScreenTests.swift"
],
"target_dependencies" : [
"WorkflowSwiftUIExperimental",
"Workflow",
"WorkflowUI"
],
"type" : "test"
},
{
"c99name" : "WorkflowSwiftUIExperimental",
"module_type" : "SwiftTarget",
"name" : "WorkflowSwiftUIExperimental",
"path" : "WorkflowSwiftUIExperimental/Sources",
"product_memberships" : [
"WorkflowSwiftUIExperimental"
],
"sources" : [
"ObservableValue+Binding.swift",
"ObservableValue.swift",
"SwiftUIScreen.swift",
"WithModel.swift"
],
"target_dependencies" : [
"Workflow",
"WorkflowUI"
],
"type" : "library"
},
{
"c99name" : "WorkflowSwiftUI",
"module_type" : "SwiftTarget",
"name" : "WorkflowSwiftUI",
"path" : "WorkflowSwiftUI/Sources",
"product_dependencies" : [
"CasePaths",
"IdentifiedCollections",
"Perception"
],
"product_memberships" : [
"WorkflowSwiftUI"
],
"sources" : [
"ActionModel.swift",
"Bindable+Store.swift",
"Derived/AreOrderedSetsDuplicates.swift",
"Derived/ObservableState.swift",
"Derived/ObservationStateRegistrar.swift",
"Exports.swift",
"Macros.swift",
"ObservableModel.swift",
"ObservableScreen+Preview.swift",
"ObservableScreen.swift",
"RenderContext+ObservableModel.swift",
"StateAccessor.swift",
"Store+Preview.swift",
"Store.swift",
"Workflow+Preview.swift",
"WorkflowView.swift"
],
"target_dependencies" : [
"Workflow",
"WorkflowUI",
"WorkflowSwiftUIMacros"
],
"type" : "library"
},
{
"c99name" : "WorkflowRxSwiftTests",
"module_type" : "SwiftTarget",
"name" : "WorkflowRxSwiftTests",
"path" : "WorkflowRxSwift/Tests",
"sources" : [
"ObservableTests.swift",
"Rx+ReactiveWorkers.swift",
"WorkerTests.swift"
],
"target_dependencies" : [
"WorkflowRxSwiftTesting",
"WorkflowReactiveSwift"
],
"type" : "test"
},
{
"c99name" : "WorkflowRxSwiftTestingTests",
"module_type" : "SwiftTarget",
"name" : "WorkflowRxSwiftTestingTests",
"path" : "WorkflowRxSwift/TestingTests",
"sources" : [
"ObservableTests.swift",
"TestingTests.swift"
],
"target_dependencies" : [
"WorkflowRxSwiftTesting"
],
"type" : "test"
},
{
"c99name" : "WorkflowRxSwiftTesting",
"module_type" : "SwiftTarget",
"name" : "WorkflowRxSwiftTesting",
"path" : "WorkflowRxSwift/Testing",
"product_memberships" : [
"WorkflowRxSwiftTesting"
],
"sources" : [
"ObservableTesting.swift",
"WorkerTesting.swift"
],
"target_dependencies" : [
"WorkflowRxSwift",
"WorkflowTesting"
],
"type" : "library"
},
{
"c99name" : "WorkflowRxSwift",
"module_type" : "SwiftTarget",
"name" : "WorkflowRxSwift",
"path" : "WorkflowRxSwift/Sources",
"product_dependencies" : [
"RxSwift"
],
"product_memberships" : [
"WorkflowRxSwift",
"WorkflowRxSwiftTesting"
],
"sources" : [
"Logger.swift",
"ObservableWorkflow.swift",
"Worker.swift"
],
"target_dependencies" : [
"Workflow"
],
"type" : "library"
},
{
"c99name" : "WorkflowReactiveSwiftTests",
"module_type" : "SwiftTarget",
"name" : "WorkflowReactiveSwiftTests",
"path" : "WorkflowReactiveSwift/Tests",
"sources" : [
"SignalProducerTests.swift",
"SignalTests.swift",
"WorkerTests.swift"
],
"target_dependencies" : [
"WorkflowReactiveSwiftTesting"
],
"type" : "test"
},
{
"c99name" : "WorkflowReactiveSwiftTestingTests",
"module_type" : "SwiftTarget",
"name" : "WorkflowReactiveSwiftTestingTests",
"path" : "WorkflowReactiveSwift/TestingTests",
"sources" : [
"SignalProducerTests.swift",
"TestingTests.swift"
],
"target_dependencies" : [
"WorkflowReactiveSwiftTesting"
],
"type" : "test"
},
{
"c99name" : "WorkflowReactiveSwiftTesting",
"module_type" : "SwiftTarget",
"name" : "WorkflowReactiveSwiftTesting",
"path" : "WorkflowReactiveSwift/Testing",
"product_memberships" : [
"WorkflowReactiveSwiftTesting"
],
"sources" : [
"SignalProducerWorkflowTesting.swift",
"WorkerTesting.swift"
],
"target_dependencies" : [
"WorkflowReactiveSwift",
"WorkflowTesting"
],
"type" : "library"
},
{
"c99name" : "WorkflowReactiveSwift",
"module_type" : "SwiftTarget",
"name" : "WorkflowReactiveSwift",
"path" : "WorkflowReactiveSwift/Sources",
"product_dependencies" : [
"ReactiveSwift"
],
"product_memberships" : [
"WorkflowReactiveSwift",
"WorkflowReactiveSwiftTesting"
],
"sources" : [
"Logger.swift",
"QueueScheduler+Workflow.swift",
"SignalProducerWorkflow.swift",
"SignalWorker.swift",
"Worker.swift"
],
"target_dependencies" : [
"Workflow"
],
"type" : "library"
},
{
"c99name" : "WorkflowConcurrencyTests",
"module_type" : "SwiftTarget",
"name" : "WorkflowConcurrencyTests",
"path" : "WorkflowConcurrency/Tests",
"sources" : [
"AsyncOperationWorkerTests.swift",
"WorkerTests.swift"
],
"target_dependencies" : [
"WorkflowConcurrency",
"Workflow",
"WorkflowTesting"
],
"type" : "test"
},
{
"c99name" : "WorkflowConcurrencyTestingTests",
"module_type" : "SwiftTarget",
"name" : "WorkflowConcurrencyTestingTests",
"path" : "WorkflowConcurrency/TestingTests",
"sources" : [
"TestingTests.swift"
],
"target_dependencies" : [
"WorkflowConcurrencyTesting"
],
"type" : "test"
},
{
"c99name" : "WorkflowConcurrencyTesting",
"module_type" : "SwiftTarget",
"name" : "WorkflowConcurrencyTesting",
"path" : "WorkflowConcurrency/Testing",
"product_memberships" : [
"WorkflowConcurrencyTesting"
],
"sources" : [
"WorkerTesting.swift"
],
"target_dependencies" : [
"WorkflowConcurrency",
"WorkflowTesting"
],
"type" : "library"
},
{
"c99name" : "WorkflowConcurrency",
"module_type" : "SwiftTarget",
"name" : "WorkflowConcurrency",
"path" : "WorkflowConcurrency/Sources",
"product_memberships" : [
"WorkflowConcurrency",
"WorkflowConcurrencyTesting"
],
"sources" : [
"AsyncOperationWorker.swift",
"Logger.swift",
"Worker.swift"
],
"target_dependencies" : [
"Workflow"
],
"type" : "library"
},
{
"c99name" : "WorkflowCombineTests",
"module_type" : "SwiftTarget",
"name" : "WorkflowCombineTests",
"path" : "WorkflowCombine/Tests",
"sources" : [
"PublisherTests.swift",
"WorkerTests.swift"
],
"target_dependencies" : [
"WorkflowCombineTesting"
],
"type" : "test"
},
{
"c99name" : "WorkflowCombineTestingTests",
"module_type" : "SwiftTarget",
"name" : "WorkflowCombineTestingTests",
"path" : "WorkflowCombine/TestingTests",
"sources" : [
"PublisherTests.swift",
"TestingTests.swift"
],
"target_dependencies" : [
"WorkflowCombineTesting"
],
"type" : "test"
},
{
"c99name" : "WorkflowCombineTesting",
"module_type" : "SwiftTarget",
"name" : "WorkflowCombineTesting",
"path" : "WorkflowCombine/Testing",
"product_memberships" : [
"WorkflowCombineTesting"
],
"sources" : [
"PublisherTesting.swift",
"WorkerTesting.swift"
],
"target_dependencies" : [
"WorkflowCombine",
"WorkflowTesting"
],
"type" : "library"
},
{
"c99name" : "WorkflowCombine",
"module_type" : "SwiftTarget",
"name" : "WorkflowCombine",
"path" : "WorkflowCombine/Sources",
"product_memberships" : [
"WorkflowCombine",
"WorkflowCombineTesting"
],
"sources" : [
"Logger.swift",
"Publisher+Extensions.swift",
"PublisherWorkflow.swift",
"Worker.swift"
],
"target_dependencies" : [
"Workflow"
],
"type" : "library"
},
{
"c99name" : "Workflow",
"module_type" : "SwiftTarget",
"name" : "Workflow",
"path" : "Workflow/Sources",
"product_dependencies" : [
"ReactiveSwift"
],
"product_memberships" : [
"Workflow",
"WorkflowTesting",
"WorkflowUI",
"WorkflowSwiftUI",
"WorkflowReactiveSwift",
"WorkflowReactiveSwiftTesting",
"WorkflowRxSwift",
"WorkflowRxSwiftTesting",
"WorkflowCombine",
"WorkflowCombineTesting",
"WorkflowConcurrency",
"WorkflowConcurrencyTesting",
"WorkflowSwiftUIExperimental"
],
"sources" : [
"AnyWorkflow.swift",
"AnyWorkflowConvertible.swift",
"Debugging.swift",
"DispatchQueue+Workflow.swift",
"Lifetime.swift",
"RenderContext.swift",
"Sink.swift",
"StateMutationSink.swift",
"SubtreeManager.swift",
"Workflow.swift",
"WorkflowAction.swift",
"WorkflowHost.swift",
"WorkflowLogger.swift",
"WorkflowNode.swift",
"WorkflowObserver.swift"
],
"type" : "library"
},
{
"c99name" : "ViewEnvironmentUI",
"module_type" : "SwiftTarget",
"name" : "ViewEnvironmentUI",
"path" : "ViewEnvironmentUI/Sources",
"product_memberships" : [
"WorkflowUI",
"WorkflowSwiftUI",
"ViewEnvironmentUI",
"WorkflowSwiftUIExperimental"
],
"sources" : [
"UIView+ViewEnvironmentPropagating.swift",
"UIViewController+ViewEnvironmentPropagating.swift",
"ViewEnvironmentObserving.swift",
"ViewEnvironmentPropagating.swift",
"ViewEnvironmentPropagationNode.swift"
],
"target_dependencies" : [
"ViewEnvironment"
],
"type" : "library"
},
{
"c99name" : "ViewEnvironment",
"module_type" : "SwiftTarget",
"name" : "ViewEnvironment",
"path" : "ViewEnvironment/Sources",
"product_memberships" : [
"WorkflowUI",
"WorkflowSwiftUI",
"ViewEnvironment",
"ViewEnvironmentUI",
"WorkflowSwiftUIExperimental"
],
"sources" : [
"EnvironmentValues+ViewEnvironment.swift",
"ViewEnvironment.swift",
"ViewEnvironmentKey.swift"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
Done.