Build Information
Successful build of reactiveswift-composable-architecture, reference 0.50.0 (c3f39b
), with Swift 6.1 for macOS (Xcode) using Xcode 16.3 on 27 Apr 2025 09:09:35 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme ComposableArchitecture -destination platform=macOS,arch=arm64 OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures
Build Log
EmitSwiftModule normal arm64 (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift:97:16: warning: static property 'liveValue' is not concurrency-safe because non-'Sendable' type 'any DateScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
static let liveValue = QueueScheduler.main as DateScheduler
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/ReactiveSwift/Sources/Scheduler.swift:33:17: note: protocol 'DateScheduler' does not conform to the 'Sendable' protocol
public protocol DateScheduler: Scheduler {
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ReactiveSwift'
import ReactiveSwift
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift:97:16: note: add '@MainActor' to make static property 'liveValue' part of global actor 'MainActor'
static let liveValue = QueueScheduler.main as DateScheduler
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift:97:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let liveValue = QueueScheduler.main as DateScheduler
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift:98:16: warning: static property 'testValue' is not concurrency-safe because non-'Sendable' type 'any DateScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
static let testValue = UnimplementedScheduler() as DateScheduler
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/ReactiveSwift/Sources/Scheduler.swift:33:17: note: protocol 'DateScheduler' does not conform to the 'Sendable' protocol
public protocol DateScheduler: Scheduler {
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift:98:16: note: add '@MainActor' to make static property 'testValue' part of global actor 'MainActor'
static let testValue = UnimplementedScheduler() as DateScheduler
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift:98:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let testValue = UnimplementedScheduler() as DateScheduler
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effect.swift:571:24: warning: capture of 'transform' with non-sendable type '(Action) -> T' in a '@Sendable' closure; this is an error in the Swift 6 language mode
send(transform(action))
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effect.swift:571:24: note: a function type must be marked '@Sendable' to conform to 'Sendable'
send(transform(action))
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effect.swift:571:24: warning: capture of 'transform' with non-sendable type '(Action) -> T' in an isolated closure; this is an error in the Swift 6 language mode
send(transform(action))
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effect.swift:571:24: note: a function type must be marked '@Sendable' to conform to 'Sendable'
send(transform(action))
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift:4:1: warning: extension declares a conformance of imported type 'AnyDisposable' to imported protocols 'Hashable', 'Equatable'; this will not behave correctly if the owners of 'ReactiveSwift' introduce this conformance in the future
extension AnyDisposable: Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift:4:1: note: add '@retroactive' to silence this warning
extension AnyDisposable: Hashable {
^ ~~~~~~~~
@retroactive Hashable
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift:211:15: warning: @_unsafeInheritExecutor attribute is deprecated; consider an 'isolated' parameter defaulted to '#isolation' instead; this is an error in the Swift 6 language mode
public func withTaskCancellation<T: Sendable>(
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift:286:15: warning: @_unsafeInheritExecutor attribute is deprecated; consider an 'isolated' parameter defaulted to '#isolation' instead; this is an error in the Swift 6 language mode
public func withTaskCancellation<T: Sendable>(
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift:340:29: warning: var '_cancellationCancellables' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
@_spi(Internals) public var _cancellationCancellables: [_CancelToken: Set<AnyDisposable>] = [:]
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift:340:29: note: convert '_cancellationCancellables' to a 'let' constant to make 'Sendable' shared state immutable
@_spi(Internals) public var _cancellationCancellables: [_CancelToken: Set<AnyDisposable>] = [:]
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift:340:29: note: add '@MainActor' to make var '_cancellationCancellables' part of global actor 'MainActor'
@_spi(Internals) public var _cancellationCancellables: [_CancelToken: Set<AnyDisposable>] = [:]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift:340:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
@_spi(Internals) public var _cancellationCancellables: [_CancelToken: Set<AnyDisposable>] = [:]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift:94:5: warning: var 'throttleTimes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
var throttleTimes: [AnyHashable: Any] = [:]
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift:94:5: note: convert 'throttleTimes' to a 'let' constant to make 'Sendable' shared state immutable
var throttleTimes: [AnyHashable: Any] = [:]
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift:94:5: note: add '@MainActor' to make var 'throttleTimes' part of global actor 'MainActor'
var throttleTimes: [AnyHashable: Any] = [:]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift:94:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
var throttleTimes: [AnyHashable: Any] = [:]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift:95:5: warning: var 'throttleValues' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
var throttleValues: [AnyHashable: Any] = [:]
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift:95:5: note: convert 'throttleValues' to a 'let' constant to make 'Sendable' shared state immutable
var throttleValues: [AnyHashable: Any] = [:]
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift:95:5: note: add '@MainActor' to make var 'throttleValues' part of global actor 'MainActor'
var throttleValues: [AnyHashable: Any] = [:]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift:95:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
var throttleValues: [AnyHashable: Any] = [:]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/SignalProducer.swift:351:8: warning: 'Effect' is deprecated: 'Effect' has been deprecated in favor of 'EffectTask' when 'Failure == Never', or 'EffectProducer<Output, Failure>' in general.
You are encouraged to use 'EffectTask<Action>' to model the output of your reducers, and to use Swift concurrency to model failable streams of values.
To find and replace instances of 'Effect<Action, Never>' to 'EffectTask<Action, Never>' in your codebase, use the following regular expression:
Find:
Effect<([^,]+), Never>
Replace:
EffectTask<$1>
See the migration roadmap for more information: https://github.com/pointfreeco/swift-composable-architecture/discussions/1477
) -> Effect<NewValue, NewError> {
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/SignalProducer.swift:326:11: warning: 'Effect' is deprecated: 'Effect' has been deprecated in favor of 'EffectTask' when 'Failure == Never', or 'EffectProducer<Output, Failure>' in general.
You are encouraged to use 'EffectTask<Action>' to model the output of your reducers, and to use Swift concurrency to model failable streams of values.
To find and replace instances of 'Effect<Action, Never>' to 'EffectTask<Action, Never>' in your codebase, use the following regular expression:
Find:
Effect<([^,]+), Never>
Replace:
EffectTask<$1>
See the migration roadmap for more information: https://github.com/pointfreeco/swift-composable-architecture/discussions/1477
extension Effect {
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift:53:3: warning: extension declares a conformance of imported type 'TextState' to imported protocol 'View'; this will not behave correctly if the owners of '_SwiftUINavigationState' introduce this conformance in the future
extension TextState: View {
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift:53:3: note: add '@retroactive' to silence this warning
extension TextState: View {
^ ~~~~
@retroactive View
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/RuntimeWarnings.swift:47:9: warning: let 'dso' is not concurrency-safe because non-'Sendable' type 'UnsafeMutableRawPointer' may have shared mutable state; this is an error in the Swift 6 language mode
let dso = { () -> UnsafeMutableRawPointer in
^
Swift.UnsafeMutableRawPointer:1:23: note: struct 'UnsafeMutableRawPointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafeMutableRawPointer : _Pointer {
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/RuntimeWarnings.swift:47:9: note: add '@MainActor' to make let 'dso' part of global actor 'MainActor'
let dso = { () -> UnsafeMutableRawPointer in
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/RuntimeWarnings.swift:47:9: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let dso = { () -> UnsafeMutableRawPointer in
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/RuntimeWarnings.swift:26:11: warning: cannot use conformance of 'String' to 'CVarArg' here; 'Foundation' was not imported by this file; this is an error in the Swift 6 language mode
message
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/RuntimeWarnings.swift:26:11: note: The missing import of module 'Foundation' will be added implicitly
message
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:658:18: warning: generic parameter 'ScopedState' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
func rescope<ScopedState, ScopedAction, RescopedState, RescopedAction>(
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:601:28: note: 'ScopedState' previously declared here
RootState, RootAction, ScopedState, ScopedAction
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:658:31: warning: generic parameter 'ScopedAction' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
func rescope<ScopedState, ScopedAction, RescopedState, RescopedAction>(
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:601:41: note: 'ScopedAction' previously declared here
RootState, RootAction, ScopedState, ScopedAction
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/ForEachStore.swift:84:16: warning: main actor-isolated property 'data' cannot be used to satisfy nonisolated requirement from protocol 'DynamicViewContent'; this is an error in the Swift 6 language mode
public let data: Data
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/ForEachStore.swift:83:6: note: add '@preconcurrency' to the 'DynamicViewContent' conformance to defer isolation checking to run time
>: DynamicViewContent {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
@ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:2406:21: warning: static property 'off' is not concurrency-safe because non-'Sendable' type 'Exhaustivity' may have shared mutable state; this is an error in the Swift 6 language mode
public static let off = Self.off(showSkippedAssertions: false)
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:2376:13: note: consider making enum 'Exhaustivity' conform to the 'Sendable' protocol
public enum Exhaustivity: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:2406:21: note: add '@MainActor' to make static property 'off' part of global actor 'MainActor'
public static let off = Self.off(showSkippedAssertions: false)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:2406:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let off = Self.off(showSkippedAssertions: false)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestSupport/ImmediateScheduler.swift:7:1: warning: extension declares a conformance of imported type 'ImmediateScheduler' to imported protocol 'DateScheduler'; this will not behave correctly if the owners of 'ReactiveSwift' introduce this conformance in the future
extension ReactiveSwift.ImmediateScheduler: DateScheduler {
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestSupport/ImmediateScheduler.swift:7:1: note: add '@retroactive' to silence this warning
extension ReactiveSwift.ImmediateScheduler: DateScheduler {
^ ~~~~~~~~~~~~~
@retroactive DateScheduler
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effect.swift:571:24: warning: sending 'transform' risks causing data races; this is an error in the Swift 6 language mode
send(transform(action))
~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effect.swift:571:24: note: task-isolated 'transform' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
send(transform(action))
^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/SignalProducer.swift:18:19: warning: sending 'observer' risks causing data races; this is an error in the Swift 6 language mode
defer { observer.sendCompleted() }
~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/SignalProducer.swift:18:19: note: task-isolated 'observer' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
defer { observer.sendCompleted() }
^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: warning: sending '$input_value' risks causing data races; this is an error in the Swift 6 language mode
@ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: note: sending task-isolated '$input_value' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
@ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
^
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745744972198415-swift-frontend-ComposableArchitecture-all-arm64_apple_macos10.15-swiftmodule-Onone-1508522836.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 1.5691 seconds (1.7293 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.2572 ( 21.8%) 0.0523 ( 13.4%) 0.3095 ( 19.7%) 0.3573 ( 20.7%) perform-sema
0.2559 ( 21.7%) 0.0518 ( 13.3%) 0.3077 ( 19.6%) 0.3556 ( 20.6%) Type checking and Semantic analysis
0.2051 ( 17.4%) 0.0398 ( 10.2%) 0.2449 ( 15.6%) 0.2924 ( 16.9%) typecheck-decl
0.0643 ( 5.5%) 0.0848 ( 21.8%) 0.1492 ( 9.5%) 0.1531 ( 8.9%) parse-and-resolve-imports
0.0616 ( 5.2%) 0.0830 ( 21.3%) 0.1446 ( 9.2%) 0.1479 ( 8.6%) Import resolution
0.0734 ( 6.2%) 0.0172 ( 4.4%) 0.0905 ( 5.8%) 0.0911 ( 5.3%) typecheck-stmt
0.0668 ( 5.7%) 0.0118 ( 3.0%) 0.0787 ( 5.0%) 0.0847 ( 4.9%) SILGen
0.0559 ( 4.7%) 0.0182 ( 4.7%) 0.0742 ( 4.7%) 0.0745 ( 4.3%) typecheck-expr
0.0417 ( 3.5%) 0.0051 ( 1.3%) 0.0469 ( 3.0%) 0.0471 ( 2.7%) SIL optimization
0.0303 ( 2.6%) 0.0045 ( 1.1%) 0.0347 ( 2.2%) 0.0366 ( 2.1%) SILGen-function
0.0243 ( 2.1%) 0.0059 ( 1.5%) 0.0302 ( 1.9%) 0.0303 ( 1.7%) build-rewrite-system
0.0117 ( 1.0%) 0.0034 ( 0.9%) 0.0151 ( 1.0%) 0.0151 ( 0.9%) precheck-target
0.0058 ( 0.5%) 0.0070 ( 1.8%) 0.0128 ( 0.8%) 0.0134 ( 0.8%) import-clang-decl
0.0111 ( 0.9%) 0.0012 ( 0.3%) 0.0122 ( 0.8%) 0.0123 ( 0.7%) Serialization, swiftmodule
0.0078 ( 0.7%) 0.0009 ( 0.2%) 0.0087 ( 0.6%) 0.0088 ( 0.5%) Serialization, swiftdoc
0.0051 ( 0.4%) 0.0005 ( 0.1%) 0.0056 ( 0.4%) 0.0056 ( 0.3%) Serialization, swiftsourceinfo
0.0009 ( 0.1%) 0.0014 ( 0.4%) 0.0023 ( 0.1%) 0.0023 ( 0.1%) load-stdlib
0.0005 ( 0.0%) 0.0000 ( 0.0%) 0.0005 ( 0.0%) 0.0005 ( 0.0%) associated-type-inference
0.0002 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) module-populate-cache
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) source-file-populate-cache
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) load-all-members
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) SIL verification, pre-optimization
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) perform-whole-module-type-checking
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-module-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) get-conformance-access-path
1.1801 (100.0%) 0.3890 (100.0%) 1.5691 (100.0%) 1.7293 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 0.6383 seconds (0.6966 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.4757 (100.0%) 0.1626 (100.0%) 0.6383 (100.0%) 0.6966 (100.0%) Building Target
0.4757 (100.0%) 0.1626 (100.0%) 0.6383 (100.0%) 0.6966 (100.0%) Total
SwiftCompile normal arm64 Compiling\ MainQueue.swift,\ Effect.swift,\ Animation.swift,\ Cancellation.swift,\ Debouncing.swift,\ Deferring.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effect.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Animation.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Debouncing.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Deferring.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745744972218004-swift-frontend-ComposableArchitecture-MainQueue.swift-arm64_apple_macos10.15-o-Onone-2476988590.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 0.8315 seconds (0.8608 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0642 ( 11.6%) 0.0893 ( 32.1%) 0.1535 ( 18.5%) 0.1642 ( 19.1%) parse-and-resolve-imports
0.0622 ( 11.2%) 0.0879 ( 31.6%) 0.1501 ( 18.0%) 0.1607 ( 18.7%) Import resolution
0.0956 ( 17.3%) 0.0239 ( 8.6%) 0.1195 ( 14.4%) 0.1200 ( 13.9%) perform-sema
0.0952 ( 17.2%) 0.0238 ( 8.6%) 0.1190 ( 14.3%) 0.1195 ( 13.9%) Type checking and Semantic analysis
0.0631 ( 11.4%) 0.0135 ( 4.9%) 0.0766 ( 9.2%) 0.0767 ( 8.9%) typecheck-stmt
0.0380 ( 6.9%) 0.0104 ( 3.7%) 0.0485 ( 5.8%) 0.0489 ( 5.7%) typecheck-decl
0.0364 ( 6.6%) 0.0097 ( 3.5%) 0.0461 ( 5.5%) 0.0472 ( 5.5%) IRGen
0.0284 ( 5.1%) 0.0032 ( 1.1%) 0.0316 ( 3.8%) 0.0342 ( 4.0%) SILGen
0.0216 ( 3.9%) 0.0051 ( 1.8%) 0.0267 ( 3.2%) 0.0269 ( 3.1%) typecheck-expr
0.0206 ( 3.7%) 0.0022 ( 0.8%) 0.0228 ( 2.7%) 0.0252 ( 2.9%) SILGen-function
0.0109 ( 2.0%) 0.0002 ( 0.1%) 0.0111 ( 1.3%) 0.0111 ( 1.3%) SIL optimization
0.0036 ( 0.7%) 0.0055 ( 2.0%) 0.0091 ( 1.1%) 0.0091 ( 1.1%) import-clang-decl
0.0070 ( 1.3%) 0.0003 ( 0.1%) 0.0073 ( 0.9%) 0.0073 ( 0.8%) precheck-target
0.0052 ( 0.9%) 0.0016 ( 0.6%) 0.0067 ( 0.8%) 0.0067 ( 0.8%) build-rewrite-system
0.0009 ( 0.2%) 0.0015 ( 0.5%) 0.0024 ( 0.3%) 0.0025 ( 0.3%) load-stdlib
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) module-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) load-all-members
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) associated-type-inference
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) get-conformance-access-path
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, pre-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) perform-whole-module-type-checking
0.5534 (100.0%) 0.2781 (100.0%) 0.8315 (100.0%) 0.8608 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 0.6189 seconds (0.6455 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.4594 (100.0%) 0.1595 (100.0%) 0.6189 (100.0%) 0.6455 (100.0%) Building Target
0.4594 (100.0%) 0.1595 (100.0%) 0.6189 (100.0%) 0.6455 (100.0%) Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift:97:16: warning: static property 'liveValue' is not concurrency-safe because non-'Sendable' type 'any DateScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
static let liveValue = QueueScheduler.main as DateScheduler
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/ReactiveSwift/Sources/Scheduler.swift:33:17: note: protocol 'DateScheduler' does not conform to the 'Sendable' protocol
public protocol DateScheduler: Scheduler {
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift:2:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ReactiveSwift'
import ReactiveSwift
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift:97:16: note: add '@MainActor' to make static property 'liveValue' part of global actor 'MainActor'
static let liveValue = QueueScheduler.main as DateScheduler
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift:97:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let liveValue = QueueScheduler.main as DateScheduler
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift:98:16: warning: static property 'testValue' is not concurrency-safe because non-'Sendable' type 'any DateScheduler' may have shared mutable state; this is an error in the Swift 6 language mode
static let testValue = UnimplementedScheduler() as DateScheduler
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/ReactiveSwift/Sources/Scheduler.swift:33:17: note: protocol 'DateScheduler' does not conform to the 'Sendable' protocol
public protocol DateScheduler: Scheduler {
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift:98:16: note: add '@MainActor' to make static property 'testValue' part of global actor 'MainActor'
static let testValue = UnimplementedScheduler() as DateScheduler
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift:98:16: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let testValue = UnimplementedScheduler() as DateScheduler
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift:92:11: warning: type 'any DateScheduler' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
get { self[MainQueueKey.self] }
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/ReactiveSwift/Sources/Scheduler.swift:33:17: note: protocol 'DateScheduler' does not conform to the 'Sendable' protocol
public protocol DateScheduler: Scheduler {
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Dependencies/MainQueue.swift:93:11: warning: type 'any DateScheduler' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
set { self[MainQueueKey.self] = newValue }
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/ReactiveSwift/Sources/Scheduler.swift:33:17: note: protocol 'DateScheduler' does not conform to the 'Sendable' protocol
public protocol DateScheduler: Scheduler {
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effect.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effect.swift:571:24: warning: capture of 'transform' with non-sendable type '(Action) -> T' in a '@Sendable' closure; this is an error in the Swift 6 language mode
send(transform(action))
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effect.swift:571:24: note: a function type must be marked '@Sendable' to conform to 'Sendable'
send(transform(action))
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effect.swift:571:24: warning: capture of 'transform' with non-sendable type '(Action) -> T' in an isolated closure; this is an error in the Swift 6 language mode
send(transform(action))
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effect.swift:571:24: note: a function type must be marked '@Sendable' to conform to 'Sendable'
send(transform(action))
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effect.swift:571:24: warning: sending 'transform' risks causing data races; this is an error in the Swift 6 language mode
send(transform(action))
~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effect.swift:571:24: note: task-isolated 'transform' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
send(transform(action))
^~~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Animation.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Animation.swift:66:33: warning: capture of 'transaction' with non-sendable type 'Transaction' in a '@Sendable' closure; this is an error in the Swift 6 language mode
withTransaction(transaction) {
^
SwiftUICore.Transaction:2:23: note: struct 'Transaction' does not conform to the 'Sendable' protocol
@frozen public struct Transaction {
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift:4:1: warning: extension declares a conformance of imported type 'AnyDisposable' to imported protocols 'Hashable', 'Equatable'; this will not behave correctly if the owners of 'ReactiveSwift' introduce this conformance in the future
extension AnyDisposable: Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift:4:1: note: add '@retroactive' to silence this warning
extension AnyDisposable: Hashable {
^ ~~~~~~~~
@retroactive Hashable
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift:211:15: warning: @_unsafeInheritExecutor attribute is deprecated; consider an 'isolated' parameter defaulted to '#isolation' instead; this is an error in the Swift 6 language mode
public func withTaskCancellation<T: Sendable>(
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift:286:15: warning: @_unsafeInheritExecutor attribute is deprecated; consider an 'isolated' parameter defaulted to '#isolation' instead; this is an error in the Swift 6 language mode
public func withTaskCancellation<T: Sendable>(
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift:340:29: warning: var '_cancellationCancellables' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
@_spi(Internals) public var _cancellationCancellables: [_CancelToken: Set<AnyDisposable>] = [:]
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift:340:29: note: convert '_cancellationCancellables' to a 'let' constant to make 'Sendable' shared state immutable
@_spi(Internals) public var _cancellationCancellables: [_CancelToken: Set<AnyDisposable>] = [:]
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift:340:29: note: add '@MainActor' to make var '_cancellationCancellables' part of global actor 'MainActor'
@_spi(Internals) public var _cancellationCancellables: [_CancelToken: Set<AnyDisposable>] = [:]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift:340:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
@_spi(Internals) public var _cancellationCancellables: [_CancelToken: Set<AnyDisposable>] = [:]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Cancellation.swift:98:42: warning: capture of 'id' with non-sendable type 'AnyHashable' in a '@Sendable' closure; this is an error in the Swift 6 language mode
await withTaskCancellation(id: id, cancelInFlight: cancelInFlight) {
^
Swift.AnyHashable:1:23: note: struct 'AnyHashable' does not conform to the 'Sendable' protocol
@frozen public struct AnyHashable {
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Debouncing.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Deferring.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 Compiling\ ImmediateScheduler.swift,\ AlertStateUIKit.swift,\ IfLetUIKit.swift,\ UIKitAnimationScheduler.swift,\ ViewStore.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestSupport/ImmediateScheduler.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/AlertStateUIKit.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/IfLetUIKit.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/UIKitAnimationScheduler.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ViewStore.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745744972219512-swift-frontend-ComposableArchitecture-ImmediateScheduler.swift-arm64_apple_macos10.15-o-Onone-1339349765.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 0.7174 seconds (0.7295 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0656 ( 14.2%) 0.0861 ( 33.9%) 0.1517 ( 21.1%) 0.1569 ( 21.5%) parse-and-resolve-imports
0.0632 ( 13.7%) 0.0841 ( 33.1%) 0.1473 ( 20.5%) 0.1525 ( 20.9%) Import resolution
0.0692 ( 14.9%) 0.0179 ( 7.0%) 0.0870 ( 12.1%) 0.0876 ( 12.0%) perform-sema
0.0688 ( 14.9%) 0.0178 ( 7.0%) 0.0866 ( 12.1%) 0.0871 ( 11.9%) Type checking and Semantic analysis
0.0447 ( 9.6%) 0.0092 ( 3.6%) 0.0539 ( 7.5%) 0.0539 ( 7.4%) typecheck-stmt
0.0346 ( 7.5%) 0.0061 ( 2.4%) 0.0407 ( 5.7%) 0.0407 ( 5.6%) typecheck-expr
0.0278 ( 6.0%) 0.0111 ( 4.4%) 0.0389 ( 5.4%) 0.0389 ( 5.3%) IRGen
0.0272 ( 5.9%) 0.0087 ( 3.4%) 0.0359 ( 5.0%) 0.0365 ( 5.0%) typecheck-decl
0.0207 ( 4.5%) 0.0022 ( 0.9%) 0.0229 ( 3.2%) 0.0229 ( 3.1%) SILGen
0.0151 ( 3.3%) 0.0014 ( 0.5%) 0.0164 ( 2.3%) 0.0164 ( 2.3%) SILGen-function
0.0093 ( 2.0%) 0.0017 ( 0.7%) 0.0110 ( 1.5%) 0.0110 ( 1.5%) precheck-target
0.0031 ( 0.7%) 0.0050 ( 1.9%) 0.0080 ( 1.1%) 0.0080 ( 1.1%) import-clang-decl
0.0074 ( 1.6%) 0.0001 ( 0.0%) 0.0075 ( 1.0%) 0.0075 ( 1.0%) SIL optimization
0.0051 ( 1.1%) 0.0014 ( 0.5%) 0.0065 ( 0.9%) 0.0066 ( 0.9%) build-rewrite-system
0.0010 ( 0.2%) 0.0018 ( 0.7%) 0.0028 ( 0.4%) 0.0029 ( 0.4%) load-stdlib
0.0002 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) module-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) associated-type-inference
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, pre-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) perform-whole-module-type-checking
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
0.4630 (100.0%) 0.2544 (100.0%) 0.7174 (100.0%) 0.7295 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 0.4329 seconds (0.4389 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.2943 (100.0%) 0.1387 (100.0%) 0.4329 (100.0%) 0.4389 (100.0%) Building Target
0.2943 (100.0%) 0.1387 (100.0%) 0.4329 (100.0%) 0.4389 (100.0%) Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestSupport/ImmediateScheduler.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestSupport/ImmediateScheduler.swift:7:1: warning: extension declares a conformance of imported type 'ImmediateScheduler' to imported protocol 'DateScheduler'; this will not behave correctly if the owners of 'ReactiveSwift' introduce this conformance in the future
extension ReactiveSwift.ImmediateScheduler: DateScheduler {
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestSupport/ImmediateScheduler.swift:7:1: note: add '@retroactive' to silence this warning
extension ReactiveSwift.ImmediateScheduler: DateScheduler {
^ ~~~~~~~~~~~~~
@retroactive DateScheduler
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/AlertStateUIKit.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/IfLetUIKit.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/UIKitAnimationScheduler.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ViewStore.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ViewStore.swift:446:12: warning: non-sendable result type 'ViewState?' cannot be sent from nonisolated context in call to instance method 'first(where:)'; this is an error in the Swift 6 language mode
.first(where: { !predicate($0) })
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ViewStore.swift:69:30: note: consider making generic parameter 'ViewState' conform to the 'Sendable' protocol
public final class ViewStore<ViewState, ViewAction> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ViewStore.swift:466:11: warning: capture of 'cancellable' with non-sendable type 'Box<(any Disposable)?>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
cancellable.wrappedValue?.dispose()
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Box.swift:1:13: note: generic class 'Box' does not conform to the 'Sendable' protocol
final class Box<Wrapped> {
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ViewStore.swift:505:24: warning: main actor-isolated subscript 'subscript(dynamicMember:)' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
.projectedValue[get: .init(rawValue: get), send: .init(rawValue: valueToAction)]
^
SwiftUICore.ObservedObject.Wrapper.subscript:3:35: note: subscript declared here
@MainActor @preconcurrency public subscript<Subject>(dynamicMember keyPath: ReferenceWritableKeyPath<ObjectType, Subject>) -> Binding<Subject> { get } }
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ViewStore.swift:500:17: note: add '@MainActor' to make instance method 'binding(get:send:)' part of global actor 'MainActor'
public func binding<Value>(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ViewStore.swift:505:10: warning: main actor-isolated property 'projectedValue' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
.projectedValue[get: .init(rawValue: get), send: .init(rawValue: valueToAction)]
^
SwiftUICore.ObservedObject.projectedValue:2:39: note: property declared here
@MainActor @preconcurrency public var projectedValue: ObservedObject<ObjectType>.Wrapper { get }}
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ViewStore.swift:500:17: note: add '@MainActor' to make instance method 'binding(get:send:)' part of global actor 'MainActor'
public func binding<Value>(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ViewStore.swift:504:7: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
ObservedObject(wrappedValue: self)
^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ViewStore.swift:500:17: note: add '@MainActor' to make instance method 'binding(get:send:)' part of global actor 'MainActor'
public func binding<Value>(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ViewStore.swift:446:12: warning: sending value of non-Sendable type '(ViewState) async -> Bool' risks causing data races; this is an error in the Swift 6 language mode
.first(where: { !predicate($0) })
~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ViewStore.swift:446:12: note: sending main actor-isolated value of non-Sendable type '(ViewState) async -> Bool' to nonisolated callee risks causing races in between main actor-isolated and nonisolated uses
.first(where: { !predicate($0) })
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ViewStore.swift:446:12: warning: sending value of non-Sendable type 'AsyncStream<ViewState>' risks causing data races; this is an error in the Swift 6 language mode
.first(where: { !predicate($0) })
~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ViewStore.swift:446:12: note: sending main actor-isolated value of non-Sendable type 'AsyncStream<ViewState>' to nonisolated callee risks causing races in between main actor-isolated and nonisolated uses
.first(where: { !predicate($0) })
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ViewStore.swift:504:7: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
ObservedObject(wrappedValue: self)
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ViewStore.swift:504:7: note: sending task-isolated 'self' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
ObservedObject(wrappedValue: self)
^
SwiftCompile normal arm64 Compiling\ Throttling.swift,\ Timer.swift,\ SignalProducer.swift,\ TaskResult.swift,\ Binding+IsPresent.swift,\ Box.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Timer.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/SignalProducer.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/TaskResult.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Binding+IsPresent.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Box.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745744972248338-swift-frontend-ComposableArchitecture-Throttling.swift-arm64_apple_macos10.15-o-Onone-2538959612.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 0.7335 seconds (0.8483 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0660 ( 14.3%) 0.0924 ( 34.0%) 0.1584 ( 21.6%) 0.1608 ( 19.0%) parse-and-resolve-imports
0.0631 ( 13.7%) 0.0902 ( 33.2%) 0.1533 ( 20.9%) 0.1557 ( 18.4%) Import resolution
0.0763 ( 16.5%) 0.0197 ( 7.3%) 0.0960 ( 13.1%) 0.1322 ( 15.6%) perform-sema
0.0759 ( 16.4%) 0.0197 ( 7.2%) 0.0955 ( 13.0%) 0.1317 ( 15.5%) Type checking and Semantic analysis
0.0552 ( 12.0%) 0.0119 ( 4.4%) 0.0671 ( 9.1%) 0.0676 ( 8.0%) typecheck-stmt
0.0181 ( 3.9%) 0.0073 ( 2.7%) 0.0253 ( 3.5%) 0.0610 ( 7.2%) typecheck-decl
0.0285 ( 6.2%) 0.0079 ( 2.9%) 0.0365 ( 5.0%) 0.0369 ( 4.4%) IRGen
0.0197 ( 4.3%) 0.0020 ( 0.7%) 0.0217 ( 3.0%) 0.0217 ( 2.6%) SILGen
0.0140 ( 3.0%) 0.0014 ( 0.5%) 0.0154 ( 2.1%) 0.0154 ( 1.8%) SILGen-function
0.0109 ( 2.4%) 0.0036 ( 1.3%) 0.0145 ( 2.0%) 0.0149 ( 1.8%) precheck-target
0.0085 ( 1.8%) 0.0051 ( 1.9%) 0.0136 ( 1.9%) 0.0137 ( 1.6%) typecheck-expr
0.0092 ( 2.0%) 0.0036 ( 1.3%) 0.0127 ( 1.7%) 0.0127 ( 1.5%) build-rewrite-system
0.0119 ( 2.6%) 0.0001 ( 0.1%) 0.0121 ( 1.6%) 0.0123 ( 1.4%) SIL optimization
0.0028 ( 0.6%) 0.0041 ( 1.5%) 0.0069 ( 0.9%) 0.0069 ( 0.8%) import-clang-decl
0.0010 ( 0.2%) 0.0027 ( 1.0%) 0.0037 ( 0.5%) 0.0038 ( 0.4%) load-stdlib
0.0000 ( 0.0%) 0.0002 ( 0.1%) 0.0002 ( 0.0%) 0.0006 ( 0.1%) source-file-populate-cache
0.0002 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) module-populate-cache
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) SIL verification, pre-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) load-all-members
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) get-conformance-access-path
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) associated-type-inference
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) perform-whole-module-type-checking
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
0.4616 (100.0%) 0.2719 (100.0%) 0.7335 (100.0%) 0.8483 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 0.5002 seconds (0.5450 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.3453 (100.0%) 0.1549 (100.0%) 0.5002 (100.0%) 0.5450 (100.0%) Building Target
0.3453 (100.0%) 0.1549 (100.0%) 0.5002 (100.0%) 0.5450 (100.0%) Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift:94:5: warning: var 'throttleTimes' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
var throttleTimes: [AnyHashable: Any] = [:]
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift:94:5: note: convert 'throttleTimes' to a 'let' constant to make 'Sendable' shared state immutable
var throttleTimes: [AnyHashable: Any] = [:]
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift:94:5: note: add '@MainActor' to make var 'throttleTimes' part of global actor 'MainActor'
var throttleTimes: [AnyHashable: Any] = [:]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift:94:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
var throttleTimes: [AnyHashable: Any] = [:]
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift:95:5: warning: var 'throttleValues' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
var throttleValues: [AnyHashable: Any] = [:]
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift:95:5: note: convert 'throttleValues' to a 'let' constant to make 'Sendable' shared state immutable
var throttleValues: [AnyHashable: Any] = [:]
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift:95:5: note: add '@MainActor' to make var 'throttleValues' part of global actor 'MainActor'
var throttleValues: [AnyHashable: Any] = [:]
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Throttling.swift:95:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
var throttleValues: [AnyHashable: Any] = [:]
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/Publisher/Timer.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/SignalProducer.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/SignalProducer.swift:351:8: warning: 'Effect' is deprecated: 'Effect' has been deprecated in favor of 'EffectTask' when 'Failure == Never', or 'EffectProducer<Output, Failure>' in general.
You are encouraged to use 'EffectTask<Action>' to model the output of your reducers, and to use Swift concurrency to model failable streams of values.
To find and replace instances of 'Effect<Action, Never>' to 'EffectTask<Action, Never>' in your codebase, use the following regular expression:
Find:
Effect<([^,]+), Never>
Replace:
EffectTask<$1>
See the migration roadmap for more information: https://github.com/pointfreeco/swift-composable-architecture/discussions/1477
) -> Effect<NewValue, NewError> {
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/SignalProducer.swift:326:11: warning: 'Effect' is deprecated: 'Effect' has been deprecated in favor of 'EffectTask' when 'Failure == Never', or 'EffectProducer<Output, Failure>' in general.
You are encouraged to use 'EffectTask<Action>' to model the output of your reducers, and to use Swift concurrency to model failable streams of values.
To find and replace instances of 'Effect<Action, Never>' to 'EffectTask<Action, Never>' in your codebase, use the following regular expression:
Find:
Effect<([^,]+), Never>
Replace:
EffectTask<$1>
See the migration roadmap for more information: https://github.com/pointfreeco/swift-composable-architecture/discussions/1477
extension Effect {
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/SignalProducer.swift:675:11: warning: capture of 'disposable' with non-sendable type 'any Disposable' in a '@Sendable' closure; this is an error in the Swift 6 language mode
disposable.dispose()
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/ReactiveSwift/Sources/Disposable.swift:11:17: note: protocol 'Disposable' does not conform to the 'Sendable' protocol
public protocol Disposable: AnyObject {
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/SignalProducer.swift:1:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'ReactiveSwift'
import ReactiveSwift
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/SignalProducer.swift:697:11: warning: capture of 'disposable' with non-sendable type 'any Disposable' in a '@Sendable' closure; this is an error in the Swift 6 language mode
disposable.dispose()
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/ReactiveSwift/Sources/Disposable.swift:11:17: note: protocol 'Disposable' does not conform to the 'Sendable' protocol
public protocol Disposable: AnyObject {
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/SignalProducer.swift:18:19: warning: sending 'observer' risks causing data races; this is an error in the Swift 6 language mode
defer { observer.sendCompleted() }
~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/SignalProducer.swift:18:19: note: task-isolated 'observer' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
defer { observer.sendCompleted() }
^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/SignalProducer.swift:666:26: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
continuation.yield(value)
~~~~~~~~~~~~~^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/SignalProducer.swift:666:26: note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
continuation.yield(value)
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/SignalProducer.swift:688:26: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
continuation.yield(value)
~~~~~~~~~~~~~^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/SignalProducer.swift:688:26: note: task-isolated 'value' is passed as a 'sending' parameter; Uses in callee may race with later task-isolated uses
continuation.yield(value)
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effects/TaskResult.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Binding+IsPresent.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Binding+IsPresent.swift:7:16: warning: capture of 'self' with non-sendable type 'Binding<Optional<Wrapped>>' in a '@Sendable' closure
get: { self.wrappedValue != nil },
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Binding+IsPresent.swift:5:20: note: consider making generic parameter 'Wrapped' conform to the 'Sendable' protocol
func isPresent<Wrapped>() -> Binding<Bool> where Value == Wrapped? {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Binding+IsPresent.swift:10:11: warning: capture of 'self' with non-sendable type 'Binding<Optional<Wrapped>>' in a '@Sendable' closure
self.transaction(transaction).wrappedValue = nil
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Binding+IsPresent.swift:5:20: note: consider making generic parameter 'Wrapped' conform to the 'Sendable' protocol
func isPresent<Wrapped>() -> Binding<Bool> where Value == Wrapped? {
^
: Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Box.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 Compiling\ DebugReducer.swift,\ DependencyKeyWritingReducer.swift,\ EmptyReducer.swift,\ ForEachReducer.swift,\ IfCaseLetReducer.swift,\ IfLetReducer.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/DebugReducer.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/DependencyKeyWritingReducer.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/EmptyReducer.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/ForEachReducer.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/IfCaseLetReducer.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/IfLetReducer.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745744972253489-swift-frontend-ComposableArchitecture-DebugReducer.swift-arm64_apple_macos10.15-o-Onone-283856986.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 0.6684 seconds (0.6743 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0650 ( 15.9%) 0.0929 ( 35.7%) 0.1578 ( 23.6%) 0.1599 ( 23.7%) parse-and-resolve-imports
0.0623 ( 15.3%) 0.0891 ( 34.3%) 0.1514 ( 22.6%) 0.1534 ( 22.8%) Import resolution
0.0595 ( 14.6%) 0.0172 ( 6.6%) 0.0768 ( 11.5%) 0.0772 ( 11.5%) perform-sema
0.0591 ( 14.5%) 0.0172 ( 6.6%) 0.0763 ( 11.4%) 0.0767 ( 11.4%) Type checking and Semantic analysis
0.0423 ( 10.4%) 0.0136 ( 5.2%) 0.0559 ( 8.4%) 0.0563 ( 8.3%) typecheck-stmt
0.0276 ( 6.8%) 0.0077 ( 3.0%) 0.0353 ( 5.3%) 0.0353 ( 5.2%) IRGen
0.0251 ( 6.1%) 0.0064 ( 2.5%) 0.0315 ( 4.7%) 0.0316 ( 4.7%) typecheck-expr
0.0182 ( 4.4%) 0.0018 ( 0.7%) 0.0200 ( 3.0%) 0.0200 ( 3.0%) SILGen
0.0149 ( 3.6%) 0.0034 ( 1.3%) 0.0183 ( 2.7%) 0.0183 ( 2.7%) typecheck-decl
0.0092 ( 2.3%) 0.0028 ( 1.1%) 0.0121 ( 1.8%) 0.0122 ( 1.8%) build-rewrite-system
0.0104 ( 2.5%) 0.0007 ( 0.3%) 0.0111 ( 1.7%) 0.0111 ( 1.6%) SILGen-function
0.0069 ( 1.7%) 0.0001 ( 0.0%) 0.0070 ( 1.0%) 0.0070 ( 1.0%) SIL optimization
0.0023 ( 0.6%) 0.0040 ( 1.5%) 0.0063 ( 0.9%) 0.0066 ( 1.0%) import-clang-decl
0.0044 ( 1.1%) 0.0007 ( 0.3%) 0.0051 ( 0.8%) 0.0051 ( 0.8%) precheck-target
0.0010 ( 0.2%) 0.0022 ( 0.9%) 0.0032 ( 0.5%) 0.0033 ( 0.5%) load-stdlib
0.0002 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) module-populate-cache
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) associated-type-inference
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, pre-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) get-conformance-access-path
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) perform-whole-module-type-checking
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
0.4085 (100.0%) 0.2599 (100.0%) 0.6684 (100.0%) 0.6743 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 0.4420 seconds (0.4479 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.2948 (100.0%) 0.1473 (100.0%) 0.4420 (100.0%) 0.4479 (100.0%) Building Target
0.2948 (100.0%) 0.1473 (100.0%) 0.4420 (100.0%) 0.4479 (100.0%) Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/DebugReducer.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/DependencyKeyWritingReducer.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/EmptyReducer.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/ForEachReducer.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/IfCaseLetReducer.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/IfLetReducer.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 Compiling\ OpenExistential.swift,\ RuntimeWarnings.swift,\ TaskCancellableValue.swift,\ TypeName.swift,\ AnyReducer.swift,\ AnyReducerBinding.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/OpenExistential.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/RuntimeWarnings.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/TaskCancellableValue.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/TypeName.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducer.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerBinding.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745744972255831-swift-frontend-ComposableArchitecture-OpenExistential.swift-arm64_apple_macos10.15-o-Onone-1139514943.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 0.7147 seconds (0.7281 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0654 ( 15.1%) 0.0946 ( 33.5%) 0.1600 ( 22.4%) 0.1656 ( 22.7%) parse-and-resolve-imports
0.0627 ( 14.5%) 0.0925 ( 32.7%) 0.1552 ( 21.7%) 0.1609 ( 22.1%) Import resolution
0.0650 ( 15.1%) 0.0204 ( 7.2%) 0.0854 ( 12.0%) 0.0857 ( 11.8%) perform-sema
0.0646 ( 14.9%) 0.0203 ( 7.2%) 0.0849 ( 11.9%) 0.0852 ( 11.7%) Type checking and Semantic analysis
0.0400 ( 9.3%) 0.0102 ( 3.6%) 0.0503 ( 7.0%) 0.0504 ( 6.9%) typecheck-stmt
0.0242 ( 5.6%) 0.0102 ( 3.6%) 0.0344 ( 4.8%) 0.0347 ( 4.8%) typecheck-decl
0.0232 ( 5.4%) 0.0091 ( 3.2%) 0.0323 ( 4.5%) 0.0327 ( 4.5%) IRGen
0.0209 ( 4.8%) 0.0094 ( 3.3%) 0.0303 ( 4.2%) 0.0305 ( 4.2%) typecheck-expr
0.0184 ( 4.3%) 0.0015 ( 0.5%) 0.0199 ( 2.8%) 0.0200 ( 2.7%) SILGen
0.0148 ( 3.4%) 0.0043 ( 1.5%) 0.0192 ( 2.7%) 0.0192 ( 2.6%) build-rewrite-system
0.0126 ( 2.9%) 0.0009 ( 0.3%) 0.0134 ( 1.9%) 0.0135 ( 1.9%) SILGen-function
0.0090 ( 2.1%) 0.0022 ( 0.8%) 0.0113 ( 1.6%) 0.0114 ( 1.6%) precheck-target
0.0034 ( 0.8%) 0.0045 ( 1.6%) 0.0079 ( 1.1%) 0.0080 ( 1.1%) import-clang-decl
0.0065 ( 1.5%) 0.0001 ( 0.0%) 0.0066 ( 0.9%) 0.0066 ( 0.9%) SIL optimization
0.0010 ( 0.2%) 0.0023 ( 0.8%) 0.0033 ( 0.5%) 0.0035 ( 0.5%) load-stdlib
0.0002 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) module-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, pre-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) get-conformance-access-path
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) perform-whole-module-type-checking
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
0.4319 (100.0%) 0.2827 (100.0%) 0.7147 (100.0%) 0.7281 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 0.4318 seconds (0.4405 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.2775 (100.0%) 0.1543 (100.0%) 0.4318 (100.0%) 0.4405 (100.0%) Building Target
0.2775 (100.0%) 0.1543 (100.0%) 0.4318 (100.0%) 0.4405 (100.0%) Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/OpenExistential.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/RuntimeWarnings.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/RuntimeWarnings.swift:47:9: warning: let 'dso' is not concurrency-safe because non-'Sendable' type 'UnsafeMutableRawPointer' may have shared mutable state; this is an error in the Swift 6 language mode
let dso = { () -> UnsafeMutableRawPointer in
^
Swift.UnsafeMutableRawPointer:1:23: note: struct 'UnsafeMutableRawPointer' does not conform to the 'Sendable' protocol
@frozen public struct UnsafeMutableRawPointer : _Pointer {
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/RuntimeWarnings.swift:47:9: note: add '@MainActor' to make let 'dso' part of global actor 'MainActor'
let dso = { () -> UnsafeMutableRawPointer in
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/RuntimeWarnings.swift:47:9: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let dso = { () -> UnsafeMutableRawPointer in
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/RuntimeWarnings.swift:26:11: warning: cannot use conformance of 'String' to 'CVarArg' here; 'Foundation' was not imported by this file; this is an error in the Swift 6 language mode
message
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/RuntimeWarnings.swift:26:11: note: The missing import of module 'Foundation' will be added implicitly
message
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/TaskCancellableValue.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/TypeName.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducer.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerBinding.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
SwiftDriverJobDiscovery normal arm64 Compiling TextState.swift (in target '_SwiftUINavigationState' from project 'swiftui-navigation')
SwiftDriver\ Compilation _SwiftUINavigationState normal arm64 com.apple.xcode.tools.swift.compiler (in target '_SwiftUINavigationState' from project 'swiftui-navigation')
cd /Users/admin/builder/spi-builder-workspace
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name _SwiftUINavigationState -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug/_SwiftUINavigationState.build/Objects-normal/arm64/_SwiftUINavigationState.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.15 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug/_SwiftUINavigationState.build/Objects-normal/arm64/_SwiftUINavigationState-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug/_SwiftUINavigationState.build/Objects-normal/arm64/_SwiftUINavigationState.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug/_SwiftUINavigationState.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug/_SwiftUINavigationState.build/Objects-normal/arm64/_SwiftUINavigationState_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug/_SwiftUINavigationState.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug/_SwiftUINavigationState.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug/_SwiftUINavigationState.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug/_SwiftUINavigationState.build/Objects-normal/arm64/_SwiftUINavigationState-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling DependencyValues.swift, Calendar.swift, Clocks.swift (in target 'Dependencies' from project 'swift-dependencies')
SwiftCompile normal arm64 Compiling\ Breakpoint.swift,\ CurrentValueRelay.swift,\ Debug.swift,\ Deprecations.swift,\ Exports.swift,\ Locking.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Breakpoint.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/CurrentValueRelay.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Debug.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Exports.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Locking.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Breakpoint.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
@ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/CurrentValueRelay.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
@ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Debug.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
@ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift:53:3: warning: extension declares a conformance of imported type 'TextState' to imported protocol 'View'; this will not behave correctly if the owners of '_SwiftUINavigationState' introduce this conformance in the future
extension TextState: View {
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift:53:3: note: add '@retroactive' to silence this warning
extension TextState: View {
^ ~~~~
@retroactive View
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift:563:36: warning: non-sendable result type 'Action' cannot be sent from nonisolated context in call to parameter 'operation'; this is an error in the Swift 6 language mode
let output = try await operation()
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Effect.swift:58:30: note: consider making generic parameter 'Action' conform to the 'Sendable' protocol
public struct EffectProducer<Action, Failure: Error> {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
@ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift:41:22: warning: sending 'value' risks causing data races; this is an error in the Swift 6 language mode
return try await operation(&value)
^~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift:41:22: note: sending 'self'-isolated 'value' to nonisolated callee risks causing data races between nonisolated and 'self'-isolated uses
return try await operation(&value)
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift:565:13: warning: sending 'observer' risks causing data races; this is an error in the Swift 6 language mode
observer.send(value: output)
~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Deprecations.swift:565:13: note: task-isolated 'observer' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
observer.send(value: output)
^~~~~~~~
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Exports.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
@ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Locking.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
@ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
^
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745744972291082-swift-frontend-ComposableArchitecture-Breakpoint.swift-arm64_apple_macos10.15-o-Onone-1960099659.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 1.2226 seconds (1.2674 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.1561 ( 18.0%) 0.0345 ( 9.6%) 0.1906 ( 15.6%) 0.1928 ( 15.2%) perform-sema
0.1557 ( 18.0%) 0.0344 ( 9.6%) 0.1901 ( 15.6%) 0.1924 ( 15.2%) Type checking and Semantic analysis
0.0666 ( 7.7%) 0.0934 ( 26.1%) 0.1601 ( 13.1%) 0.1640 ( 12.9%) parse-and-resolve-imports
0.0645 ( 7.5%) 0.0918 ( 25.7%) 0.1563 ( 12.8%) 0.1603 ( 12.6%) Import resolution
0.1159 ( 13.4%) 0.0265 ( 7.4%) 0.1424 ( 11.6%) 0.1443 ( 11.4%) typecheck-stmt
0.0789 ( 9.1%) 0.0177 ( 4.9%) 0.0966 ( 7.9%) 0.0982 ( 7.7%) typecheck-expr
0.0653 ( 7.5%) 0.0160 ( 4.5%) 0.0813 ( 6.6%) 0.0829 ( 6.5%) typecheck-decl
0.0392 ( 4.5%) 0.0096 ( 2.7%) 0.0488 ( 4.0%) 0.0586 ( 4.6%) IRGen
0.0343 ( 4.0%) 0.0045 ( 1.3%) 0.0388 ( 3.2%) 0.0423 ( 3.3%) SILGen
0.0297 ( 3.4%) 0.0093 ( 2.6%) 0.0390 ( 3.2%) 0.0402 ( 3.2%) precheck-target
0.0220 ( 2.5%) 0.0028 ( 0.8%) 0.0248 ( 2.0%) 0.0278 ( 2.2%) SILGen-function
0.0158 ( 1.8%) 0.0045 ( 1.3%) 0.0203 ( 1.7%) 0.0215 ( 1.7%) build-rewrite-system
0.0113 ( 1.3%) 0.0004 ( 0.1%) 0.0116 ( 1.0%) 0.0192 ( 1.5%) SIL optimization
0.0079 ( 0.9%) 0.0096 ( 2.7%) 0.0175 ( 1.4%) 0.0179 ( 1.4%) import-clang-decl
0.0010 ( 0.1%) 0.0022 ( 0.6%) 0.0032 ( 0.3%) 0.0035 ( 0.3%) load-stdlib
0.0004 ( 0.1%) 0.0004 ( 0.1%) 0.0008 ( 0.1%) 0.0010 ( 0.1%) load-all-members
0.0002 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) module-populate-cache
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) associated-type-inference
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) get-conformance-access-path
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, pre-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) perform-whole-module-type-checking
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
0.8651 (100.0%) 0.3574 (100.0%) 1.2226 (100.0%) 1.2674 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 0.6512 seconds (0.7085 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.4784 (100.0%) 0.1728 (100.0%) 0.6512 (100.0%) 0.7085 (100.0%) Building Target
0.4784 (100.0%) 0.1728 (100.0%) 0.6512 (100.0%) 0.7085 (100.0%) Total
SwiftCompile normal arm64 Compiling\ Identified.swift,\ IfLetStore.swift,\ SwitchStore.swift,\ WithViewStore.swift,\ TestStore.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Identified.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/IfLetStore.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/SwitchStore.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Identified.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/IfLetStore.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/SwitchStore.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
@ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:141:12: warning: main actor-isolated property 'viewStore' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
self.viewStore = ViewStore(store, removeDuplicates: isDuplicate)
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:33: note: mutation of this property is only permitted within the actor
@ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:160:27: warning: main actor-isolated property 'viewStore' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
customDump(self.viewStore.state, to: &stateDump, indent: 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:33: note: property declared here
@ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:162:37: warning: main actor-isolated property 'viewStore' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
self.previousState(self.viewStore.state)
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:33: note: property declared here
@ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:164:29: warning: main actor-isolated property 'viewStore' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
diff($0, self.viewStore.state).map { "(Changed state)\n\($0)" }
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:33: note: property declared here
@ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:184:42: warning: main actor-isolated property 'viewStore' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
return self.content(ViewStore(self.viewStore))
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:33: note: property declared here
@ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:732:12: warning: main actor-isolated property 'viewStore' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
self.viewStore.state
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:33: note: property declared here
@ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: warning: sending '$input_value' risks causing data races; this is an error in the Swift 6 language mode
@ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: note: sending task-isolated '$input_value' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
@ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:2406:21: warning: static property 'off' is not concurrency-safe because non-'Sendable' type 'Exhaustivity' may have shared mutable state; this is an error in the Swift 6 language mode
public static let off = Self.off(showSkippedAssertions: false)
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:2376:13: note: consider making enum 'Exhaustivity' conform to the 'Sendable' protocol
public enum Exhaustivity: Equatable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:2406:21: note: add '@MainActor' to make static property 'off' part of global actor 'MainActor'
public static let off = Self.off(showSkippedAssertions: false)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:2406:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let off = Self.off(showSkippedAssertions: false)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:1049:50: warning: sending value of non-Sendable type '(Void) async -> Bool' risks causing data races; this is an error in the Swift 6 language mode
await self.reducer.effectDidSubscribe.stream.first(where: { _ in true })
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:1049:50: note: sending main actor-isolated value of non-Sendable type '(Void) async -> Bool' to nonisolated callee risks causing races in between main actor-isolated and nonisolated uses
await self.reducer.effectDidSubscribe.stream.first(where: { _ in true })
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:1436:16: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
await self.receiveAction(timeout: nanoseconds, file: file, line: line)
~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:1436:16: note: sending main actor-isolated 'self' to nonisolated instance method 'receiveAction(timeout:file:line:)' risks causing data races between nonisolated and main actor-isolated uses
await self.receiveAction(timeout: nanoseconds, file: file, line: line)
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:1620:16: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
await self.receiveAction(timeout: nanoseconds, file: file, line: line)
~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:1620:16: note: sending main actor-isolated 'self' to nonisolated instance method 'receiveAction(timeout:file:line:)' risks causing data races between nonisolated and main actor-isolated uses
await self.receiveAction(timeout: nanoseconds, file: file, line: line)
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:1674:16: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
await self.receiveAction(timeout: nanoseconds, file: file, line: line)
~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:1674:16: note: sending main actor-isolated 'self' to nonisolated instance method 'receiveAction(timeout:file:line:)' risks causing data races between nonisolated and main actor-isolated uses
await self.receiveAction(timeout: nanoseconds, file: file, line: line)
^
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745744972303279-swift-frontend-ComposableArchitecture-Identified.swift-arm64_apple_macos10.15-o-Onone-1855063951.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 2.7641 seconds (2.9907 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.4610 ( 19.9%) 0.0615 ( 13.6%) 0.5225 ( 18.9%) 0.5706 ( 19.1%) perform-sema
0.4604 ( 19.9%) 0.0614 ( 13.5%) 0.5219 ( 18.9%) 0.5700 ( 19.1%) Type checking and Semantic analysis
0.3666 ( 15.9%) 0.0422 ( 9.3%) 0.4088 ( 14.8%) 0.4562 ( 15.3%) typecheck-stmt
0.3547 ( 15.4%) 0.0408 ( 9.0%) 0.3956 ( 14.3%) 0.4403 ( 14.7%) typecheck-expr
0.0669 ( 2.9%) 0.0923 ( 20.3%) 0.1592 ( 5.8%) 0.1603 ( 5.4%) parse-and-resolve-imports
0.0645 ( 2.8%) 0.0905 ( 20.0%) 0.1550 ( 5.6%) 0.1561 ( 5.2%) Import resolution
0.1250 ( 5.4%) 0.0195 ( 4.3%) 0.1444 ( 5.2%) 0.1519 ( 5.1%) typecheck-decl
0.1178 ( 5.1%) 0.0147 ( 3.2%) 0.1325 ( 4.8%) 0.1325 ( 4.4%) IRGen
0.0989 ( 4.3%) 0.0045 ( 1.0%) 0.1035 ( 3.7%) 0.1035 ( 3.5%) SILGen
0.0568 ( 2.5%) 0.0083 ( 1.8%) 0.0651 ( 2.4%) 0.0933 ( 3.1%) precheck-target
0.0761 ( 3.3%) 0.0031 ( 0.7%) 0.0792 ( 2.9%) 0.0792 ( 2.6%) SILGen-function
0.0318 ( 1.4%) 0.0002 ( 0.0%) 0.0320 ( 1.2%) 0.0320 ( 1.1%) SIL optimization
0.0191 ( 0.8%) 0.0045 ( 1.0%) 0.0236 ( 0.9%) 0.0239 ( 0.8%) build-rewrite-system
0.0060 ( 0.3%) 0.0069 ( 1.5%) 0.0129 ( 0.5%) 0.0129 ( 0.4%) import-clang-decl
0.0010 ( 0.0%) 0.0025 ( 0.6%) 0.0036 ( 0.1%) 0.0036 ( 0.1%) load-stdlib
0.0016 ( 0.1%) 0.0003 ( 0.1%) 0.0019 ( 0.1%) 0.0019 ( 0.1%) typecheck-expr-pattern
0.0008 ( 0.0%) 0.0000 ( 0.0%) 0.0008 ( 0.0%) 0.0008 ( 0.0%) typecheck-for-each
0.0007 ( 0.0%) 0.0001 ( 0.0%) 0.0008 ( 0.0%) 0.0008 ( 0.0%) load-all-members
0.0002 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) source-file-lookup-class-member
0.0002 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) populate-module-class-member-cache
0.0002 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) associated-type-inference
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) module-populate-cache
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) get-conformance-access-path
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) SIL verification, pre-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) perform-whole-module-type-checking
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
2.3106 (100.0%) 0.4535 (100.0%) 2.7641 (100.0%) 2.9907 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 1.6733 seconds (1.7226 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
1.4658 (100.0%) 0.2075 (100.0%) 1.6733 (100.0%) 1.7226 (100.0%) Building Target
1.4658 (100.0%) 0.2075 (100.0%) 1.6733 (100.0%) 1.7226 (100.0%) Total
SwiftDriverJobDiscovery normal arm64 Compiling LockIsolated.swift, Task.swift, UncheckedSendable.swift (in target 'Dependencies' from project 'swift-dependencies')
SwiftCompile normal arm64 Compiling\ Optional.swift,\ Reduce.swift,\ Scope.swift,\ SignpostReducer.swift,\ ReducerProtocol.swift,\ SchedulerExtensions.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/Optional.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/Reduce.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/Scope.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/SignpostReducer.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ReducerProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SchedulerExtensions/SchedulerExtensions.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745744972342877-swift-frontend-ComposableArchitecture-Optional.swift-arm64_apple_macos10.15-o-Onone-188394148.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 0.4963 seconds (0.4996 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0672 ( 24.0%) 0.0858 ( 39.7%) 0.1530 ( 30.8%) 0.1542 ( 30.9%) parse-and-resolve-imports
0.0648 ( 23.1%) 0.0840 ( 38.9%) 0.1488 ( 30.0%) 0.1499 ( 30.0%) Import resolution
0.0299 ( 10.7%) 0.0096 ( 4.5%) 0.0396 ( 8.0%) 0.0396 ( 7.9%) perform-sema
0.0295 ( 10.5%) 0.0096 ( 4.4%) 0.0390 ( 7.9%) 0.0391 ( 7.8%) Type checking and Semantic analysis
0.0205 ( 7.3%) 0.0063 ( 2.9%) 0.0269 ( 5.4%) 0.0272 ( 5.5%) IRGen
0.0143 ( 5.1%) 0.0050 ( 2.3%) 0.0193 ( 3.9%) 0.0193 ( 3.9%) typecheck-decl
0.0141 ( 5.0%) 0.0044 ( 2.0%) 0.0185 ( 3.7%) 0.0185 ( 3.7%) typecheck-stmt
0.0121 ( 4.3%) 0.0041 ( 1.9%) 0.0162 ( 3.3%) 0.0162 ( 3.3%) typecheck-expr
0.0108 ( 3.9%) 0.0009 ( 0.4%) 0.0118 ( 2.4%) 0.0119 ( 2.4%) SILGen
0.0056 ( 2.0%) 0.0003 ( 0.1%) 0.0059 ( 1.2%) 0.0059 ( 1.2%) SILGen-function
0.0054 ( 1.9%) 0.0001 ( 0.0%) 0.0055 ( 1.1%) 0.0055 ( 1.1%) SIL optimization
0.0019 ( 0.7%) 0.0029 ( 1.3%) 0.0048 ( 1.0%) 0.0048 ( 1.0%) import-clang-decl
0.0010 ( 0.4%) 0.0021 ( 1.0%) 0.0031 ( 0.6%) 0.0032 ( 0.6%) load-stdlib
0.0018 ( 0.6%) 0.0003 ( 0.1%) 0.0020 ( 0.4%) 0.0020 ( 0.4%) precheck-target
0.0012 ( 0.4%) 0.0006 ( 0.3%) 0.0017 ( 0.3%) 0.0017 ( 0.3%) build-rewrite-system
0.0002 ( 0.1%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) module-populate-cache
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) associated-type-inference
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, pre-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) perform-whole-module-type-checking
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
0.2803 (100.0%) 0.2160 (100.0%) 0.4963 (100.0%) 0.4996 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 0.3377 seconds (0.3411 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.2089 (100.0%) 0.1289 (100.0%) 0.3377 (100.0%) 0.3411 (100.0%) Building Target
0.2089 (100.0%) 0.1289 (100.0%) 0.3377 (100.0%) 0.3411 (100.0%) Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/Optional.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/Reduce.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/Scope.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/SignpostReducer.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/ReducerProtocol.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SchedulerExtensions/SchedulerExtensions.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
SwiftDriverJobDiscovery normal arm64 Compiling UUID.swift, WithRandomNumberGenerator.swift, Deprecations.swift (in target 'Dependencies' from project 'swift-dependencies')
SwiftCompile normal arm64 Compiling\ Store.swift,\ ActionWrappingScheduler.swift,\ Alert.swift,\ Binding.swift,\ ConfirmationDialog.swift,\ ForEachStore.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/ActionWrappingScheduler.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Alert.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/ConfirmationDialog.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/ForEachStore.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745744972368032-swift-frontend-ComposableArchitecture-Store.swift-arm64_apple_macos10.15-o-Onone-3026714708.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 1.2303 seconds (1.3171 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.1875 ( 20.4%) 0.0335 ( 10.8%) 0.2210 ( 18.0%) 0.2480 ( 18.8%) perform-sema
0.1870 ( 20.3%) 0.0334 ( 10.8%) 0.2204 ( 17.9%) 0.2474 ( 18.8%) Type checking and Semantic analysis
0.0692 ( 7.5%) 0.0817 ( 26.4%) 0.1508 ( 12.3%) 0.1516 ( 11.5%) parse-and-resolve-imports
0.0668 ( 7.3%) 0.0802 ( 25.9%) 0.1469 ( 11.9%) 0.1477 ( 11.2%) Import resolution
0.0924 ( 10.0%) 0.0192 ( 6.2%) 0.1116 ( 9.1%) 0.1346 ( 10.2%) typecheck-stmt
0.0689 ( 7.5%) 0.0147 ( 4.8%) 0.0837 ( 6.8%) 0.0867 ( 6.6%) typecheck-expr
0.0545 ( 5.9%) 0.0110 ( 3.5%) 0.0655 ( 5.3%) 0.0661 ( 5.0%) typecheck-decl
0.0516 ( 5.6%) 0.0095 ( 3.1%) 0.0611 ( 5.0%) 0.0614 ( 4.7%) IRGen
0.0437 ( 4.7%) 0.0037 ( 1.2%) 0.0474 ( 3.9%) 0.0482 ( 3.7%) SILGen
0.0323 ( 3.5%) 0.0077 ( 2.5%) 0.0400 ( 3.3%) 0.0425 ( 3.2%) precheck-target
0.0295 ( 3.2%) 0.0018 ( 0.6%) 0.0313 ( 2.5%) 0.0319 ( 2.4%) SILGen-function
0.0200 ( 2.2%) 0.0059 ( 1.9%) 0.0259 ( 2.1%) 0.0260 ( 2.0%) build-rewrite-system
0.0125 ( 1.4%) 0.0002 ( 0.1%) 0.0127 ( 1.0%) 0.0127 ( 1.0%) SIL optimization
0.0034 ( 0.4%) 0.0045 ( 1.4%) 0.0078 ( 0.6%) 0.0080 ( 0.6%) import-clang-decl
0.0010 ( 0.1%) 0.0026 ( 0.9%) 0.0037 ( 0.3%) 0.0037 ( 0.3%) load-stdlib
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) module-populate-cache
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) get-conformance-access-path
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) associated-type-inference
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, pre-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) perform-whole-module-type-checking
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
0.9207 (100.0%) 0.3096 (100.0%) 1.2303 (100.0%) 1.3171 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 0.7862 seconds (0.8312 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.6281 (100.0%) 0.1581 (100.0%) 0.7862 (100.0%) 0.8312 (100.0%) Building Target
0.6281 (100.0%) 0.1581 (100.0%) 0.7862 (100.0%) 0.8312 (100.0%) Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:658:18: warning: generic parameter 'ScopedState' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
func rescope<ScopedState, ScopedAction, RescopedState, RescopedAction>(
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:601:28: note: 'ScopedState' previously declared here
RootState, RootAction, ScopedState, ScopedAction
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:658:31: warning: generic parameter 'ScopedAction' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
func rescope<ScopedState, ScopedAction, RescopedState, RescopedAction>(
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:601:41: note: 'ScopedAction' previously declared here
RootState, RootAction, ScopedState, ScopedAction
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:441:21: warning: capture of 'tasks' with non-sendable type 'Box<[Task<Void, Never>]>' in a '@Sendable' closure; this is an error in the Swift 6 language mode
var index = tasks.wrappedValue.startIndex
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Internal/Box.swift:1:13: note: generic class 'Box' does not conform to the 'Sendable' protocol
final class Box<Wrapped> {
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:411:13: warning: sending 'effectDisposable' risks causing data races; this is an error in the Swift 6 language mode
effectDisposable.dispose()
~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:411:13: note: task-isolated 'effectDisposable' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
effectDisposable.dispose()
^~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:419:36: 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
Task(priority: priority) {
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:422:31: note: closure captures 'self' which is accessible to code in the current task
if let task = self.send($0, originatingFrom: action) {
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:433:17: 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
return Task {
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:435:21: note: closure captures 'tasks' which is accessible to code in the current task
var index = tasks.wrappedValue.startIndex
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:422:31: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
if let task = self.send($0, originatingFrom: action) {
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:422:31: note: task-isolated 'self' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
if let task = self.send($0, originatingFrom: action) {
^~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:422:62: warning: sending 'action' risks causing data races; this is an error in the Swift 6 language mode
if let task = self.send($0, originatingFrom: action) {
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:422:62: note: task-isolated 'action' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
if let task = self.send($0, originatingFrom: action) {
^~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:423:19: warning: sending 'tasks' risks causing data races; this is an error in the Swift 6 language mode
tasks.wrappedValue.append(task)
~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift:423:19: note: task-isolated 'tasks' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
tasks.wrappedValue.append(task)
^~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
@ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/ActionWrappingScheduler.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
@ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Alert.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
@ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
@ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/ConfirmationDialog.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
@ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/ForEachStore.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/ForEachStore.swift:84:16: warning: main actor-isolated property 'data' cannot be used to satisfy nonisolated requirement from protocol 'DynamicViewContent'; this is an error in the Swift 6 language mode
public let data: Data
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/ForEachStore.swift:83:6: note: add '@preconcurrency' to the 'DynamicViewContent' conformance to defer isolation checking to run time
>: DynamicViewContent {
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/WithViewStore.swift:122:6: warning: call to main actor-isolated initializer 'init(wrappedValue:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
@ObservedObject private var viewStore: ViewStore<ViewState, ViewAction>
^
SwiftUICore.ObservedObject.init:2:35: note: calls to initializer 'init(wrappedValue:)' from outside of its actor context are implicitly asynchronous
@MainActor @preconcurrency public init(wrappedValue: ObjectType)}
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/ForEachStore.swift:138:15: warning: forming 'UnsafeRawPointer' to a variable of type 'OrderedSet<ID>'; this is likely incorrect because 'OrderedSet<ID>' may contain an object reference.
if memcmp(&lhs, &rhs, MemoryLayout<OrderedSet<ID>>.size) == 0 {
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/ForEachStore.swift:138:21: warning: forming 'UnsafeRawPointer' to a variable of type 'OrderedSet<ID>'; this is likely incorrect because 'OrderedSet<ID>' may contain an object reference.
if memcmp(&lhs, &rhs, MemoryLayout<OrderedSet<ID>>.size) == 0 {
^
SwiftDriverJobDiscovery normal arm64 Compiling TypeName.swift, WithDependencies.swift (in target 'Dependencies' from project 'swift-dependencies')
SwiftDriver\ Compilation Dependencies normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Dependencies' from project 'swift-dependencies')
cd /Users/admin/builder/spi-builder-workspace
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Dependencies -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug/Dependencies.build/Objects-normal/arm64/Dependencies.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.15 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug/Dependencies.build/Objects-normal/arm64/Dependencies-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug/Dependencies.build/Objects-normal/arm64/Dependencies.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug/Dependencies.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug/Dependencies.build/Objects-normal/arm64/Dependencies_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug/Dependencies.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug/Dependencies.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug/Dependencies.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug/Dependencies.build/Objects-normal/arm64/Dependencies-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling ImmediateScheduler.swift, AlertStateUIKit.swift, IfLetUIKit.swift, UIKitAnimationScheduler.swift, ViewStore.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
SwiftCompile normal arm64 Compiling\ AnyReducerCompatibility.swift,\ AnyReducerDebug.swift,\ AnyReducerSignpost.swift,\ ReducerBuilder.swift,\ BindingReducer.swift,\ CombineReducers.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerCompatibility.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerSignpost.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/ReducerBuilder.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/BindingReducer.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/CombineReducers.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745744972734045-swift-frontend-ComposableArchitecture-AnyReducerCompatibility.swift-arm64_apple_macos10.15-o-Onone-841679826.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 0.7281 seconds (0.7293 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0601 ( 11.2%) 0.0578 ( 30.0%) 0.1180 ( 16.2%) 0.1186 ( 16.3%) parse-and-resolve-imports
0.0579 ( 10.8%) 0.0565 ( 29.3%) 0.1144 ( 15.7%) 0.1150 ( 15.8%) Import resolution
0.0848 ( 15.9%) 0.0155 ( 8.1%) 0.1004 ( 13.8%) 0.1004 ( 13.8%) perform-sema
0.0844 ( 15.8%) 0.0155 ( 8.0%) 0.0999 ( 13.7%) 0.0999 ( 13.7%) Type checking and Semantic analysis
0.0640 ( 12.0%) 0.0105 ( 5.4%) 0.0744 ( 10.2%) 0.0744 ( 10.2%) typecheck-stmt
0.0574 ( 10.7%) 0.0117 ( 6.1%) 0.0691 ( 9.5%) 0.0691 ( 9.5%) typecheck-decl
0.0340 ( 6.4%) 0.0083 ( 4.3%) 0.0423 ( 5.8%) 0.0423 ( 5.8%) typecheck-expr
0.0274 ( 5.1%) 0.0059 ( 3.1%) 0.0334 ( 4.6%) 0.0334 ( 4.6%) IRGen
0.0211 ( 3.9%) 0.0019 ( 1.0%) 0.0230 ( 3.2%) 0.0230 ( 3.2%) SILGen
0.0146 ( 2.7%) 0.0014 ( 0.7%) 0.0159 ( 2.2%) 0.0159 ( 2.2%) SILGen-function
0.0090 ( 1.7%) 0.0011 ( 0.6%) 0.0101 ( 1.4%) 0.0101 ( 1.4%) precheck-target
0.0089 ( 1.7%) 0.0001 ( 0.0%) 0.0090 ( 1.2%) 0.0090 ( 1.2%) SIL optimization
0.0036 ( 0.7%) 0.0044 ( 2.3%) 0.0081 ( 1.1%) 0.0081 ( 1.1%) import-clang-decl
0.0065 ( 1.2%) 0.0010 ( 0.5%) 0.0075 ( 1.0%) 0.0075 ( 1.0%) build-rewrite-system
0.0010 ( 0.2%) 0.0012 ( 0.6%) 0.0022 ( 0.3%) 0.0022 ( 0.3%) load-stdlib
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) module-populate-cache
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) associated-type-inference
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) load-all-members
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, pre-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) perform-whole-module-type-checking
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) get-conformance-access-path
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
0.5352 (100.0%) 0.1929 (100.0%) 0.7281 (100.0%) 0.7293 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 0.4372 seconds (0.4572 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.3345 (100.0%) 0.1027 (100.0%) 0.4372 (100.0%) 0.4572 (100.0%) Building Target
0.3345 (100.0%) 0.1027 (100.0%) 0.4372 (100.0%) 0.4572 (100.0%) Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerCompatibility.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:196:11: warning: capture of 'debugEnvironment' with non-sendable type 'DebugEnvironment' in a '@Sendable' local function; this is an error in the Swift 6 language mode
debugEnvironment.queue.async {
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:327:15: note: consider making struct 'DebugEnvironment' conform to the 'Sendable' protocol
public struct DebugEnvironment {
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:199:26: warning: capture of 'debugAction' with non-sendable type 'DebugAction' in a '@Sendable' local function; this is an error in the Swift 6 language mode
customDump(debugAction, to: &actionOutput, indent: 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:177:33: note: consider making generic parameter 'DebugAction' conform to the 'Sendable' protocol
public func debug<DebugState, DebugAction>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:206:22: warning: capture of 'previousState' with non-sendable type 'DebugState' in a '@Sendable' local function; this is an error in the Swift 6 language mode
: diff(previousState, nextState).map { "\($0)\n" } ?? " (No state changes)\n"
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:177:21: note: consider making generic parameter 'DebugState' conform to the 'Sendable' protocol
public func debug<DebugState, DebugAction>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:206:37: warning: capture of 'nextState' with non-sendable type 'DebugState' in a '@Sendable' local function; this is an error in the Swift 6 language mode
: diff(previousState, nextState).map { "\($0)\n" } ?? " (No state changes)\n"
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:177:21: note: consider making generic parameter 'DebugState' conform to the 'Sendable' protocol
public func debug<DebugState, DebugAction>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:199:26: warning: capture of 'debugAction' with non-sendable type 'DebugAction' in a '@Sendable' closure
customDump(debugAction, to: &actionOutput, indent: 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:177:33: note: consider making generic parameter 'DebugAction' conform to the 'Sendable' protocol
public func debug<DebugState, DebugAction>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:206:22: warning: capture of 'previousState' with non-sendable type 'DebugState' in a '@Sendable' closure
: diff(previousState, nextState).map { "\($0)\n" } ?? " (No state changes)\n"
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:177:21: note: consider making generic parameter 'DebugState' conform to the 'Sendable' protocol
public func debug<DebugState, DebugAction>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:206:37: warning: capture of 'nextState' with non-sendable type 'DebugState' in a '@Sendable' closure
: diff(previousState, nextState).map { "\($0)\n" } ?? " (No state changes)\n"
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:177:21: note: consider making generic parameter 'DebugState' conform to the 'Sendable' protocol
public func debug<DebugState, DebugAction>(
^
: Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:207:13: warning: capture of 'debugEnvironment' with non-sendable type 'DebugEnvironment' in a '@Sendable' closure
debugEnvironment.printer(
^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerDebug.swift:327:15: note: consider making struct 'DebugEnvironment' conform to the 'Sendable' protocol
public struct DebugEnvironment {
^
: Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/AnyReducer/AnyReducerSignpost.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/ReducerBuilder.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/BindingReducer.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Reducer/Reducers/CombineReducers.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
ExtractAppIntentsMetadata (in target 'CasePaths' from project 'swift-case-paths')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-case-paths
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name CasePaths --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.15 --bundle-identifier swift-case-paths.CasePaths --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/CasePaths.appintents --target-triple arm64-apple-macos10.15 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/CasePaths.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-case-paths.build/Debug/CasePaths.build/Objects-normal/arm64/CasePaths_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-case-paths.build/Debug/CasePaths.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-case-paths.build/Debug/CasePaths.build/Objects-normal/arm64/CasePaths.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-case-paths.build/Debug/CasePaths.build/CasePaths.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-case-paths.build/Debug/CasePaths.build/CasePaths.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-case-paths.build/Debug/CasePaths.build/Objects-normal/arm64/CasePaths.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 02:09:32.711 appintentsmetadataprocessor[1783:8947] Starting appintentsmetadataprocessor export
2025-04-27 02:09:32.747 appintentsmetadataprocessor[1783:8947] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling Optional.swift, Reduce.swift, Scope.swift, SignpostReducer.swift, ReducerProtocol.swift, SchedulerExtensions.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
SwiftDriverJobDiscovery normal arm64 Compiling OpenExistential.swift, RuntimeWarnings.swift, TaskCancellableValue.swift, TypeName.swift, AnyReducer.swift, AnyReducerBinding.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
SwiftDriverJobDiscovery normal arm64 Compiling DebugReducer.swift, DependencyKeyWritingReducer.swift, EmptyReducer.swift, ForEachReducer.swift, IfCaseLetReducer.swift, IfLetReducer.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/IdentifiedCollections.o (in target 'IdentifiedCollections' from project 'swift-identified-collections')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-identified-collections
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/IdentifiedCollections.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/CustomDump.o (in target 'CustomDump' from project 'swift-custom-dump')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-custom-dump
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/CustomDump.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/CombineSchedulers.o (in target 'CombineSchedulers' from project 'combine-schedulers')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/combine-schedulers
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/CombineSchedulers.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Clocks.o (in target 'Clocks' from project 'swift-clocks')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-clocks
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Clocks.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Dependencies.o normal (in target 'Dependencies' from project 'swift-dependencies')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-dependencies
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.15 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug/Dependencies.build/Objects-normal/arm64/Dependencies.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug/Dependencies.build/Objects-normal/arm64/Dependencies_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug/Dependencies.build/Objects-normal/arm64/Dependencies_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug/Dependencies.build/Objects-normal/arm64/Dependencies.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Dependencies.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/CasePaths.o (in target 'CasePaths' from project 'swift-case-paths')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-case-paths
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/CasePaths.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/_SwiftUINavigationState.o normal (in target '_SwiftUINavigationState' from project 'swiftui-navigation')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swiftui-navigation
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.15 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug/_SwiftUINavigationState.build/Objects-normal/arm64/_SwiftUINavigationState.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug/_SwiftUINavigationState.build/Objects-normal/arm64/_SwiftUINavigationState_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug/_SwiftUINavigationState.build/Objects-normal/arm64/_SwiftUINavigationState_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug/_SwiftUINavigationState.build/Objects-normal/arm64/_SwiftUINavigationState.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/_SwiftUINavigationState.o
ExtractAppIntentsMetadata (in target 'Dependencies' from project 'swift-dependencies')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-dependencies
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name Dependencies --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.15 --bundle-identifier swift-dependencies.Dependencies --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Dependencies.appintents --target-triple arm64-apple-macos10.15 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Dependencies.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug/Dependencies.build/Objects-normal/arm64/Dependencies_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug/Dependencies.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug/Dependencies.build/Objects-normal/arm64/Dependencies.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug/Dependencies.build/Dependencies.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug/Dependencies.build/Dependencies.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug/Dependencies.build/Objects-normal/arm64/Dependencies.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 02:09:32.798 appintentsmetadataprocessor[1788:8972] Starting appintentsmetadataprocessor export
2025-04-27 02:09:32.836 appintentsmetadataprocessor[1788:8972] Extracted no relevant App Intents symbols, skipping writing output
ExtractAppIntentsMetadata (in target '_SwiftUINavigationState' from project 'swiftui-navigation')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swiftui-navigation
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name _SwiftUINavigationState --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.15 --bundle-identifier swiftui-navigation.-SwiftUINavigationState --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/_SwiftUINavigationState.appintents --target-triple arm64-apple-macos10.15 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/_SwiftUINavigationState.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug/_SwiftUINavigationState.build/Objects-normal/arm64/_SwiftUINavigationState_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug/_SwiftUINavigationState.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug/_SwiftUINavigationState.build/Objects-normal/arm64/_SwiftUINavigationState.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug/_SwiftUINavigationState.build/_SwiftUINavigationState.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug/_SwiftUINavigationState.build/_SwiftUINavigationState.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug/_SwiftUINavigationState.build/Objects-normal/arm64/_SwiftUINavigationState.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 02:09:32.809 appintentsmetadataprocessor[1789:8982] Starting appintentsmetadataprocessor export
2025-04-27 02:09:32.845 appintentsmetadataprocessor[1789:8982] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling Throttling.swift, Timer.swift, SignalProducer.swift, TaskResult.swift, Binding+IsPresent.swift, Box.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Dependencies.o (in target 'Dependencies' from project 'swift-dependencies')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-dependencies
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/Dependencies.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/_SwiftUINavigationState.o (in target '_SwiftUINavigationState' from project 'swiftui-navigation')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swiftui-navigation
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/_SwiftUINavigationState.o
SwiftDriverJobDiscovery normal arm64 Compiling MainQueue.swift, Effect.swift, Animation.swift, Cancellation.swift, Debouncing.swift, Deferring.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
SwiftDriverJobDiscovery normal arm64 Emitting module for ComposableArchitecture (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
SwiftDriver\ Compilation\ Requirements ComposableArchitecture normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name ComposableArchitecture -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.15 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/ComposableArchitecture-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture-Swift.h (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/ComposableArchitecture-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ComposableArchitecture.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.swiftmodule (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ComposableArchitecture.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ComposableArchitecture.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.swiftdoc (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ComposableArchitecture.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ComposableArchitecture.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.abi.json (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ComposableArchitecture.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ComposableArchitecture.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.swiftsourceinfo (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ComposableArchitecture.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling Breakpoint.swift, CurrentValueRelay.swift, Debug.swift, Deprecations.swift, Exports.swift, Locking.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
SwiftDriverJobDiscovery normal arm64 Compiling AnyReducerCompatibility.swift, AnyReducerDebug.swift, AnyReducerSignpost.swift, ReducerBuilder.swift, BindingReducer.swift, CombineReducers.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
SwiftDriverJobDiscovery normal arm64 Compiling Store.swift, ActionWrappingScheduler.swift, Alert.swift, Binding.swift, ConfirmationDialog.swift, ForEachStore.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
SwiftDriverJobDiscovery normal arm64 Compiling Identified.swift, IfLetStore.swift, SwitchStore.swift, WithViewStore.swift, TestStore.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
SwiftDriver\ Compilation ComposableArchitecture normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name ComposableArchitecture -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-macos10.15 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ComposableArchitecture.o normal (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.15 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ComposableArchitecture.o
ExtractAppIntentsMetadata (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name ComposableArchitecture --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 10.15 --bundle-identifier spi-builder-workspace.ComposableArchitecture --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ComposableArchitecture.appintents --target-triple arm64-apple-macos10.15 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ComposableArchitecture.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/ComposableArchitecture.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/ComposableArchitecture.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 02:09:34.110 appintentsmetadataprocessor[1793:9027] Starting appintentsmetadataprocessor export
2025-04-27 02:09:34.144 appintentsmetadataprocessor[1793:9027] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ComposableArchitecture.o (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/ComposableArchitecture.o
** BUILD SUCCEEDED **
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, id:3678c7a802501fa94c470d9f64bd6a9c7d1927ce, name:My Mac }
{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:3678c7a802501fa94c470d9f64bd6a9c7d1927ce, name:My Mac }
{ platform:macOS, arch:arm64, variant:DriverKit, id:3678c7a802501fa94c470d9f64bd6a9c7d1927ce, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:3678c7a802501fa94c470d9f64bd6a9c7d1927ce, name:My Mac }
Build complete.
{
"dependencies" : [
{
"identity" : "swift-docc-plugin",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-docc-plugin"
},
{
"identity" : "swift-benchmark",
"requirement" : {
"range" : [
{
"lower_bound" : "0.1.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/google/swift-benchmark"
},
{
"identity" : "reactiveswift",
"requirement" : {
"range" : [
{
"lower_bound" : "7.1.0",
"upper_bound" : "8.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/ReactiveCocoa/ReactiveSwift"
},
{
"identity" : "swift-case-paths",
"requirement" : {
"range" : [
{
"lower_bound" : "0.10.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swift-case-paths"
},
{
"identity" : "swift-collections",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.2",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-collections"
},
{
"identity" : "swift-custom-dump",
"requirement" : {
"range" : [
{
"lower_bound" : "0.6.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swift-custom-dump"
},
{
"identity" : "swift-dependencies",
"requirement" : {
"range" : [
{
"lower_bound" : "0.1.2",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swift-dependencies"
},
{
"identity" : "swift-identified-collections",
"requirement" : {
"range" : [
{
"lower_bound" : "0.4.1",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swift-identified-collections"
},
{
"identity" : "swiftui-navigation",
"requirement" : {
"range" : [
{
"lower_bound" : "0.6.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swiftui-navigation"
},
{
"identity" : "xctest-dynamic-overlay",
"requirement" : {
"range" : [
{
"lower_bound" : "0.5.0",
"upper_bound" : "1.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/xctest-dynamic-overlay"
}
],
"manifest_display_name" : "reactiveswift-composable-architecture",
"name" : "reactiveswift-composable-architecture",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "tvos",
"version" : "13.0"
},
{
"name" : "watchos",
"version" : "6.0"
}
],
"products" : [
{
"name" : "ComposableArchitecture",
"targets" : [
"ComposableArchitecture"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "swift-composable-architecture-benchmark",
"targets" : [
"swift-composable-architecture-benchmark"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "swift_composable_architecture_benchmark",
"module_type" : "SwiftTarget",
"name" : "swift-composable-architecture-benchmark",
"path" : "Sources/swift-composable-architecture-benchmark",
"product_dependencies" : [
"Benchmark"
],
"product_memberships" : [
"swift-composable-architecture-benchmark"
],
"sources" : [
"Common.swift",
"Dependencies.swift",
"Effects.swift",
"StoreScope.swift",
"ViewStore.swift",
"main.swift"
],
"target_dependencies" : [
"ComposableArchitecture"
],
"type" : "executable"
},
{
"c99name" : "_CAsyncSupport",
"module_type" : "SystemLibraryTarget",
"name" : "_CAsyncSupport",
"path" : "Sources/_CAsyncSupport",
"sources" : [
],
"type" : "system-target"
},
{
"c99name" : "ComposableArchitectureTests",
"module_type" : "SwiftTarget",
"name" : "ComposableArchitectureTests",
"path" : "Tests/ComposableArchitectureTests",
"sources" : [
"BindingTests.swift",
"CompatibilityTests.swift",
"ComposableArchitectureTests.swift",
"DebugTests.swift",
"DependencyKeyWritingReducerTests.swift",
"DeprecatedTests.swift",
"EffectCancellationTests.swift",
"EffectDebounceTests.swift",
"EffectDeferredTests.swift",
"EffectFailureTests.swift",
"EffectOperationTests.swift",
"EffectRunTests.swift",
"EffectTaskTests.swift",
"EffectTests.swift",
"EffectThrottleTests.swift",
"ForEachReducerTests.swift",
"IfCaseLetReducerTests.swift",
"IfLetReducerTests.swift",
"MemoryManagementTests.swift",
"ReducerBuilderTests.swift",
"ReducerTests.swift",
"RuntimeWarningTests.swift",
"SchedulerTests.swift",
"ScopeTests.swift",
"SerialExecutor.swift",
"StoreTests.swift",
"TaskCancellationTests.swift",
"TaskResultTests.swift",
"TestStoreFailureTests.swift",
"TestStoreNonExhaustiveTests.swift",
"TestStoreTests.swift",
"TimerTests.swift",
"ViewStoreTests.swift",
"WithViewStoreAppTest.swift"
],
"target_dependencies" : [
"_CAsyncSupport",
"ComposableArchitecture"
],
"type" : "test"
},
{
"c99name" : "ComposableArchitecture",
"module_type" : "SwiftTarget",
"name" : "ComposableArchitecture",
"path" : "Sources/ComposableArchitecture",
"product_dependencies" : [
"CasePaths",
"CustomDump",
"Dependencies",
"IdentifiedCollections",
"OrderedCollections",
"ReactiveSwift",
"_SwiftUINavigationState",
"XCTestDynamicOverlay"
],
"product_memberships" : [
"ComposableArchitecture",
"swift-composable-architecture-benchmark"
],
"sources" : [
"Dependencies/MainQueue.swift",
"Effect.swift",
"Effects/Animation.swift",
"Effects/Cancellation.swift",
"Effects/Publisher/Debouncing.swift",
"Effects/Publisher/Deferring.swift",
"Effects/Publisher/Throttling.swift",
"Effects/Publisher/Timer.swift",
"Effects/SignalProducer.swift",
"Effects/TaskResult.swift",
"Internal/Binding+IsPresent.swift",
"Internal/Box.swift",
"Internal/Breakpoint.swift",
"Internal/CurrentValueRelay.swift",
"Internal/Debug.swift",
"Internal/Deprecations.swift",
"Internal/Exports.swift",
"Internal/Locking.swift",
"Internal/OpenExistential.swift",
"Internal/RuntimeWarnings.swift",
"Internal/TaskCancellableValue.swift",
"Internal/TypeName.swift",
"Reducer/AnyReducer/AnyReducer.swift",
"Reducer/AnyReducer/AnyReducerBinding.swift",
"Reducer/AnyReducer/AnyReducerCompatibility.swift",
"Reducer/AnyReducer/AnyReducerDebug.swift",
"Reducer/AnyReducer/AnyReducerSignpost.swift",
"Reducer/ReducerBuilder.swift",
"Reducer/Reducers/BindingReducer.swift",
"Reducer/Reducers/CombineReducers.swift",
"Reducer/Reducers/DebugReducer.swift",
"Reducer/Reducers/DependencyKeyWritingReducer.swift",
"Reducer/Reducers/EmptyReducer.swift",
"Reducer/Reducers/ForEachReducer.swift",
"Reducer/Reducers/IfCaseLetReducer.swift",
"Reducer/Reducers/IfLetReducer.swift",
"Reducer/Reducers/Optional.swift",
"Reducer/Reducers/Reduce.swift",
"Reducer/Reducers/Scope.swift",
"Reducer/Reducers/SignpostReducer.swift",
"ReducerProtocol.swift",
"SchedulerExtensions/SchedulerExtensions.swift",
"Store.swift",
"SwiftUI/ActionWrappingScheduler.swift",
"SwiftUI/Alert.swift",
"SwiftUI/Binding.swift",
"SwiftUI/ConfirmationDialog.swift",
"SwiftUI/ForEachStore.swift",
"SwiftUI/Identified.swift",
"SwiftUI/IfLetStore.swift",
"SwiftUI/SwitchStore.swift",
"SwiftUI/WithViewStore.swift",
"TestStore.swift",
"TestSupport/ImmediateScheduler.swift",
"UIKit/AlertStateUIKit.swift",
"UIKit/IfLetUIKit.swift",
"UIKit/UIKitAnimationScheduler.swift",
"ViewStore.swift"
],
"type" : "library"
}
],
"tools_version" : "5.6"
}
Done.