Build Information
Successful build of reactiveswift-composable-architecture, reference 0.50.0 (c3f39b
), with Swift 6.1 for tvOS using Xcode 16.3 on 27 Apr 2025 09:10:05 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
@_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-1745745001986064-swift-frontend-ComposableArchitecture-all-arm64_apple_tvos13.0-swiftmodule-Onone-553380897.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 1.9978 seconds (2.2425 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.3480 ( 22.6%) 0.0664 ( 14.6%) 0.4144 ( 20.7%) 0.4898 ( 21.8%) perform-sema
0.3466 ( 22.5%) 0.0660 ( 14.5%) 0.4126 ( 20.7%) 0.4870 ( 21.7%) Type checking and Semantic analysis
0.2853 ( 18.5%) 0.0529 ( 11.6%) 0.3382 ( 16.9%) 0.4087 ( 18.2%) typecheck-decl
0.0770 ( 5.0%) 0.0930 ( 20.4%) 0.1701 ( 8.5%) 0.1729 ( 7.7%) parse-and-resolve-imports
0.0709 ( 4.6%) 0.0876 ( 19.2%) 0.1585 ( 7.9%) 0.1613 ( 7.2%) Import resolution
0.0998 ( 6.5%) 0.0220 ( 4.8%) 0.1218 ( 6.1%) 0.1293 ( 5.8%) typecheck-stmt
0.0718 ( 4.7%) 0.0207 ( 4.5%) 0.0926 ( 4.6%) 0.0965 ( 4.3%) typecheck-expr
0.0784 ( 5.1%) 0.0113 ( 2.5%) 0.0897 ( 4.5%) 0.0920 ( 4.1%) SILGen
0.0423 ( 2.7%) 0.0059 ( 1.3%) 0.0482 ( 2.4%) 0.0483 ( 2.2%) SIL optimization
0.0382 ( 2.5%) 0.0036 ( 0.8%) 0.0418 ( 2.1%) 0.0437 ( 1.9%) SILGen-function
0.0309 ( 2.0%) 0.0067 ( 1.5%) 0.0376 ( 1.9%) 0.0388 ( 1.7%) build-rewrite-system
0.0170 ( 1.1%) 0.0043 ( 0.9%) 0.0212 ( 1.1%) 0.0218 ( 1.0%) precheck-target
0.0089 ( 0.6%) 0.0103 ( 2.3%) 0.0192 ( 1.0%) 0.0199 ( 0.9%) import-clang-decl
0.0113 ( 0.7%) 0.0014 ( 0.3%) 0.0126 ( 0.6%) 0.0127 ( 0.6%) Serialization, swiftmodule
0.0065 ( 0.4%) 0.0009 ( 0.2%) 0.0075 ( 0.4%) 0.0075 ( 0.3%) Serialization, swiftsourceinfo
0.0067 ( 0.4%) 0.0007 ( 0.2%) 0.0074 ( 0.4%) 0.0074 ( 0.3%) Serialization, swiftdoc
0.0011 ( 0.1%) 0.0020 ( 0.4%) 0.0031 ( 0.2%) 0.0036 ( 0.2%) load-stdlib
0.0006 ( 0.0%) 0.0000 ( 0.0%) 0.0006 ( 0.0%) 0.0006 ( 0.0%) associated-type-inference
0.0002 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) module-populate-cache
0.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%) load-all-members
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) SIL verification, pre-optimization
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.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.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%) get-conformance-access-path
1.5421 (100.0%) 0.4557 (100.0%) 1.9978 (100.0%) 2.2425 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 0.7748 seconds (0.8559 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.5907 (100.0%) 0.1841 (100.0%) 0.7748 (100.0%) 0.8559 (100.0%) Building Target
0.5907 (100.0%) 0.1841 (100.0%) 0.7748 (100.0%) 0.8559 (100.0%) Total
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-1745745001998737-swift-frontend-ComposableArchitecture-DebugReducer.swift-arm64_apple_tvos13.0-o-Onone-2950653472.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 0.7947 seconds (0.8173 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0795 ( 15.1%) 0.0973 ( 36.5%) 0.1768 ( 22.2%) 0.1843 ( 22.5%) parse-and-resolve-imports
0.0708 ( 13.4%) 0.0920 ( 34.5%) 0.1629 ( 20.5%) 0.1704 ( 20.8%) Import resolution
0.0799 ( 15.1%) 0.0154 ( 5.8%) 0.0953 ( 12.0%) 0.0962 ( 11.8%) perform-sema
0.0794 ( 15.0%) 0.0153 ( 5.8%) 0.0947 ( 11.9%) 0.0956 ( 11.7%) Type checking and Semantic analysis
0.0538 ( 10.2%) 0.0111 ( 4.2%) 0.0650 ( 8.2%) 0.0656 ( 8.0%) typecheck-stmt
0.0324 ( 6.1%) 0.0082 ( 3.1%) 0.0406 ( 5.1%) 0.0421 ( 5.2%) IRGen
0.0338 ( 6.4%) 0.0076 ( 2.8%) 0.0414 ( 5.2%) 0.0417 ( 5.1%) typecheck-expr
0.0291 ( 5.5%) 0.0038 ( 1.4%) 0.0329 ( 4.1%) 0.0351 ( 4.3%) SILGen
0.0233 ( 4.4%) 0.0039 ( 1.5%) 0.0272 ( 3.4%) 0.0274 ( 3.4%) typecheck-decl
0.0148 ( 2.8%) 0.0011 ( 0.4%) 0.0159 ( 2.0%) 0.0164 ( 2.0%) SILGen-function
0.0118 ( 2.2%) 0.0029 ( 1.1%) 0.0147 ( 1.9%) 0.0148 ( 1.8%) build-rewrite-system
0.0084 ( 1.6%) 0.0002 ( 0.1%) 0.0086 ( 1.1%) 0.0088 ( 1.1%) SIL optimization
0.0036 ( 0.7%) 0.0047 ( 1.8%) 0.0083 ( 1.0%) 0.0084 ( 1.0%) import-clang-decl
0.0061 ( 1.2%) 0.0008 ( 0.3%) 0.0069 ( 0.9%) 0.0069 ( 0.8%) precheck-target
0.0010 ( 0.2%) 0.0021 ( 0.8%) 0.0030 ( 0.4%) 0.0032 ( 0.4%) 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%) 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%) 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%) 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.5282 (100.0%) 0.2665 (100.0%) 0.7947 (100.0%) 0.8173 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 0.5231 seconds (0.5383 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.3658 (100.0%) 0.1573 (100.0%) 0.5231 (100.0%) 0.5383 (100.0%) Building Target
0.3658 (100.0%) 0.1573 (100.0%) 0.5231 (100.0%) 0.5383 (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\ 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-1745745002015906-swift-frontend-ComposableArchitecture-Breakpoint.swift-arm64_apple_tvos13.0-o-Onone-1386492993.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 1.4828 seconds (1.5303 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.2026 ( 18.5%) 0.0375 ( 9.7%) 0.2400 ( 16.2%) 0.2458 ( 16.1%) perform-sema
0.2019 ( 18.4%) 0.0374 ( 9.7%) 0.2393 ( 16.1%) 0.2450 ( 16.0%) Type checking and Semantic analysis
0.1559 ( 14.2%) 0.0288 ( 7.5%) 0.1848 ( 12.5%) 0.1903 ( 12.4%) typecheck-stmt
0.0740 ( 6.8%) 0.1008 ( 26.1%) 0.1749 ( 11.8%) 0.1799 ( 11.8%) parse-and-resolve-imports
0.0682 ( 6.2%) 0.0963 ( 24.9%) 0.1645 ( 11.1%) 0.1694 ( 11.1%) Import resolution
0.1075 ( 9.8%) 0.0191 ( 4.9%) 0.1266 ( 8.5%) 0.1279 ( 8.4%) typecheck-expr
0.0775 ( 7.1%) 0.0159 ( 4.1%) 0.0935 ( 6.3%) 0.0945 ( 6.2%) typecheck-decl
0.0534 ( 4.9%) 0.0136 ( 3.5%) 0.0671 ( 4.5%) 0.0738 ( 4.8%) IRGen
0.0414 ( 3.8%) 0.0051 ( 1.3%) 0.0465 ( 3.1%) 0.0514 ( 3.4%) SILGen
0.0366 ( 3.3%) 0.0098 ( 2.5%) 0.0464 ( 3.1%) 0.0470 ( 3.1%) precheck-target
0.0271 ( 2.5%) 0.0028 ( 0.7%) 0.0299 ( 2.0%) 0.0332 ( 2.2%) SILGen-function
0.0203 ( 1.8%) 0.0059 ( 1.5%) 0.0262 ( 1.8%) 0.0267 ( 1.7%) build-rewrite-system
0.0173 ( 1.6%) 0.0005 ( 0.1%) 0.0178 ( 1.2%) 0.0198 ( 1.3%) SIL optimization
0.0100 ( 0.9%) 0.0093 ( 2.4%) 0.0193 ( 1.3%) 0.0196 ( 1.3%) import-clang-decl
0.0020 ( 0.2%) 0.0027 ( 0.7%) 0.0047 ( 0.3%) 0.0047 ( 0.3%) load-stdlib
0.0005 ( 0.0%) 0.0005 ( 0.1%) 0.0010 ( 0.1%) 0.0010 ( 0.1%) load-all-members
0.0002 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) module-populate-cache
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) associated-type-inference
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) get-conformance-access-path
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) SIL verification, pre-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 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
1.0969 (100.0%) 0.3859 (100.0%) 1.4828 (100.0%) 1.5303 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 0.7621 seconds (0.8001 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.5704 (100.0%) 0.1917 (100.0%) 0.7621 (100.0%) 0.8001 (100.0%) Building Target
0.5704 (100.0%) 0.1917 (100.0%) 0.7621 (100.0%) 0.8001 (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)}
^
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-1745745001995966-swift-frontend-ComposableArchitecture-AnyReducerCompatibility.swift-arm64_apple_tvos13.0-o-Onone-437830702.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 1.0364 seconds (1.0646 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0756 ( 10.5%) 0.0948 ( 29.8%) 0.1704 ( 16.4%) 0.1786 ( 16.8%) parse-and-resolve-imports
0.0666 ( 9.3%) 0.0896 ( 28.2%) 0.1562 ( 15.1%) 0.1643 ( 15.4%) Import resolution
0.1174 ( 16.4%) 0.0258 ( 8.1%) 0.1432 ( 13.8%) 0.1438 ( 13.5%) perform-sema
0.1163 ( 16.2%) 0.0257 ( 8.1%) 0.1420 ( 13.7%) 0.1425 ( 13.4%) Type checking and Semantic analysis
0.0879 ( 12.2%) 0.0201 ( 6.3%) 0.1081 ( 10.4%) 0.1085 ( 10.2%) typecheck-stmt
0.0778 ( 10.8%) 0.0187 ( 5.9%) 0.0965 ( 9.3%) 0.0969 ( 9.1%) typecheck-decl
0.0471 ( 6.6%) 0.0118 ( 3.7%) 0.0588 ( 5.7%) 0.0591 ( 5.5%) typecheck-expr
0.0388 ( 5.4%) 0.0112 ( 3.5%) 0.0500 ( 4.8%) 0.0584 ( 5.5%) IRGen
0.0290 ( 4.0%) 0.0034 ( 1.1%) 0.0325 ( 3.1%) 0.0328 ( 3.1%) SILGen
0.0207 ( 2.9%) 0.0026 ( 0.8%) 0.0233 ( 2.2%) 0.0236 ( 2.2%) SILGen-function
0.0137 ( 1.9%) 0.0002 ( 0.1%) 0.0139 ( 1.3%) 0.0141 ( 1.3%) SIL optimization
0.0113 ( 1.6%) 0.0020 ( 0.6%) 0.0134 ( 1.3%) 0.0134 ( 1.3%) precheck-target
0.0053 ( 0.7%) 0.0069 ( 2.2%) 0.0122 ( 1.2%) 0.0122 ( 1.1%) import-clang-decl
0.0093 ( 1.3%) 0.0028 ( 0.9%) 0.0121 ( 1.2%) 0.0121 ( 1.1%) build-rewrite-system
0.0010 ( 0.1%) 0.0025 ( 0.8%) 0.0035 ( 0.3%) 0.0037 ( 0.3%) load-stdlib
0.0002 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) module-populate-cache
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) associated-type-inference
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 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%) get-conformance-access-path
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 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.7182 (100.0%) 0.3182 (100.0%) 1.0364 (100.0%) 1.0646 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 0.6434 seconds (0.6798 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.4662 (100.0%) 0.1772 (100.0%) 0.6434 (100.0%) 0.6798 (100.0%) Building Target
0.4662 (100.0%) 0.1772 (100.0%) 0.6434 (100.0%) 0.6798 (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
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-1745745001990720-swift-frontend-ComposableArchitecture-Optional.swift-arm64_apple_tvos13.0-o-Onone-1845032871.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 0.5192 seconds (0.5266 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0735 ( 24.8%) 0.0935 ( 41.9%) 0.1670 ( 32.2%) 0.1694 ( 32.2%) parse-and-resolve-imports
0.0655 ( 22.1%) 0.0864 ( 38.7%) 0.1518 ( 29.2%) 0.1542 ( 29.3%) Import resolution
0.0296 ( 10.0%) 0.0071 ( 3.2%) 0.0366 ( 7.1%) 0.0369 ( 7.0%) perform-sema
0.0290 ( 9.8%) 0.0070 ( 3.1%) 0.0361 ( 6.9%) 0.0363 ( 6.9%) Type checking and Semantic analysis
0.0220 ( 7.4%) 0.0076 ( 3.4%) 0.0297 ( 5.7%) 0.0299 ( 5.7%) IRGen
0.0144 ( 4.9%) 0.0029 ( 1.3%) 0.0173 ( 3.3%) 0.0176 ( 3.3%) typecheck-decl
0.0136 ( 4.6%) 0.0039 ( 1.8%) 0.0175 ( 3.4%) 0.0175 ( 3.3%) typecheck-stmt
0.0137 ( 4.6%) 0.0018 ( 0.8%) 0.0155 ( 3.0%) 0.0157 ( 3.0%) SILGen
0.0105 ( 3.6%) 0.0034 ( 1.5%) 0.0139 ( 2.7%) 0.0141 ( 2.7%) typecheck-expr
0.0095 ( 3.2%) 0.0003 ( 0.1%) 0.0098 ( 1.9%) 0.0102 ( 1.9%) SIL optimization
0.0069 ( 2.3%) 0.0008 ( 0.4%) 0.0077 ( 1.5%) 0.0077 ( 1.5%) SILGen-function
0.0027 ( 0.9%) 0.0047 ( 2.1%) 0.0075 ( 1.4%) 0.0075 ( 1.4%) import-clang-decl
0.0014 ( 0.5%) 0.0029 ( 1.3%) 0.0042 ( 0.8%) 0.0050 ( 0.9%) load-stdlib
0.0016 ( 0.5%) 0.0004 ( 0.2%) 0.0020 ( 0.4%) 0.0020 ( 0.4%) build-rewrite-system
0.0016 ( 0.5%) 0.0004 ( 0.2%) 0.0020 ( 0.4%) 0.0020 ( 0.4%) precheck-target
0.0003 ( 0.1%) 0.0001 ( 0.0%) 0.0003 ( 0.1%) 0.0004 ( 0.1%) module-populate-cache
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) associated-type-inference
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, post-optimization
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%) 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.2960 (100.0%) 0.2232 (100.0%) 0.5192 (100.0%) 0.5266 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 0.3898 seconds (0.3956 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.2489 (100.0%) 0.1409 (100.0%) 0.3898 (100.0%) 0.3956 (100.0%) Building Target
0.2489 (100.0%) 0.1409 (100.0%) 0.3898 (100.0%) 0.3956 (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
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-1745745002009040-swift-frontend-ComposableArchitecture-MainQueue.swift-arm64_apple_tvos13.0-o-Onone-1385036382.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 0.9070 seconds (0.9210 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0772 ( 12.7%) 0.1051 ( 35.2%) 0.1822 ( 20.1%) 0.1847 ( 20.1%) parse-and-resolve-imports
0.0717 ( 11.8%) 0.1002 ( 33.6%) 0.1719 ( 19.0%) 0.1743 ( 18.9%) Import resolution
0.0985 ( 16.2%) 0.0209 ( 7.0%) 0.1193 ( 13.2%) 0.1210 ( 13.1%) perform-sema
0.0979 ( 16.1%) 0.0208 ( 7.0%) 0.1188 ( 13.1%) 0.1204 ( 13.1%) Type checking and Semantic analysis
0.0635 ( 10.4%) 0.0116 ( 3.9%) 0.0750 ( 8.3%) 0.0767 ( 8.3%) typecheck-stmt
0.0502 ( 8.3%) 0.0111 ( 3.7%) 0.0613 ( 6.8%) 0.0632 ( 6.9%) IRGen
0.0393 ( 6.5%) 0.0085 ( 2.9%) 0.0478 ( 5.3%) 0.0478 ( 5.2%) typecheck-decl
0.0326 ( 5.4%) 0.0035 ( 1.2%) 0.0361 ( 4.0%) 0.0378 ( 4.1%) SILGen
0.0232 ( 3.8%) 0.0037 ( 1.2%) 0.0269 ( 3.0%) 0.0270 ( 2.9%) typecheck-expr
0.0239 ( 3.9%) 0.0020 ( 0.7%) 0.0259 ( 2.9%) 0.0262 ( 2.8%) SILGen-function
0.0117 ( 1.9%) 0.0002 ( 0.1%) 0.0118 ( 1.3%) 0.0120 ( 1.3%) SIL optimization
0.0040 ( 0.7%) 0.0060 ( 2.0%) 0.0100 ( 1.1%) 0.0101 ( 1.1%) import-clang-decl
0.0078 ( 1.3%) 0.0009 ( 0.3%) 0.0087 ( 1.0%) 0.0087 ( 0.9%) precheck-target
0.0053 ( 0.9%) 0.0012 ( 0.4%) 0.0065 ( 0.7%) 0.0065 ( 0.7%) build-rewrite-system
0.0014 ( 0.2%) 0.0029 ( 1.0%) 0.0044 ( 0.5%) 0.0044 ( 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%) load-all-members
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) associated-type-inference
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) get-conformance-access-path
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 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%) AST verification
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) perform-whole-module-type-checking
0.6085 (100.0%) 0.2985 (100.0%) 0.9070 (100.0%) 0.9210 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 0.7120 seconds (0.7421 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.5271 (100.0%) 0.1849 (100.0%) 0.7120 (100.0%) 0.7421 (100.0%) Building Target
0.5271 (100.0%) 0.1849 (100.0%) 0.7120 (100.0%) 0.7421 (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
SwiftDriverJobDiscovery normal arm64 Compiling TextState.swift (in target '_SwiftUINavigationState' from project 'swiftui-navigation')
SwiftDriver\ Compilation _SwiftUINavigationState normal arm64 com.apple.xcode.tools.swift.compiler (in target '_SwiftUINavigationState' from project 'swiftui-navigation')
cd /Users/admin/builder/spi-builder-workspace
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name _SwiftUINavigationState -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swiftui-navigation.build/Debug-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 Exports.swift, OpenExistential.swift, RuntimeWarnings.swift (in target 'Dependencies' from project 'swift-dependencies')
SwiftCompile normal arm64 Compiling\ Store.swift,\ ActionWrappingScheduler.swift,\ Alert.swift,\ Binding.swift,\ ConfirmationDialog.swift,\ ForEachStore.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/Store.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/ActionWrappingScheduler.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Alert.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/Binding.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/ConfirmationDialog.swift /Users/admin/builder/spi-builder-workspace/Sources/ComposableArchitecture/SwiftUI/ForEachStore.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
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 {
^
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1745745002061134-swift-frontend-ComposableArchitecture-Store.swift-arm64_apple_tvos13.0-o-Onone-3231662027.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 1.4815 seconds (1.5135 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.2425 ( 21.3%) 0.0356 ( 10.3%) 0.2781 ( 18.8%) 0.2835 ( 18.7%) perform-sema
0.2420 ( 21.3%) 0.0355 ( 10.3%) 0.2775 ( 18.7%) 0.2828 ( 18.7%) Type checking and Semantic analysis
0.0817 ( 7.2%) 0.0953 ( 27.7%) 0.1771 ( 12.0%) 0.1794 ( 11.9%) parse-and-resolve-imports
0.0750 ( 6.6%) 0.0905 ( 26.3%) 0.1655 ( 11.2%) 0.1676 ( 11.1%) Import resolution
0.1092 ( 9.6%) 0.0162 ( 4.7%) 0.1254 ( 8.5%) 0.1267 ( 8.4%) typecheck-stmt
0.0826 ( 7.3%) 0.0132 ( 3.8%) 0.0959 ( 6.5%) 0.0969 ( 6.4%) typecheck-expr
0.0707 ( 6.2%) 0.0123 ( 3.6%) 0.0830 ( 5.6%) 0.0833 ( 5.5%) typecheck-decl
0.0577 ( 5.1%) 0.0141 ( 4.1%) 0.0717 ( 4.8%) 0.0781 ( 5.2%) IRGen
0.0534 ( 4.7%) 0.0047 ( 1.4%) 0.0581 ( 3.9%) 0.0636 ( 4.2%) SILGen
0.0414 ( 3.6%) 0.0089 ( 2.6%) 0.0503 ( 3.4%) 0.0507 ( 3.3%) precheck-target
0.0349 ( 3.1%) 0.0018 ( 0.5%) 0.0367 ( 2.5%) 0.0369 ( 2.4%) SILGen-function
0.0248 ( 2.2%) 0.0063 ( 1.8%) 0.0312 ( 2.1%) 0.0312 ( 2.1%) build-rewrite-system
0.0137 ( 1.2%) 0.0014 ( 0.4%) 0.0151 ( 1.0%) 0.0169 ( 1.1%) SIL optimization
0.0047 ( 0.4%) 0.0057 ( 1.6%) 0.0104 ( 0.7%) 0.0104 ( 0.7%) import-clang-decl
0.0019 ( 0.2%) 0.0029 ( 0.8%) 0.0048 ( 0.3%) 0.0048 ( 0.3%) load-stdlib
0.0002 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) get-conformance-access-path
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) module-populate-cache
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) associated-type-inference
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) SIL verification, pre-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 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
1.1369 (100.0%) 0.3446 (100.0%) 1.4815 (100.0%) 1.5135 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 0.9281 seconds (0.9602 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.7399 (100.0%) 0.1882 (100.0%) 0.9281 (100.0%) 0.9602 (100.0%) Building Target
0.7399 (100.0%) 0.1882 (100.0%) 0.9281 (100.0%) 0.9602 (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-1745745002062394-swift-frontend-ComposableArchitecture-OpenExistential.swift-arm64_apple_tvos13.0-o-Onone-4167639733.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 0.8111 seconds (0.8218 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0743 ( 13.7%) 0.0868 ( 32.1%) 0.1611 ( 19.9%) 0.1632 ( 19.9%) parse-and-resolve-imports
0.0687 ( 12.7%) 0.0828 ( 30.6%) 0.1514 ( 18.7%) 0.1535 ( 18.7%) Import resolution
0.0840 ( 15.5%) 0.0196 ( 7.3%) 0.1036 ( 12.8%) 0.1049 ( 12.8%) perform-sema
0.0835 ( 15.4%) 0.0196 ( 7.2%) 0.1030 ( 12.7%) 0.1044 ( 12.7%) Type checking and Semantic analysis
0.0536 ( 9.9%) 0.0115 ( 4.2%) 0.0650 ( 8.0%) 0.0656 ( 8.0%) typecheck-stmt
0.0323 ( 6.0%) 0.0112 ( 4.1%) 0.0434 ( 5.4%) 0.0438 ( 5.3%) IRGen
0.0321 ( 5.9%) 0.0089 ( 3.3%) 0.0409 ( 5.0%) 0.0417 ( 5.1%) typecheck-decl
0.0301 ( 5.6%) 0.0086 ( 3.2%) 0.0387 ( 4.8%) 0.0395 ( 4.8%) typecheck-expr
0.0218 ( 4.0%) 0.0029 ( 1.1%) 0.0247 ( 3.0%) 0.0248 ( 3.0%) SILGen
0.0178 ( 3.3%) 0.0048 ( 1.8%) 0.0226 ( 2.8%) 0.0239 ( 2.9%) build-rewrite-system
0.0151 ( 2.8%) 0.0022 ( 0.8%) 0.0174 ( 2.1%) 0.0174 ( 2.1%) SILGen-function
0.0143 ( 2.6%) 0.0031 ( 1.1%) 0.0174 ( 2.1%) 0.0174 ( 2.1%) precheck-target
0.0049 ( 0.9%) 0.0059 ( 2.2%) 0.0108 ( 1.3%) 0.0109 ( 1.3%) import-clang-decl
0.0069 ( 1.3%) 0.0001 ( 0.0%) 0.0070 ( 0.9%) 0.0071 ( 0.9%) SIL optimization
0.0013 ( 0.2%) 0.0022 ( 0.8%) 0.0035 ( 0.4%) 0.0035 ( 0.4%) load-stdlib
0.0002 ( 0.0%) 0.0000 ( 0.0%) 0.0002 ( 0.0%) 0.0002 ( 0.0%) module-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 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%) populate-source-file-class-member-cache
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%) AST verification
0.5408 (100.0%) 0.2702 (100.0%) 0.8111 (100.0%) 0.8218 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 0.4856 seconds (0.4935 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.3315 (100.0%) 0.1542 (100.0%) 0.4856 (100.0%) 0.4935 (100.0%) Building Target
0.3315 (100.0%) 0.1542 (100.0%) 0.4856 (100.0%) 0.4935 (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\ 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-1745745002074145-swift-frontend-ComposableArchitecture-Throttling.swift-arm64_apple_tvos13.0-o-Onone-4172735067.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 0.7473 seconds (0.8962 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.0743 ( 15.0%) 0.0880 ( 34.9%) 0.1624 ( 21.7%) 0.1681 ( 18.8%) parse-and-resolve-imports
0.0678 ( 13.7%) 0.0813 ( 32.3%) 0.1491 ( 19.9%) 0.1548 ( 17.3%) Import resolution
0.0755 ( 15.2%) 0.0165 ( 6.5%) 0.0919 ( 12.3%) 0.1347 ( 15.0%) perform-sema
0.0750 ( 15.1%) 0.0164 ( 6.5%) 0.0914 ( 12.2%) 0.1342 ( 15.0%) Type checking and Semantic analysis
0.0548 ( 11.1%) 0.0109 ( 4.3%) 0.0657 ( 8.8%) 0.0662 ( 7.4%) typecheck-stmt
0.0175 ( 3.5%) 0.0049 ( 2.0%) 0.0224 ( 3.0%) 0.0647 ( 7.2%) typecheck-decl
0.0371 ( 7.5%) 0.0095 ( 3.8%) 0.0466 ( 6.2%) 0.0498 ( 5.6%) IRGen
0.0265 ( 5.4%) 0.0026 ( 1.0%) 0.0292 ( 3.9%) 0.0304 ( 3.4%) SILGen
0.0194 ( 3.9%) 0.0019 ( 0.8%) 0.0213 ( 2.9%) 0.0222 ( 2.5%) SILGen-function
0.0140 ( 2.8%) 0.0012 ( 0.5%) 0.0152 ( 2.0%) 0.0187 ( 2.1%) SIL optimization
0.0101 ( 2.0%) 0.0031 ( 1.2%) 0.0132 ( 1.8%) 0.0132 ( 1.5%) precheck-target
0.0094 ( 1.9%) 0.0033 ( 1.3%) 0.0128 ( 1.7%) 0.0128 ( 1.4%) build-rewrite-system
0.0076 ( 1.5%) 0.0028 ( 1.1%) 0.0104 ( 1.4%) 0.0106 ( 1.2%) typecheck-expr
0.0035 ( 0.7%) 0.0059 ( 2.3%) 0.0094 ( 1.3%) 0.0094 ( 1.1%) import-clang-decl
0.0021 ( 0.4%) 0.0036 ( 1.4%) 0.0057 ( 0.8%) 0.0057 ( 0.6%) load-stdlib
0.0003 ( 0.1%) 0.0000 ( 0.0%) 0.0003 ( 0.0%) 0.0003 ( 0.0%) module-populate-cache
0.0002 ( 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.0000 ( 0.0%) 0.0000 ( 0.0%) load-all-members
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) get-conformance-access-path
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-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%) 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.4953 (100.0%) 0.2520 (100.0%) 0.7473 (100.0%) 0.8962 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 0.5540 seconds (0.6298 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.3944 (100.0%) 0.1596 (100.0%) 0.5540 (100.0%) 0.6298 (100.0%) Building Target
0.3944 (100.0%) 0.1596 (100.0%) 0.5540 (100.0%) 0.6298 (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 UUID.swift, WithRandomNumberGenerator.swift, Deprecations.swift (in target 'Dependencies' from project 'swift-dependencies')
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-1745745002200159-swift-frontend-ComposableArchitecture-Identified.swift-arm64_apple_tvos13.0-o-Onone-573217507.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 2.9667 seconds (3.2034 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.5068 ( 20.1%) 0.0671 ( 15.0%) 0.5739 ( 19.3%) 0.6244 ( 19.5%) perform-sema
0.5063 ( 20.1%) 0.0670 ( 15.0%) 0.5733 ( 19.3%) 0.6238 ( 19.5%) Type checking and Semantic analysis
0.4027 ( 16.0%) 0.0491 ( 11.0%) 0.4518 ( 15.2%) 0.5015 ( 15.7%) typecheck-stmt
0.3794 ( 15.1%) 0.0468 ( 10.5%) 0.4262 ( 14.4%) 0.4746 ( 14.8%) typecheck-expr
0.0792 ( 3.1%) 0.0765 ( 17.1%) 0.1557 ( 5.2%) 0.1570 ( 4.9%) parse-and-resolve-imports
0.1285 ( 5.1%) 0.0185 ( 4.1%) 0.1471 ( 5.0%) 0.1478 ( 4.6%) typecheck-decl
0.0709 ( 2.8%) 0.0717 ( 16.0%) 0.1425 ( 4.8%) 0.1438 ( 4.5%) Import resolution
0.1242 ( 4.9%) 0.0144 ( 3.2%) 0.1387 ( 4.7%) 0.1387 ( 4.3%) IRGen
0.1067 ( 4.2%) 0.0063 ( 1.4%) 0.1130 ( 3.8%) 0.1130 ( 3.5%) SILGen
0.0677 ( 2.7%) 0.0095 ( 2.1%) 0.0771 ( 2.6%) 0.1101 ( 3.4%) precheck-target
0.0819 ( 3.2%) 0.0046 ( 1.0%) 0.0865 ( 2.9%) 0.0865 ( 2.7%) SILGen-function
0.0314 ( 1.2%) 0.0001 ( 0.0%) 0.0315 ( 1.1%) 0.0315 ( 1.0%) SIL optimization
0.0213 ( 0.8%) 0.0053 ( 1.2%) 0.0266 ( 0.9%) 0.0276 ( 0.9%) build-rewrite-system
0.0071 ( 0.3%) 0.0081 ( 1.8%) 0.0152 ( 0.5%) 0.0155 ( 0.5%) import-clang-decl
0.0011 ( 0.0%) 0.0020 ( 0.4%) 0.0030 ( 0.1%) 0.0030 ( 0.1%) load-stdlib
0.0014 ( 0.1%) 0.0003 ( 0.1%) 0.0017 ( 0.1%) 0.0017 ( 0.1%) typecheck-expr-pattern
0.0007 ( 0.0%) 0.0001 ( 0.0%) 0.0008 ( 0.0%) 0.0008 ( 0.0%) load-all-members
0.0007 ( 0.0%) 0.0000 ( 0.0%) 0.0008 ( 0.0%) 0.0008 ( 0.0%) typecheck-for-each
0.0002 ( 0.0%) 0.0001 ( 0.0%) 0.0003 ( 0.0%) 0.0003 ( 0.0%) module-populate-cache
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.0001 ( 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%) get-conformance-access-path
0.0001 ( 0.0%) 0.0000 ( 0.0%) 0.0001 ( 0.0%) 0.0001 ( 0.0%) SIL verification, pre-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) SIL verification, post-optimization
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) source-file-populate-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) perform-whole-module-type-checking
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) populate-source-file-class-member-cache
0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) 0.0000 ( 0.0%) AST verification
2.5190 (100.0%) 0.4476 (100.0%) 2.9667 (100.0%) 3.2034 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 1.7821 seconds (1.8346 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
1.5790 (100.0%) 0.2031 (100.0%) 1.7821 (100.0%) 1.8346 (100.0%) Building Target
1.5790 (100.0%) 0.2031 (100.0%) 1.7821 (100.0%) 1.8346 (100.0%) Total
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 Optional.swift, Reduce.swift, Scope.swift, SignpostReducer.swift, ReducerProtocol.swift, SchedulerExtensions.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
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-1745745002466395-swift-frontend-ComposableArchitecture-ImmediateScheduler.swift-arm64_apple_tvos13.0-o-Onone-946711790.json' for writing
===-------------------------------------------------------------------------===
Swift compilation
===-------------------------------------------------------------------------===
Total Execution Time: 0.8481 seconds (0.8821 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.1088 ( 17.5%) 0.0240 ( 10.6%) 0.1328 ( 15.7%) 0.1379 ( 15.6%) perform-sema
0.1083 ( 17.4%) 0.0240 ( 10.6%) 0.1323 ( 15.6%) 0.1374 ( 15.6%) Type checking and Semantic analysis
0.0669 ( 10.8%) 0.0633 ( 27.9%) 0.1301 ( 15.3%) 0.1372 ( 15.6%) parse-and-resolve-imports
0.0609 ( 9.8%) 0.0584 ( 25.8%) 0.1194 ( 14.1%) 0.1258 ( 14.3%) Import resolution
0.0688 ( 11.1%) 0.0110 ( 4.8%) 0.0798 ( 9.4%) 0.0835 ( 9.5%) typecheck-stmt
0.0503 ( 8.1%) 0.0071 ( 3.1%) 0.0573 ( 6.8%) 0.0598 ( 6.8%) typecheck-expr
0.0402 ( 6.5%) 0.0124 ( 5.5%) 0.0526 ( 6.2%) 0.0540 ( 6.1%) typecheck-decl
0.0278 ( 4.5%) 0.0077 ( 3.4%) 0.0355 ( 4.2%) 0.0355 ( 4.0%) IRGen
0.0292 ( 4.7%) 0.0024 ( 1.0%) 0.0316 ( 3.7%) 0.0317 ( 3.6%) SILGen
0.0184 ( 3.0%) 0.0014 ( 0.6%) 0.0198 ( 2.3%) 0.0198 ( 2.2%) SILGen-function
0.0143 ( 2.3%) 0.0018 ( 0.8%) 0.0161 ( 1.9%) 0.0172 ( 2.0%) precheck-target
0.0069 ( 1.1%) 0.0078 ( 3.4%) 0.0147 ( 1.7%) 0.0154 ( 1.7%) import-clang-decl
0.0089 ( 1.4%) 0.0025 ( 1.1%) 0.0114 ( 1.3%) 0.0123 ( 1.4%) build-rewrite-system
0.0088 ( 1.4%) 0.0001 ( 0.0%) 0.0089 ( 1.0%) 0.0089 ( 1.0%) SIL optimization
0.0016 ( 0.3%) 0.0025 ( 1.1%) 0.0041 ( 0.5%) 0.0041 ( 0.5%) load-stdlib
0.0007 ( 0.1%) 0.0001 ( 0.0%) 0.0007 ( 0.1%) 0.0007 ( 0.1%) typecheck-for-each
0.0005 ( 0.1%) 0.0001 ( 0.0%) 0.0006 ( 0.1%) 0.0006 ( 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.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%) 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%) get-conformance-access-path
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.6216 (100.0%) 0.2265 (100.0%) 0.8481 (100.0%) 0.8821 (100.0%) Total
===-------------------------------------------------------------------------===
Running Program
===-------------------------------------------------------------------------===
Total Execution Time: 0.5081 seconds (0.5205 wall clock)
---User Time--- --System Time-- --User+System-- ---Wall Time--- --- Name ---
0.3852 (100.0%) 0.1230 (100.0%) 0.5081 (100.0%) 0.5205 (100.0%) Building Target
0.3852 (100.0%) 0.1230 (100.0%) 0.5081 (100.0%) 0.5205 (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)
^
SwiftDriverJobDiscovery normal arm64 Compiling DebugReducer.swift, DependencyKeyWritingReducer.swift, EmptyReducer.swift, ForEachReducer.swift, IfCaseLetReducer.swift, IfLetReducer.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
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
SwiftDriverJobDiscovery normal arm64 Compiling OpenExistential.swift, RuntimeWarnings.swift, TaskCancellableValue.swift, TypeName.swift, AnyReducer.swift, AnyReducerBinding.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/IdentifiedCollections.o (in target 'IdentifiedCollections' from project 'swift-identified-collections')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swift-identified-collections
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/IdentifiedCollections.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/_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:10:02.631 appintentsmetadataprocessor[1792:8973] Starting appintentsmetadataprocessor export
2025-04-27 02:10:02.677 appintentsmetadataprocessor[1792:8973] Extracted no relevant App Intents symbols, skipping writing output
ExtractAppIntentsMetadata (in target '_SwiftUINavigationState' from project 'swiftui-navigation')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/swiftui-navigation
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name _SwiftUINavigationState --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/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:10:02.670 appintentsmetadataprocessor[1793:8990] Starting appintentsmetadataprocessor export
2025-04-27 02:10:02.721 appintentsmetadataprocessor[1793:8990] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling AnyReducerCompatibility.swift, AnyReducerDebug.swift, AnyReducerSignpost.swift, ReducerBuilder.swift, BindingReducer.swift, CombineReducers.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
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 Throttling.swift, Timer.swift, SignalProducer.swift, TaskResult.swift, Binding+IsPresent.swift, Box.swift (in target 'ComposableArchitecture' from project 'reactiveswift-composable-architecture')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-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 MainQueue.swift, Effect.swift, Animation.swift, Cancellation.swift, Debouncing.swift, Deferring.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 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.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/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/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 ImmediateScheduler.swift, AlertStateUIKit.swift, IfLetUIKit.swift, UIKitAnimationScheduler.swift, ViewStore.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:10:04.123 appintentsmetadataprocessor[1797:9034] Starting appintentsmetadataprocessor export
2025-04-27 02:10:04.158 appintentsmetadataprocessor[1797:9034] 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.