The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of reactiveswift-composable-architecture, reference master (c3f39b), with Swift 6.1 for tvOS using Xcode 16.3 on 27 Apr 2025 09:08:53 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 generic/platform=tvOS 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

/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-1745744930400791-swift-frontend-ComposableArchitecture-all-arm64_apple_tvos13.0-swiftmodule-Onone-2466585412.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 1.6765 seconds (1.8231 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.2823 ( 22.4%)   0.0556 ( 13.4%)   0.3378 ( 20.2%)   0.3834 ( 21.0%)  perform-sema
   0.2806 ( 22.3%)   0.0551 ( 13.3%)   0.3358 ( 20.0%)   0.3813 ( 20.9%)  Type checking and Semantic analysis
   0.2299 ( 18.2%)   0.0448 ( 10.8%)   0.2747 ( 16.4%)   0.3199 ( 17.5%)  typecheck-decl
   0.0624 (  4.9%)   0.0928 ( 22.3%)   0.1551 (  9.3%)   0.1590 (  8.7%)  parse-and-resolve-imports
   0.0566 (  4.5%)   0.0869 ( 20.9%)   0.1435 (  8.6%)   0.1473 (  8.1%)  Import resolution
   0.0706 (  5.6%)   0.0160 (  3.8%)   0.0865 (  5.2%)   0.0868 (  4.8%)  typecheck-stmt
   0.0708 (  5.6%)   0.0120 (  2.9%)   0.0828 (  4.9%)   0.0837 (  4.6%)  SILGen
   0.0554 (  4.4%)   0.0165 (  4.0%)   0.0718 (  4.3%)   0.0719 (  3.9%)  typecheck-expr
   0.0458 (  3.6%)   0.0063 (  1.5%)   0.0521 (  3.1%)   0.0521 (  2.9%)  SIL optimization
   0.0326 (  2.6%)   0.0044 (  1.1%)   0.0370 (  2.2%)   0.0370 (  2.0%)  SILGen-function
   0.0265 (  2.1%)   0.0075 (  1.8%)   0.0340 (  2.0%)   0.0342 (  1.9%)  build-rewrite-system
   0.0077 (  0.6%)   0.0086 (  2.1%)   0.0163 (  1.0%)   0.0164 (  0.9%)  import-clang-decl
   0.0120 (  0.9%)   0.0037 (  0.9%)   0.0156 (  0.9%)   0.0156 (  0.9%)  precheck-target
   0.0118 (  0.9%)   0.0020 (  0.5%)   0.0138 (  0.8%)   0.0138 (  0.8%)  Serialization, swiftmodule
   0.0069 (  0.5%)   0.0004 (  0.1%)   0.0074 (  0.4%)   0.0074 (  0.4%)  Serialization, swiftdoc
   0.0062 (  0.5%)   0.0007 (  0.2%)   0.0069 (  0.4%)   0.0069 (  0.4%)  Serialization, swiftsourceinfo
   0.0014 (  0.1%)   0.0025 (  0.6%)   0.0039 (  0.2%)   0.0050 (  0.3%)  load-stdlib
   0.0005 (  0.0%)   0.0000 (  0.0%)   0.0005 (  0.0%)   0.0005 (  0.0%)  associated-type-inference
   0.0003 (  0.0%)   0.0001 (  0.0%)   0.0004 (  0.0%)   0.0004 (  0.0%)  module-populate-cache
   0.0002 (  0.0%)   0.0000 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  source-file-populate-cache
   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%)  load-all-members
   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.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-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.2605 (100.0%)   0.4160 (100.0%)   1.6765 (100.0%)   1.8231 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.6856 seconds (0.7383 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.5086 (100.0%)   0.1770 (100.0%)   0.6856 (100.0%)   0.7383 (100.0%)  Building Target
   0.5086 (100.0%)   0.1770 (100.0%)   0.6856 (100.0%)   0.7383 (100.0%)  Total
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-1745744930406126-swift-frontend-ComposableArchitecture-OpenExistential.swift-arm64_apple_tvos13.0-o-Onone-2600103040.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.7082 seconds (0.7277 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0611 ( 13.8%)   0.0893 ( 33.7%)   0.1503 ( 21.2%)   0.1545 ( 21.2%)  parse-and-resolve-imports
   0.0549 ( 12.4%)   0.0831 ( 31.4%)   0.1380 ( 19.5%)   0.1421 ( 19.5%)  Import resolution
   0.0709 ( 16.0%)   0.0191 (  7.2%)   0.0900 ( 12.7%)   0.0930 ( 12.8%)  perform-sema
   0.0704 ( 15.9%)   0.0190 (  7.2%)   0.0894 ( 12.6%)   0.0924 ( 12.7%)  Type checking and Semantic analysis
   0.0453 ( 10.2%)   0.0115 (  4.4%)   0.0569 (  8.0%)   0.0594 (  8.2%)  typecheck-stmt
   0.0240 (  5.4%)   0.0104 (  3.9%)   0.0344 (  4.9%)   0.0345 (  4.7%)  IRGen
   0.0251 (  5.7%)   0.0077 (  2.9%)   0.0328 (  4.6%)   0.0334 (  4.6%)  typecheck-decl
   0.0216 (  4.9%)   0.0067 (  2.5%)   0.0283 (  4.0%)   0.0287 (  3.9%)  typecheck-expr
   0.0194 (  4.4%)   0.0024 (  0.9%)   0.0219 (  3.1%)   0.0226 (  3.1%)  SILGen
   0.0168 (  3.8%)   0.0047 (  1.8%)   0.0215 (  3.0%)   0.0219 (  3.0%)  build-rewrite-system
   0.0129 (  2.9%)   0.0014 (  0.5%)   0.0143 (  2.0%)   0.0144 (  2.0%)  SILGen-function
   0.0087 (  2.0%)   0.0016 (  0.6%)   0.0104 (  1.5%)   0.0105 (  1.4%)  precheck-target
   0.0036 (  0.8%)   0.0053 (  2.0%)   0.0088 (  1.2%)   0.0089 (  1.2%)  import-clang-decl
   0.0074 (  1.7%)   0.0002 (  0.1%)   0.0076 (  1.1%)   0.0080 (  1.1%)  SIL optimization
   0.0010 (  0.2%)   0.0021 (  0.8%)   0.0031 (  0.4%)   0.0031 (  0.4%)  load-stdlib
   0.0002 (  0.0%)   0.0001 (  0.0%)   0.0003 (  0.0%)   0.0003 (  0.0%)  module-populate-cache
   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, 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.4435 (100.0%)   0.2646 (100.0%)   0.7082 (100.0%)   0.7277 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.4331 seconds (0.4427 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.2836 (100.0%)   0.1495 (100.0%)   0.4331 (100.0%)   0.4427 (100.0%)  Building Target
   0.2836 (100.0%)   0.1495 (100.0%)   0.4331 (100.0%)   0.4427 (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

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)
               ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:1730:18: warning: sending 'self' risks causing data races; this is an error in the Swift 6 language mode
      await self.receiveAction(timeout: duration.nanoseconds, file: file, line: line)
            ~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/TestStore.swift:1730:18: 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: duration.nanoseconds, file: file, line: line)
                 ^
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745744930410568-swift-frontend-ComposableArchitecture-Identified.swift-arm64_apple_tvos13.0-o-Onone-3169358499.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 2.9235 seconds (3.1755 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.5012 ( 20.4%)   0.0687 ( 14.6%)   0.5699 ( 19.5%)   0.6222 ( 19.6%)  perform-sema
   0.5007 ( 20.4%)   0.0686 ( 14.6%)   0.5694 ( 19.5%)   0.6216 ( 19.6%)  Type checking and Semantic analysis
   0.3920 ( 16.0%)   0.0457 (  9.7%)   0.4377 ( 15.0%)   0.4848 ( 15.3%)  typecheck-stmt
   0.3758 ( 15.3%)   0.0454 (  9.7%)   0.4212 ( 14.4%)   0.4684 ( 14.8%)  typecheck-expr
   0.1374 (  5.6%)   0.0243 (  5.2%)   0.1617 (  5.5%)   0.1711 (  5.4%)  typecheck-decl
   0.0623 (  2.5%)   0.0859 ( 18.3%)   0.1481 (  5.1%)   0.1512 (  4.8%)  parse-and-resolve-imports
   0.0573 (  2.3%)   0.0803 ( 17.1%)   0.1376 (  4.7%)   0.1406 (  4.4%)  Import resolution
   0.1201 (  4.9%)   0.0145 (  3.1%)   0.1346 (  4.6%)   0.1346 (  4.2%)  IRGen
   0.0640 (  2.6%)   0.0108 (  2.3%)   0.0749 (  2.6%)   0.1123 (  3.5%)  precheck-target
   0.1012 (  4.1%)   0.0050 (  1.1%)   0.1062 (  3.6%)   0.1062 (  3.3%)  SILGen
   0.0776 (  3.2%)   0.0037 (  0.8%)   0.0813 (  2.8%)   0.0813 (  2.6%)  SILGen-function
   0.0317 (  1.3%)   0.0001 (  0.0%)   0.0318 (  1.1%)   0.0318 (  1.0%)  SIL optimization
   0.0205 (  0.8%)   0.0054 (  1.1%)   0.0259 (  0.9%)   0.0259 (  0.8%)  build-rewrite-system
   0.0065 (  0.3%)   0.0078 (  1.7%)   0.0143 (  0.5%)   0.0143 (  0.5%)  import-clang-decl
   0.0012 (  0.0%)   0.0030 (  0.6%)   0.0042 (  0.1%)   0.0044 (  0.1%)  load-stdlib
   0.0016 (  0.1%)   0.0003 (  0.1%)   0.0019 (  0.1%)   0.0019 (  0.1%)  typecheck-expr-pattern
   0.0009 (  0.0%)   0.0000 (  0.0%)   0.0009 (  0.0%)   0.0009 (  0.0%)  typecheck-for-each
   0.0006 (  0.0%)   0.0001 (  0.0%)   0.0007 (  0.0%)   0.0008 (  0.0%)  load-all-members
   0.0002 (  0.0%)   0.0000 (  0.0%)   0.0003 (  0.0%)   0.0003 (  0.0%)  source-file-lookup-class-member
   0.0002 (  0.0%)   0.0000 (  0.0%)   0.0003 (  0.0%)   0.0003 (  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.0001 (  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
   2.4537 (100.0%)   0.4699 (100.0%)   2.9235 (100.0%)   3.1755 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 1.7505 seconds (1.8061 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   1.5391 (100.0%)   0.2114 (100.0%)   1.7505 (100.0%)   1.8061 (100.0%)  Building Target
   1.5391 (100.0%)   0.2114 (100.0%)   1.7505 (100.0%)   1.8061 (100.0%)  Total
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-1745744930408699-swift-frontend-ComposableArchitecture-ImmediateScheduler.swift-arm64_apple_tvos13.0-o-Onone-3235993004.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.8982 seconds (0.9123 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0610 ( 10.0%)   0.0881 ( 30.8%)   0.1491 ( 16.6%)   0.1509 ( 16.5%)  parse-and-resolve-imports
   0.0557 (  9.1%)   0.0818 ( 28.7%)   0.1375 ( 15.3%)   0.1393 ( 15.3%)  Import resolution
   0.1086 ( 17.7%)   0.0265 (  9.3%)   0.1351 ( 15.0%)   0.1370 ( 15.0%)  perform-sema
   0.1081 ( 17.7%)   0.0265 (  9.3%)   0.1346 ( 15.0%)   0.1365 ( 15.0%)  Type checking and Semantic analysis
   0.0662 ( 10.8%)   0.0112 (  3.9%)   0.0774 (  8.6%)   0.0781 (  8.6%)  typecheck-stmt
   0.0510 (  8.3%)   0.0082 (  2.9%)   0.0591 (  6.6%)   0.0596 (  6.5%)  typecheck-expr
   0.0422 (  6.9%)   0.0143 (  5.0%)   0.0565 (  6.3%)   0.0577 (  6.3%)  typecheck-decl
   0.0325 (  5.3%)   0.0101 (  3.5%)   0.0426 (  4.7%)   0.0465 (  5.1%)  IRGen
   0.0295 (  4.8%)   0.0027 (  0.9%)   0.0322 (  3.6%)   0.0323 (  3.5%)  SILGen
   0.0190 (  3.1%)   0.0015 (  0.5%)   0.0205 (  2.3%)   0.0205 (  2.2%)  SILGen-function
   0.0063 (  1.0%)   0.0078 (  2.7%)   0.0141 (  1.6%)   0.0142 (  1.6%)  import-clang-decl
   0.0123 (  2.0%)   0.0015 (  0.5%)   0.0137 (  1.5%)   0.0138 (  1.5%)  precheck-target
   0.0084 (  1.4%)   0.0028 (  1.0%)   0.0112 (  1.2%)   0.0114 (  1.2%)  build-rewrite-system
   0.0094 (  1.5%)   0.0001 (  0.0%)   0.0095 (  1.1%)   0.0096 (  1.1%)  SIL optimization
   0.0012 (  0.2%)   0.0026 (  0.9%)   0.0038 (  0.4%)   0.0039 (  0.4%)  load-stdlib
   0.0006 (  0.1%)   0.0000 (  0.0%)   0.0006 (  0.1%)   0.0006 (  0.1%)  typecheck-for-each
   0.0002 (  0.0%)   0.0000 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  load-all-members
   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%)  associated-type-inference
   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%)  get-conformance-access-path
   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.6125 (100.0%)   0.2857 (100.0%)   0.8982 (100.0%)   0.9123 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.5674 seconds (0.5922 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.4048 (100.0%)   0.1626 (100.0%)   0.5674 (100.0%)   0.5922 (100.0%)  Building Target
   0.4048 (100.0%)   0.1626 (100.0%)   0.5674 (100.0%)   0.5922 (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

/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/UIKitAnimationScheduler.swift:130:18: warning: call to main actor-isolated class method 'animate(withDuration:delay:options:animations:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
          UIView.animate(
                 ^
UIKit.UIView.animate:3:30: note: calls to class method 'animate(withDuration:delay:options:animations:completion:)' from outside of its actor context are implicitly asynchronous
  @MainActor open class func animate(withDuration duration: TimeInterval, delay: TimeInterval, options: UIView.AnimationOptions = [], animations: @escaping () -> Void, completion: ((Bool) -> Void)? = nil)}
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/UIKitAnimationScheduler.swift:137:18: warning: call to main actor-isolated class method 'animate(withDuration:delay:usingSpringWithDamping:initialSpringVelocity:options:animations:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
          UIView.animate(
                 ^
UIKit.UIView.animate:3:30: note: calls to class method 'animate(withDuration:delay:usingSpringWithDamping:initialSpringVelocity:options:animations:completion:)' from outside of its actor context are implicitly asynchronous
  @MainActor open class func animate(withDuration duration: TimeInterval, delay: TimeInterval, usingSpringWithDamping dampingRatio: CGFloat, initialSpringVelocity velocity: CGFloat, options: UIView.AnimationOptions = [], animations: @escaping () -> Void, completion: ((Bool) -> Void)? = nil)}
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/UIKitAnimationScheduler.swift:167:18: warning: call to main actor-isolated class method 'animate(withDuration:delay:options:animations:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
          UIView.animate(
                 ^
UIKit.UIView.animate:3:30: note: calls to class method 'animate(withDuration:delay:options:animations:completion:)' from outside of its actor context are implicitly asynchronous
  @MainActor open class func animate(withDuration duration: TimeInterval, delay: TimeInterval, options: UIView.AnimationOptions = [], animations: @escaping () -> Void, completion: ((Bool) -> Void)? = nil)}
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/UIKitAnimationScheduler.swift:174:18: warning: call to main actor-isolated class method 'animate(withDuration:delay:usingSpringWithDamping:initialSpringVelocity:options:animations:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
          UIView.animate(
                 ^
UIKit.UIView.animate:3:30: note: calls to class method 'animate(withDuration:delay:usingSpringWithDamping:initialSpringVelocity:options:animations:completion:)' from outside of its actor context are implicitly asynchronous
  @MainActor open class func animate(withDuration duration: TimeInterval, delay: TimeInterval, usingSpringWithDamping dampingRatio: CGFloat, initialSpringVelocity velocity: CGFloat, options: UIView.AnimationOptions = [], animations: @escaping () -> Void, completion: ((Bool) -> Void)? = nil)}
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/UIKitAnimationScheduler.swift:130:18: warning: sending value of non-Sendable type '() -> Void' risks causing data races; this is an error in the Swift 6 language mode
          UIView.animate(
          ~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/UIKitAnimationScheduler.swift:130:18: note: sending task-isolated value of non-Sendable type '() -> Void' to main actor-isolated class method 'animate(withDuration:delay:options:animations:completion:)' risks causing races in between task-isolated and main actor-isolated uses
          UIView.animate(
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/UIKitAnimationScheduler.swift:137:18: warning: sending value of non-Sendable type '() -> Void' risks causing data races; this is an error in the Swift 6 language mode
          UIView.animate(
          ~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/UIKitAnimationScheduler.swift:137:18: note: sending task-isolated value of non-Sendable type '() -> Void' to main actor-isolated class method 'animate(withDuration:delay:usingSpringWithDamping:initialSpringVelocity:options:animations:completion:)' risks causing races in between task-isolated and main actor-isolated uses
          UIView.animate(
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/UIKitAnimationScheduler.swift:167:18: warning: sending value of non-Sendable type '() -> Void' risks causing data races; this is an error in the Swift 6 language mode
          UIView.animate(
          ~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/UIKitAnimationScheduler.swift:167:18: note: sending task-isolated value of non-Sendable type '() -> Void' to main actor-isolated class method 'animate(withDuration:delay:options:animations:completion:)' risks causing races in between task-isolated and main actor-isolated uses
          UIView.animate(
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/UIKitAnimationScheduler.swift:174:18: warning: sending value of non-Sendable type '() -> Void' risks causing data races; this is an error in the Swift 6 language mode
          UIView.animate(
          ~~~~~~~^~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/UIKit/UIKitAnimationScheduler.swift:174:18: note: sending task-isolated value of non-Sendable type '() -> Void' to main actor-isolated class method 'animate(withDuration:delay:usingSpringWithDamping:initialSpringVelocity:options:animations:completion:)' risks causing races in between task-isolated and main actor-isolated uses
          UIView.animate(
                 ^
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\ 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-1745744930418971-swift-frontend-ComposableArchitecture-DebugReducer.swift-arm64_apple_tvos13.0-o-Onone-4264266878.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.6927 seconds (0.7015 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0628 ( 14.0%)   0.0874 ( 35.6%)   0.1502 ( 21.7%)   0.1529 ( 21.8%)  parse-and-resolve-imports
   0.0573 ( 12.8%)   0.0832 ( 33.9%)   0.1406 ( 20.3%)   0.1432 ( 20.4%)  Import resolution
   0.0708 ( 15.8%)   0.0161 (  6.5%)   0.0869 ( 12.5%)   0.0879 ( 12.5%)  perform-sema
   0.0702 ( 15.7%)   0.0160 (  6.5%)   0.0862 ( 12.4%)   0.0872 ( 12.4%)  Type checking and Semantic analysis
   0.0520 ( 11.6%)   0.0124 (  5.0%)   0.0644 (  9.3%)   0.0652 (  9.3%)  typecheck-stmt
   0.0319 (  7.1%)   0.0074 (  3.0%)   0.0393 (  5.7%)   0.0396 (  5.6%)  typecheck-expr
   0.0268 (  6.0%)   0.0070 (  2.9%)   0.0338 (  4.9%)   0.0338 (  4.8%)  IRGen
   0.0207 (  4.6%)   0.0023 (  1.0%)   0.0231 (  3.3%)   0.0231 (  3.3%)  SILGen
   0.0162 (  3.6%)   0.0034 (  1.4%)   0.0197 (  2.8%)   0.0198 (  2.8%)  typecheck-decl
   0.0113 (  2.5%)   0.0032 (  1.3%)   0.0145 (  2.1%)   0.0146 (  2.1%)  build-rewrite-system
   0.0116 (  2.6%)   0.0007 (  0.3%)   0.0123 (  1.8%)   0.0123 (  1.8%)  SILGen-function
   0.0070 (  1.6%)   0.0000 (  0.0%)   0.0070 (  1.0%)   0.0070 (  1.0%)  SIL optimization
   0.0024 (  0.5%)   0.0033 (  1.3%)   0.0057 (  0.8%)   0.0058 (  0.8%)  import-clang-decl
   0.0045 (  1.0%)   0.0005 (  0.2%)   0.0050 (  0.7%)   0.0050 (  0.7%)  precheck-target
   0.0011 (  0.2%)   0.0026 (  1.1%)   0.0037 (  0.5%)   0.0038 (  0.5%)  load-stdlib
   0.0002 (  0.1%)   0.0001 (  0.0%)   0.0003 (  0.0%)   0.0003 (  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%)  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%)  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.4468 (100.0%)   0.2458 (100.0%)   0.6927 (100.0%)   0.7015 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.4499 seconds (0.4561 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.3092 (100.0%)   0.1407 (100.0%)   0.4499 (100.0%)   0.4561 (100.0%)  Building Target
   0.3092 (100.0%)   0.1407 (100.0%)   0.4499 (100.0%)   0.4561 (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\ 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-1745744930413675-swift-frontend-ComposableArchitecture-MainQueue.swift-arm64_apple_tvos13.0-o-Onone-1026488691.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.8155 seconds (0.8393 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0640 ( 11.5%)   0.0872 ( 33.4%)   0.1511 ( 18.5%)   0.1549 ( 18.5%)  parse-and-resolve-imports
   0.0589 ( 10.6%)   0.0822 ( 31.5%)   0.1411 ( 17.3%)   0.1449 ( 17.3%)  Import resolution
   0.0962 ( 17.4%)   0.0208 (  8.0%)   0.1170 ( 14.4%)   0.1191 ( 14.2%)  perform-sema
   0.0958 ( 17.3%)   0.0207 (  7.9%)   0.1165 ( 14.3%)   0.1186 ( 14.1%)  Type checking and Semantic analysis
   0.0637 ( 11.5%)   0.0125 (  4.8%)   0.0762 (  9.3%)   0.0781 (  9.3%)  typecheck-stmt
   0.0376 (  6.8%)   0.0104 (  4.0%)   0.0480 (  5.9%)   0.0565 (  6.7%)  IRGen
   0.0381 (  6.9%)   0.0080 (  3.0%)   0.0461 (  5.7%)   0.0464 (  5.5%)  typecheck-decl
   0.0290 (  5.2%)   0.0022 (  0.8%)   0.0312 (  3.8%)   0.0314 (  3.7%)  SILGen
   0.0213 (  3.9%)   0.0033 (  1.3%)   0.0247 (  3.0%)   0.0253 (  3.0%)  typecheck-expr
   0.0205 (  3.7%)   0.0014 (  0.5%)   0.0218 (  2.7%)   0.0220 (  2.6%)  SILGen-function
   0.0107 (  1.9%)   0.0001 (  0.0%)   0.0109 (  1.3%)   0.0109 (  1.3%)  SIL optimization
   0.0035 (  0.6%)   0.0058 (  2.2%)   0.0093 (  1.1%)   0.0094 (  1.1%)  import-clang-decl
   0.0064 (  1.2%)   0.0020 (  0.8%)   0.0085 (  1.0%)   0.0085 (  1.0%)  build-rewrite-system
   0.0071 (  1.3%)   0.0013 (  0.5%)   0.0084 (  1.0%)   0.0084 (  1.0%)  precheck-target
   0.0011 (  0.2%)   0.0032 (  1.2%)   0.0044 (  0.5%)   0.0045 (  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%)  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%)  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%)  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.5544 (100.0%)   0.2612 (100.0%)   0.8155 (100.0%)   0.8393 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.6242 seconds (0.6517 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.4664 (100.0%)   0.1579 (100.0%)   0.6242 (100.0%)   0.6517 (100.0%)  Building Target
   0.4664 (100.0%)   0.1579 (100.0%)   0.6242 (100.0%)   0.6517 (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\ 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-1745744930463775-swift-frontend-ComposableArchitecture-Store.swift-arm64_apple_tvos13.0-o-Onone-3001150614.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 1.3100 seconds (1.3552 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.2023 ( 20.5%)   0.0356 ( 11.0%)   0.2379 ( 18.2%)   0.2435 ( 18.0%)  perform-sema
   0.2018 ( 20.5%)   0.0355 ( 11.0%)   0.2373 ( 18.1%)   0.2429 ( 17.9%)  Type checking and Semantic analysis
   0.0657 (  6.7%)   0.0836 ( 25.8%)   0.1493 ( 11.4%)   0.1517 ( 11.2%)  parse-and-resolve-imports
   0.0594 (  6.0%)   0.0779 ( 24.1%)   0.1374 ( 10.5%)   0.1397 ( 10.3%)  Import resolution
   0.1031 ( 10.5%)   0.0179 (  5.5%)   0.1211 (  9.2%)   0.1262 (  9.3%)  typecheck-stmt
   0.0781 (  7.9%)   0.0153 (  4.7%)   0.0934 (  7.1%)   0.0985 (  7.3%)  typecheck-expr
   0.0584 (  5.9%)   0.0131 (  4.1%)   0.0715 (  5.5%)   0.0758 (  5.6%)  typecheck-decl
   0.0547 (  5.5%)   0.0117 (  3.6%)   0.0664 (  5.1%)   0.0710 (  5.2%)  IRGen
   0.0406 (  4.1%)   0.0102 (  3.2%)   0.0508 (  3.9%)   0.0542 (  4.0%)  precheck-target
   0.0478 (  4.8%)   0.0039 (  1.2%)   0.0517 (  3.9%)   0.0536 (  4.0%)  SILGen
   0.0327 (  3.3%)   0.0021 (  0.7%)   0.0348 (  2.7%)   0.0356 (  2.6%)  SILGen-function
   0.0216 (  2.2%)   0.0066 (  2.0%)   0.0282 (  2.2%)   0.0319 (  2.4%)  build-rewrite-system
   0.0135 (  1.4%)   0.0002 (  0.1%)   0.0137 (  1.0%)   0.0140 (  1.0%)  SIL optimization
   0.0047 (  0.5%)   0.0063 (  1.9%)   0.0110 (  0.8%)   0.0110 (  0.8%)  import-clang-decl
   0.0015 (  0.2%)   0.0035 (  1.1%)   0.0050 (  0.4%)   0.0051 (  0.4%)  load-stdlib
   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%)  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%)  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.9864 (100.0%)   0.3236 (100.0%)   1.3100 (100.0%)   1.3552 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.8385 seconds (0.8596 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.6705 (100.0%)   0.1680 (100.0%)   0.8385 (100.0%)   0.8596 (100.0%)  Building Target
   0.6705 (100.0%)   0.1680 (100.0%)   0.8385 (100.0%)   0.8596 (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 ButtonState.swift (in target '_SwiftUINavigationState' from project 'swiftui-navigation')
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')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745744930526871-swift-frontend-ComposableArchitecture-Breakpoint.swift-arm64_apple_tvos13.0-o-Onone-265451451.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 1.2777 seconds (1.3887 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.1719 ( 18.2%)   0.0360 ( 10.8%)   0.2079 ( 16.3%)   0.2321 ( 16.7%)  perform-sema
   0.1715 ( 18.2%)   0.0360 ( 10.8%)   0.2075 ( 16.2%)   0.2316 ( 16.7%)  Type checking and Semantic analysis
   0.1317 ( 13.9%)   0.0273 (  8.2%)   0.1590 ( 12.4%)   0.1826 ( 13.1%)  typecheck-stmt
   0.0701 (  7.4%)   0.0791 ( 23.8%)   0.1492 ( 11.7%)   0.1504 ( 10.8%)  parse-and-resolve-imports
   0.0648 (  6.9%)   0.0742 ( 22.3%)   0.1390 ( 10.9%)   0.1401 ( 10.1%)  Import resolution
   0.0929 (  9.8%)   0.0200 (  6.0%)   0.1129 (  8.8%)   0.1337 (  9.6%)  typecheck-expr
   0.0715 (  7.6%)   0.0166 (  5.0%)   0.0881 (  6.9%)   0.0907 (  6.5%)  typecheck-decl
   0.0438 (  4.6%)   0.0103 (  3.1%)   0.0540 (  4.2%)   0.0566 (  4.1%)  IRGen
   0.0336 (  3.6%)   0.0100 (  3.0%)   0.0437 (  3.4%)   0.0449 (  3.2%)  precheck-target
   0.0328 (  3.5%)   0.0037 (  1.1%)   0.0365 (  2.9%)   0.0368 (  2.6%)  SILGen
   0.0163 (  1.7%)   0.0049 (  1.5%)   0.0212 (  1.7%)   0.0234 (  1.7%)  build-rewrite-system
   0.0206 (  2.2%)   0.0020 (  0.6%)   0.0226 (  1.8%)   0.0227 (  1.6%)  SILGen-function
   0.0128 (  1.4%)   0.0007 (  0.2%)   0.0135 (  1.1%)   0.0203 (  1.5%)  SIL optimization
   0.0084 (  0.9%)   0.0094 (  2.8%)   0.0177 (  1.4%)   0.0180 (  1.3%)  import-clang-decl
   0.0011 (  0.1%)   0.0022 (  0.7%)   0.0033 (  0.3%)   0.0033 (  0.2%)  load-stdlib
   0.0005 (  0.0%)   0.0006 (  0.2%)   0.0010 (  0.1%)   0.0011 (  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.0000 (  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.9448 (100.0%)   0.3329 (100.0%)   1.2777 (100.0%)   1.3887 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.6682 seconds (0.7216 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.5055 (100.0%)   0.1627 (100.0%)   0.6682 (100.0%)   0.7216 (100.0%)  Building Target
   0.5055 (100.0%)   0.1627 (100.0%)   0.6682 (100.0%)   0.7216 (100.0%)  Total
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)}
                                  ^
SwiftDriverJobDiscovery normal arm64 Compiling TypeName.swift, WithDependencies.swift (in target 'Dependencies' from project 'swift-dependencies')
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-1745744930551357-swift-frontend-ComposableArchitecture-Throttling.swift-arm64_apple_tvos13.0-o-Onone-2073902373.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.6995 seconds (0.8141 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0707 ( 15.2%)   0.0808 ( 34.3%)   0.1514 ( 21.6%)   0.1557 ( 19.1%)  parse-and-resolve-imports
   0.0650 ( 14.0%)   0.0758 ( 32.2%)   0.1408 ( 20.1%)   0.1450 ( 17.8%)  Import resolution
   0.0725 ( 15.6%)   0.0161 (  6.8%)   0.0886 ( 12.7%)   0.1216 ( 14.9%)  perform-sema
   0.0721 ( 15.5%)   0.0160 (  6.8%)   0.0881 ( 12.6%)   0.1212 ( 14.9%)  Type checking and Semantic analysis
   0.0525 ( 11.3%)   0.0111 (  4.7%)   0.0636 (  9.1%)   0.0643 (  7.9%)  typecheck-stmt
   0.0170 (  3.7%)   0.0044 (  1.9%)   0.0214 (  3.1%)   0.0536 (  6.6%)  typecheck-decl
   0.0307 (  6.6%)   0.0104 (  4.4%)   0.0411 (  5.9%)   0.0437 (  5.4%)  IRGen
   0.0239 (  5.1%)   0.0027 (  1.1%)   0.0265 (  3.8%)   0.0281 (  3.4%)  SILGen
   0.0173 (  3.7%)   0.0020 (  0.8%)   0.0193 (  2.8%)   0.0207 (  2.5%)  SILGen-function
   0.0101 (  2.2%)   0.0031 (  1.3%)   0.0132 (  1.9%)   0.0135 (  1.7%)  precheck-target
   0.0122 (  2.6%)   0.0003 (  0.1%)   0.0125 (  1.8%)   0.0133 (  1.6%)  SIL optimization
   0.0087 (  1.9%)   0.0030 (  1.3%)   0.0117 (  1.7%)   0.0120 (  1.5%)  build-rewrite-system
   0.0069 (  1.5%)   0.0022 (  1.0%)   0.0092 (  1.3%)   0.0093 (  1.1%)  typecheck-expr
   0.0028 (  0.6%)   0.0038 (  1.6%)   0.0066 (  0.9%)   0.0066 (  0.8%)  import-clang-decl
   0.0012 (  0.3%)   0.0039 (  1.6%)   0.0050 (  0.7%)   0.0050 (  0.6%)  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.0002 (  0.0%)   0.0002 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  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%)  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%)  associated-type-inference
   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.4639 (100.0%)   0.2355 (100.0%)   0.6995 (100.0%)   0.8141 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.5026 seconds (0.5553 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.3601 (100.0%)   0.1424 (100.0%)   0.5026 (100.0%)   0.5553 (100.0%)  Building Target
   0.3601 (100.0%)   0.1424 (100.0%)   0.5026 (100.0%)   0.5553 (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

SwiftDriverJobDiscovery normal arm64 Compiling DependencyValues.swift, Calendar.swift, Clocks.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-appletvos/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/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos13.0 -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-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-appletvos/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-appletvos/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-appletvos/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-appletvos/Dependencies.build/Objects-normal/arm64/Dependencies_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-appletvos/Dependencies.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-appletvos/Dependencies.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-appletvos/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-appletvos/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 TextState.swift (in target '_SwiftUINavigationState' from project 'swiftui-navigation')
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-1745744930611958-swift-frontend-ComposableArchitecture-AnyReducerCompatibility.swift-arm64_apple_tvos13.0-o-Onone-3485841469.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.7607 seconds (0.7749 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0598 ( 11.0%)   0.0635 ( 29.1%)   0.1233 ( 16.2%)   0.1244 ( 16.1%)  parse-and-resolve-imports
   0.0550 ( 10.1%)   0.0597 ( 27.4%)   0.1146 ( 15.1%)   0.1158 ( 14.9%)  Import resolution
   0.0851 ( 15.7%)   0.0176 (  8.1%)   0.1027 ( 13.5%)   0.1028 ( 13.3%)  perform-sema
   0.0847 ( 15.6%)   0.0175 (  8.0%)   0.1022 ( 13.4%)   0.1023 ( 13.2%)  Type checking and Semantic analysis
   0.0660 ( 12.2%)   0.0138 (  6.3%)   0.0798 ( 10.5%)   0.0798 ( 10.3%)  typecheck-stmt
   0.0554 ( 10.2%)   0.0126 (  5.8%)   0.0681 (  8.9%)   0.0682 (  8.8%)  typecheck-decl
   0.0336 (  6.2%)   0.0098 (  4.5%)   0.0434 (  5.7%)   0.0450 (  5.8%)  IRGen
   0.0329 (  6.1%)   0.0085 (  3.9%)   0.0413 (  5.4%)   0.0414 (  5.3%)  typecheck-expr
   0.0228 (  4.2%)   0.0026 (  1.2%)   0.0254 (  3.3%)   0.0304 (  3.9%)  SILGen
   0.0161 (  3.0%)   0.0019 (  0.9%)   0.0180 (  2.4%)   0.0224 (  2.9%)  SILGen-function
   0.0093 (  1.7%)   0.0015 (  0.7%)   0.0108 (  1.4%)   0.0108 (  1.4%)  precheck-target
   0.0099 (  1.8%)   0.0003 (  0.1%)   0.0101 (  1.3%)   0.0103 (  1.3%)  SIL optimization
   0.0068 (  1.3%)   0.0014 (  0.7%)   0.0083 (  1.1%)   0.0087 (  1.1%)  build-rewrite-system
   0.0037 (  0.7%)   0.0045 (  2.1%)   0.0082 (  1.1%)   0.0082 (  1.1%)  import-clang-decl
   0.0014 (  0.3%)   0.0027 (  1.2%)   0.0041 (  0.5%)   0.0041 (  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.0001 (  0.0%)   0.0001 (  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%)  get-conformance-access-path
   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.5428 (100.0%)   0.2179 (100.0%)   0.7607 (100.0%)   0.7749 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.4894 seconds (0.5029 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.3613 (100.0%)   0.1281 (100.0%)   0.4894 (100.0%)   0.5029 (100.0%)  Building Target
   0.3613 (100.0%)   0.1281 (100.0%)   0.4894 (100.0%)   0.5029 (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

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-appletvos/_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/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos13.0 -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-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug-appletvos/_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-appletvos/_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-appletvos/_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-appletvos/_SwiftUINavigationState.build/Objects-normal/arm64/_SwiftUINavigationState_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug-appletvos/_SwiftUINavigationState.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug-appletvos/_SwiftUINavigationState.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug-appletvos/_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-appletvos/_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 OpenExistential.swift, RuntimeWarnings.swift, TaskCancellableValue.swift, TypeName.swift, AnyReducer.swift, AnyReducerBinding.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
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-1745744930936726-swift-frontend-ComposableArchitecture-Optional.swift-arm64_apple_tvos13.0-o-Onone-3080663487.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.4010 seconds (0.4077 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0572 ( 22.4%)   0.0550 ( 37.8%)   0.1122 ( 28.0%)   0.1129 ( 27.7%)  parse-and-resolve-imports
   0.0530 ( 20.7%)   0.0519 ( 35.7%)   0.1049 ( 26.2%)   0.1056 ( 25.9%)  Import resolution
   0.0296 ( 11.6%)   0.0071 (  4.9%)   0.0367 (  9.2%)   0.0379 (  9.3%)  perform-sema
   0.0291 ( 11.4%)   0.0070 (  4.8%)   0.0362 (  9.0%)   0.0373 (  9.2%)  Type checking and Semantic analysis
   0.0184 (  7.2%)   0.0056 (  3.8%)   0.0240 (  6.0%)   0.0246 (  6.0%)  IRGen
   0.0141 (  5.5%)   0.0031 (  2.1%)   0.0172 (  4.3%)   0.0181 (  4.5%)  typecheck-decl
   0.0140 (  5.5%)   0.0038 (  2.6%)   0.0178 (  4.4%)   0.0179 (  4.4%)  typecheck-stmt
   0.0119 (  4.7%)   0.0034 (  2.4%)   0.0153 (  3.8%)   0.0154 (  3.8%)  typecheck-expr
   0.0110 (  4.3%)   0.0009 (  0.6%)   0.0119 (  3.0%)   0.0119 (  2.9%)  SILGen
   0.0011 (  0.4%)   0.0036 (  2.5%)   0.0047 (  1.2%)   0.0060 (  1.5%)  load-stdlib
   0.0057 (  2.2%)   0.0003 (  0.2%)   0.0059 (  1.5%)   0.0059 (  1.5%)  SILGen-function
   0.0054 (  2.1%)   0.0001 (  0.1%)   0.0055 (  1.4%)   0.0055 (  1.3%)  SIL optimization
   0.0020 (  0.8%)   0.0029 (  2.0%)   0.0048 (  1.2%)   0.0049 (  1.2%)  import-clang-decl
   0.0018 (  0.7%)   0.0003 (  0.2%)   0.0020 (  0.5%)   0.0020 (  0.5%)  precheck-target
   0.0011 (  0.4%)   0.0003 (  0.2%)   0.0014 (  0.4%)   0.0014 (  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.0001 (  0.1%)   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%)  perform-whole-module-type-checking
   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%)  AST verification
   0.2557 (100.0%)   0.1454 (100.0%)   0.4010 (100.0%)   0.4077 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.2929 seconds (0.2969 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.1960 (100.0%)   0.0969 (100.0%)   0.2929 (100.0%)   0.2969 (100.0%)  Building Target
   0.1960 (100.0%)   0.0969 (100.0%)   0.2929 (100.0%)   0.2969 (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 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-appletvos/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-appletvos/Clocks.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/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-appletvos/CasePaths.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/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-tvos13.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-appletvos/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-appletvos/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-appletvos/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/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-appletvos/Dependencies.build/Objects-normal/arm64/Dependencies.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Dependencies.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/_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-tvos13.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug-appletvos/_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-appletvos/_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-appletvos/_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/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug-appletvos/_SwiftUINavigationState.build/Objects-normal/arm64/_SwiftUINavigationState.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/_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/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk --xcode-version 16E140 --platform-family tvOS --deployment-target 13.0 --bundle-identifier swift-dependencies.Dependencies --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Dependencies.appintents --target-triple arm64-apple-tvos13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/Dependencies.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-appletvos/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-appletvos/Dependencies.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-appletvos/Dependencies.build/Objects-normal/arm64/Dependencies.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-appletvos/Dependencies.build/Dependencies.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-appletvos/Dependencies.build/Dependencies.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-dependencies.build/Debug-appletvos/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:08:51.020 appintentsmetadataprocessor[1786:8936] Starting appintentsmetadataprocessor export
2025-04-27 02:08:51.059 appintentsmetadataprocessor[1786:8936] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling ImmediateScheduler.swift, AlertStateUIKit.swift, IfLetUIKit.swift, UIKitAnimationScheduler.swift, ViewStore.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
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/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk --xcode-version 16E140 --platform-family tvOS --deployment-target 13.0 --bundle-identifier swiftui-navigation.-SwiftUINavigationState --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/_SwiftUINavigationState.appintents --target-triple arm64-apple-tvos13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/_SwiftUINavigationState.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug-appletvos/_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-appletvos/_SwiftUINavigationState.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug-appletvos/_SwiftUINavigationState.build/Objects-normal/arm64/_SwiftUINavigationState.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug-appletvos/_SwiftUINavigationState.build/_SwiftUINavigationState.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug-appletvos/_SwiftUINavigationState.build/_SwiftUINavigationState.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug-appletvos/_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:08:51.036 appintentsmetadataprocessor[1787:8937] Starting appintentsmetadataprocessor export
2025-04-27 02:08:51.077 appintentsmetadataprocessor[1787:8937] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/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-appletvos/Dependencies.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')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/_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-appletvos/_SwiftUINavigationState.o
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')
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 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-appletvos/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/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos13.0 -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-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-appletvos/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-appletvos/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-appletvos/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-appletvos/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-appletvos/ComposableArchitecture.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-appletvos/ComposableArchitecture.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-appletvos/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-appletvos/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-appletvos/ComposableArchitecture-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-appletvos/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-appletvos/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/ComposableArchitecture-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/ComposableArchitecture.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-appletvos/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-appletvos/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/ComposableArchitecture.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/ComposableArchitecture.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-appletvos/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-appletvos/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/ComposableArchitecture.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/ComposableArchitecture.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-appletvos/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-appletvos/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/ComposableArchitecture.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/ComposableArchitecture.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-appletvos/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-appletvos/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/ComposableArchitecture.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
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 Breakpoint.swift, CurrentValueRelay.swift, Debug.swift, Deprecations.swift, Exports.swift, Locking.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-appletvos/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/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -target arm64-apple-tvos13.0 -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-appletvos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.4-22L251-271d326055c85f9856fa135c41255102.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-appletvos/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-appletvos/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-appletvos/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-appletvos/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-appletvos/ComposableArchitecture.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-appletvos/ComposableArchitecture.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-appletvos/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-appletvos/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-appletvos/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-tvos13.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-appletvos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-appletvos/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-appletvos/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-appletvos/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/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-appletvos/ComposableArchitecture.build/Objects-normal/arm64/ComposableArchitecture.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/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/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.4.sdk --xcode-version 16E140 --platform-family tvOS --deployment-target 13.0 --bundle-identifier spi-builder-workspace.ComposableArchitecture --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/ComposableArchitecture.appintents --target-triple arm64-apple-tvos13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/ComposableArchitecture.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-appletvos/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-appletvos/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-appletvos/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-appletvos/ComposableArchitecture.build/ComposableArchitecture.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-appletvos/ComposableArchitecture.build/ComposableArchitecture.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/reactiveswift-composable-architecture.build/Debug-appletvos/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:08:52.305 appintentsmetadataprocessor[1791:8985] Starting appintentsmetadataprocessor export
2025-04-27 02:08:52.340 appintentsmetadataprocessor[1791:8985] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/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-appletvos/ComposableArchitecture.o
** BUILD SUCCEEDED **
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.