The Swift Package Index logo.Swift Package Index

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

Build Information

Successful build of AsyncStateMachine, reference 0.1.0 (54cfca), with Swift 6.1 for tvOS using Xcode 16.3 on 27 Apr 2025 08:33:45 UTC.

Swift 6 data race errors: 3

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme AsyncStateMachine -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

      currentOutput.matches(output)
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/Runtime/Runtime.swift:191:32: warning: capture of 'state' with non-sendable type 'S' in a '@Sendable' closure; this is an error in the Swift 6 language mode
      guard inputState.matches(state) else { return }
                               ^
/Users/admin/builder/spi-builder-workspace/Sources/Runtime/Runtime.swift:22:23: note: consider making generic parameter 'S' conform to the 'Sendable' protocol
public struct Runtime<S, E, O>: Sendable
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Runtime/Runtime.swift:192:20: warning: capture of 'event' with non-sendable type 'OtherE' in a '@Sendable' closure; this is an error in the Swift 6 language mode
      channel.push(event)
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Runtime/Runtime.swift:185:31: note: consider making generic parameter 'OtherE' conform to the 'Sendable' protocol
  public func connectAsSender<OtherE>(
                              ^
                                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Runtime/Runtime.swift:203:62: warning: capture of 'state' with non-sendable type '(StateAssociatedValue) -> S' in a '@Sendable' closure; this is an error in the Swift 6 language mode
      guard let value = inputState.associatedValue(matching: state)
                                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Runtime/Runtime.swift:203:62: note: a function type must be marked '@Sendable' to conform to 'Sendable'
      guard let value = inputState.associatedValue(matching: state)
                                                             ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Runtime/SideEffect.swift (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StateMachine/DSLCompatible.swift (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/StateMachine/DSLCompatible.swift:61:19: warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
    return memcmp(&me, &other, MemoryLayout<Self>.size) == 0 || me.label == other.label
                  ^
/Users/admin/builder/spi-builder-workspace/Sources/StateMachine/DSLCompatible.swift:61:24: warning: forming 'UnsafeRawPointer' to a variable of type 'Self'; this is likely incorrect because 'Self' may contain an object reference.
    return memcmp(&me, &other, MemoryLayout<Self>.size) == 0 || me.label == other.label
                       ^
SwiftCompile normal arm64 Compiling\ OrderedStorage.swift,\ ThrowingInject.swift,\ XCTStateMachine.swift /Users/admin/builder/spi-builder-workspace/Sources/Supporting/OrderedStorage.swift /Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift /Users/admin/builder/spi-builder-workspace/Sources/XCTest/XCTStateMachine.swift (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Supporting/OrderedStorage.swift (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:14:25: warning: capture of 'a' with non-sendable type 'A' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:9:20: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func inject<A, R>(
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:24:25: warning: capture of 'a' with non-sendable type 'A' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a, b)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:18:20: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func inject<A, B, R>(
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:24:28: warning: capture of 'b' with non-sendable type 'B' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a, b)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:18:23: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func inject<A, B, R>(
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:35:25: warning: capture of 'a' with non-sendable type 'A' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a, b, c)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:28:20: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func inject<A, B, C, R>(
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:35:28: warning: capture of 'b' with non-sendable type 'B' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a, b, c)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:28:23: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func inject<A, B, C, R>(
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:35:31: warning: capture of 'c' with non-sendable type 'C' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a, b, c)
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:28:26: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func inject<A, B, C, R>(
                         ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:47:25: warning: capture of 'a' with non-sendable type 'A' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a, b, c, d)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:39:20: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func inject<A, B, C, D, R>(
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:47:28: warning: capture of 'b' with non-sendable type 'B' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a, b, c, d)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:39:23: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func inject<A, B, C, D, R>(
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:47:31: warning: capture of 'c' with non-sendable type 'C' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a, b, c, d)
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:39:26: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func inject<A, B, C, D, R>(
                         ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:47:34: warning: capture of 'd' with non-sendable type 'D' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a, b, c, d)
                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:39:29: note: consider making generic parameter 'D' conform to the 'Sendable' protocol
public func inject<A, B, C, D, R>(
                            ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:60:25: warning: capture of 'a' with non-sendable type 'A' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a, b, c, d, e)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:51:20: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, R>(
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:60:28: warning: capture of 'b' with non-sendable type 'B' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a, b, c, d, e)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:51:23: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, R>(
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:60:31: warning: capture of 'c' with non-sendable type 'C' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a, b, c, d, e)
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:51:26: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, R>(
                         ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:60:34: warning: capture of 'd' with non-sendable type 'D' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a, b, c, d, e)
                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:51:29: note: consider making generic parameter 'D' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, R>(
                            ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:60:37: warning: capture of 'e' with non-sendable type 'E' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a, b, c, d, e)
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:51:32: note: consider making generic parameter 'E' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, R>(
                               ^
                                : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:74:25: warning: capture of 'a' with non-sendable type 'A' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a, b, c, d, e, f)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:64:20: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, F, R>(
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:74:28: warning: capture of 'b' with non-sendable type 'B' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a, b, c, d, e, f)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:64:23: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, F, R>(
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:74:31: warning: capture of 'c' with non-sendable type 'C' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a, b, c, d, e, f)
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:64:26: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, F, R>(
                         ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:74:34: warning: capture of 'd' with non-sendable type 'D' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a, b, c, d, e, f)
                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:64:29: note: consider making generic parameter 'D' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, F, R>(
                            ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:74:37: warning: capture of 'e' with non-sendable type 'E' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a, b, c, d, e, f)
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:64:32: note: consider making generic parameter 'E' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, F, R>(
                               ^
                                : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:74:40: warning: capture of 'f' with non-sendable type 'F' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a, b, c, d, e, f)
                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:64:35: note: consider making generic parameter 'F' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, F, R>(
                                  ^
                                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:83:28: warning: capture of 'b' with non-sendable type 'B' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a, b)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:78:23: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func inject<A, B, R>(
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:93:28: warning: capture of 'b' with non-sendable type 'B' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a, b, c)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:87:23: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func inject<A, B, C, R>(
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:93:31: warning: capture of 'c' with non-sendable type 'C' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a, b, c)
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:87:26: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func inject<A, B, C, R>(
                         ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:104:28: warning: capture of 'b' with non-sendable type 'B' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a, b, c, d)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:97:23: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func inject<A, B, C, D, R>(
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:104:31: warning: capture of 'c' with non-sendable type 'C' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a, b, c, d)
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:97:26: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func inject<A, B, C, D, R>(
                         ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:104:34: warning: capture of 'd' with non-sendable type 'D' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a, b, c, d)
                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:97:29: note: consider making generic parameter 'D' conform to the 'Sendable' protocol
public func inject<A, B, C, D, R>(
                            ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:116:28: warning: capture of 'b' with non-sendable type 'B' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a, b, c, d, e)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:108:23: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, R>(
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:116:31: warning: capture of 'c' with non-sendable type 'C' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a, b, c, d, e)
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:108:26: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, R>(
                         ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:116:34: warning: capture of 'd' with non-sendable type 'D' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a, b, c, d, e)
                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:108:29: note: consider making generic parameter 'D' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, R>(
                            ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:116:37: warning: capture of 'e' with non-sendable type 'E' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a, b, c, d, e)
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:108:32: note: consider making generic parameter 'E' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, R>(
                               ^
                                : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:129:28: warning: capture of 'b' with non-sendable type 'B' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a, b, c, d, e, f)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:120:23: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, F, R>(
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:129:31: warning: capture of 'c' with non-sendable type 'C' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a, b, c, d, e, f)
                              ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:120:26: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, F, R>(
                         ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:129:34: warning: capture of 'd' with non-sendable type 'D' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a, b, c, d, e, f)
                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:120:29: note: consider making generic parameter 'D' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, F, R>(
                            ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:129:37: warning: capture of 'e' with non-sendable type 'E' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a, b, c, d, e, f)
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:120:32: note: consider making generic parameter 'E' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, F, R>(
                               ^
                                : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:129:40: warning: capture of 'f' with non-sendable type 'F' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        try await block(a, b, c, d, e, f)
                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/ThrowingInject.swift:120:35: note: consider making generic parameter 'F' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, F, R>(
                                  ^
                                   : Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/XCTest/XCTStateMachine.swift (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/XCTest/XCTStateMachine.swift:16:7: warning: type 'S' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  let stateMachine: StateMachine<S, E, O>
      ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTest/XCTStateMachine.swift:11:30: note: consider making generic parameter 'S' conform to the 'Sendable' protocol
public class XCTStateMachine<S, E, O>
                             ^
                              : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/XCTest/XCTStateMachine.swift:30:51: warning: type 'S' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
      let receivedState = await self.stateMachine.reduce(when: state, on: event)
                                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTest/XCTStateMachine.swift:11:30: note: consider making generic parameter 'S' conform to the 'Sendable' protocol
public class XCTStateMachine<S, E, O>
                             ^
                              : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/XCTest/XCTStateMachine.swift:52:54: warning: type 'S' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
      if let receivedState = await self.stateMachine.reduce(when: state, on: event) {
                                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTest/XCTStateMachine.swift:11:30: note: consider making generic parameter 'S' conform to the 'Sendable' protocol
public class XCTStateMachine<S, E, O>
                             ^
                              : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/XCTest/XCTStateMachine.swift:73:46: warning: type 'S' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
      let receivedOutput = self.stateMachine.output(for: state)
                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTest/XCTStateMachine.swift:11:30: note: consider making generic parameter 'S' conform to the 'Sendable' protocol
public class XCTStateMachine<S, E, O>
                             ^
                              : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/XCTest/XCTStateMachine.swift:94:49: warning: type 'S' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
      if let receivedOutput = self.stateMachine.output(for: state) {
                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTest/XCTStateMachine.swift:11:30: note: consider making generic parameter 'S' conform to the 'Sendable' protocol
public class XCTStateMachine<S, E, O>
                             ^
                              : Sendable
SwiftDriverJobDiscovery normal arm64 Compiling XCTIsTesting.swift (in target 'XCTestDynamicOverlay' from project 'xctest-dynamic-overlay')
SwiftCompile normal arm64 Compiling\ AsyncStateMachine.swift,\ Engine.swift,\ ViewStateMachine.swift /Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/AsyncStateMachine.swift /Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/Engine.swift /Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/AsyncStateMachine.swift (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/AsyncStateMachine.swift:43:7: warning: capture of 'onDeinit' with non-sendable type '(() -> Void)?' in a '@Sendable' closure; this is an error in the Swift 6 language mode
      onDeinit?()
      ^
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/AsyncStateMachine.swift:43:7: note: a function type must be marked '@Sendable' to conform to 'Sendable'
      onDeinit?()
      ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/Engine.swift (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/Engine.swift:181:10: warning: actor-isolated instance method 'cancelTasksInProgress()' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
    self.cancelTasksInProgress()
         ^
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/Engine.swift:90:8: note: calls to instance method 'cancelTasksInProgress()' from outside of its actor context are implicitly asynchronous
  func cancelTasksInProgress() {
       ^
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/Engine.swift:182:10: warning: cannot access property 'onDeinit' with a non-sendable type '(() -> Void)?' from nonisolated deinit; this is an error in the Swift 6 language mode
    self.onDeinit?()
         ^
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/Engine.swift:140:73: warning: passing closure as a 'sending' parameter risks causing data races between 'self'-isolated code and concurrent execution of the closure; this is an error in the Swift 6 language mode
      let task: Task<Void, Never> = Task(priority: middleware.priority) {
                                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/Engine.swift:141:34: note: closure captures 'value' which is accessible to 'self'-isolated code
        await middleware.execute(value)
                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/Engine.swift:163:71: warning: passing closure as a 'sending' parameter risks causing data races between 'self'-isolated code and concurrent execution of the closure; this is an error in the Swift 6 language mode
    let task: Task<Void, Never> = Task(priority: sideEffect.priority) {
                                                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/Engine.swift:165:32: note: closure captures 'events' which is accessible to 'self'-isolated code
        for try await event in events {
                               ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:19:7: warning: type 'S' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  let asyncStateMachine: AsyncStateMachine<S, E, O>
      ^
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:11:41: note: consider making generic parameter 'S' conform to the 'Sendable' protocol
public final class ViewStateMachine<VS, S, E, O>: ObservableObject, @unchecked Sendable
                                        ^
                                         : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:19:7: warning: type 'E' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
  let asyncStateMachine: AsyncStateMachine<S, E, O>
      ^
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:11:44: note: consider making generic parameter 'E' conform to the 'Sendable' protocol
public final class ViewStateMachine<VS, S, E, O>: ObservableObject, @unchecked Sendable
                                           ^
                                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:45:58: warning: type 'S' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    self.state = stateToViewState(self.asyncStateMachine.initialState)
                                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:11:41: note: consider making generic parameter 'S' conform to the 'Sendable' protocol
public final class ViewStateMachine<VS, S, E, O>: ObservableObject, @unchecked Sendable
                                        ^
                                         : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:45:58: warning: type 'E' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    self.state = stateToViewState(self.asyncStateMachine.initialState)
                                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:11:44: note: consider making generic parameter 'E' conform to the 'Sendable' protocol
public final class ViewStateMachine<VS, S, E, O>: ObservableObject, @unchecked Sendable
                                           ^
                                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:52:28: warning: type 'S' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    self.asyncStateMachine.send(event)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:11:41: note: consider making generic parameter 'S' conform to the 'Sendable' protocol
public final class ViewStateMachine<VS, S, E, O>: ObservableObject, @unchecked Sendable
                                        ^
                                         : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:52:28: warning: type 'E' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    self.asyncStateMachine.send(event)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:11:44: note: consider making generic parameter 'E' conform to the 'Sendable' protocol
public final class ViewStateMachine<VS, S, E, O>: ObservableObject, @unchecked Sendable
                                           ^
                                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:64:25: warning: type 'S' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
      asyncStateMachine.send(event)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:11:41: note: consider making generic parameter 'S' conform to the 'Sendable' protocol
public final class ViewStateMachine<VS, S, E, O>: ObservableObject, @unchecked Sendable
                                        ^
                                         : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:64:25: warning: type 'E' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
      asyncStateMachine.send(event)
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:11:44: note: consider making generic parameter 'E' conform to the 'Sendable' protocol
public final class ViewStateMachine<VS, S, E, O>: ObservableObject, @unchecked Sendable
                                           ^
                                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:149:25: warning: type 'S' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
      asyncStateMachine.send(event(value))
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:11:41: note: consider making generic parameter 'S' conform to the 'Sendable' protocol
public final class ViewStateMachine<VS, S, E, O>: ObservableObject, @unchecked Sendable
                                        ^
                                         : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:149:25: warning: type 'E' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
      asyncStateMachine.send(event(value))
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:11:44: note: consider making generic parameter 'E' conform to the 'Sendable' protocol
public final class ViewStateMachine<VS, S, E, O>: ObservableObject, @unchecked Sendable
                                           ^
                                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:149:7: warning: capture of 'asyncStateMachine' with non-sendable type 'AsyncStateMachine<S, E, O>' in a '@Sendable' closure
      asyncStateMachine.send(event(value))
      ^
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:11:41: note: consider making generic parameter 'S' conform to the 'Sendable' protocol
public final class ViewStateMachine<VS, S, E, O>: ObservableObject, @unchecked Sendable
                                        ^
                                         : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:149:7: warning: capture of 'asyncStateMachine' with non-sendable type 'AsyncStateMachine<S, E, O>' in a '@Sendable' closure
      asyncStateMachine.send(event(value))
      ^
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:11:44: note: consider making generic parameter 'E' conform to the 'Sendable' protocol
public final class ViewStateMachine<VS, S, E, O>: ObservableObject, @unchecked Sendable
                                           ^
                                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:149:30: warning: capture of 'event' with non-sendable type '(VS) -> E' in a '@Sendable' closure
      asyncStateMachine.send(event(value))
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:149:30: note: a function type must be marked '@Sendable' to conform to 'Sendable'
      asyncStateMachine.send(event(value))
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:161:25: warning: type 'S' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
      asyncStateMachine.send(event(value))
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:11:41: note: consider making generic parameter 'S' conform to the 'Sendable' protocol
public final class ViewStateMachine<VS, S, E, O>: ObservableObject, @unchecked Sendable
                                        ^
                                         : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:161:25: warning: type 'E' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
      asyncStateMachine.send(event(value))
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:11:44: note: consider making generic parameter 'E' conform to the 'Sendable' protocol
public final class ViewStateMachine<VS, S, E, O>: ObservableObject, @unchecked Sendable
                                           ^
                                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:159:27: warning: capture of 'keypath' with non-sendable type 'KeyPath<VS, T>' in a '@Sendable' closure
      self.state[keyPath: keypath]
                          ^
Swift.KeyPath:1:14: note: generic class 'KeyPath' does not conform to the 'Sendable' protocol
public class KeyPath<Root, Value> : PartialKeyPath<Root> {
             ^
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:161:7: warning: capture of 'asyncStateMachine' with non-sendable type 'AsyncStateMachine<S, E, O>' in a '@Sendable' closure
      asyncStateMachine.send(event(value))
      ^
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:11:41: note: consider making generic parameter 'S' conform to the 'Sendable' protocol
public final class ViewStateMachine<VS, S, E, O>: ObservableObject, @unchecked Sendable
                                        ^
                                         : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:161:7: warning: capture of 'asyncStateMachine' with non-sendable type 'AsyncStateMachine<S, E, O>' in a '@Sendable' closure
      asyncStateMachine.send(event(value))
      ^
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:11:44: note: consider making generic parameter 'E' conform to the 'Sendable' protocol
public final class ViewStateMachine<VS, S, E, O>: ObservableObject, @unchecked Sendable
                                           ^
                                            : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:161:30: warning: capture of 'event' with non-sendable type '(T) -> E' in a '@Sendable' closure
      asyncStateMachine.send(event(value))
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/AsyncStateMachine/ViewStateMachine.swift:161:30: note: a function type must be marked '@Sendable' to conform to 'Sendable'
      asyncStateMachine.send(event(value))
                             ^
SwiftDriverJobDiscovery normal arm64 Compiling XCTCurrentTestCase.swift (in target 'XCTestDynamicOverlay' from project 'xctest-dynamic-overlay')
SwiftDriverJobDiscovery normal arm64 Compiling XCTFail.swift (in target 'XCTestDynamicOverlay' from project 'xctest-dynamic-overlay')
SwiftCompile normal arm64 Compiling\ On.swift,\ OneOf.swift,\ StateMachine.swift /Users/admin/builder/spi-builder-workspace/Sources/StateMachine/On.swift /Users/admin/builder/spi-builder-workspace/Sources/StateMachine/OneOf.swift /Users/admin/builder/spi-builder-workspace/Sources/StateMachine/StateMachine.swift (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StateMachine/On.swift (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/StateMachine/On.swift:23:26: warning: capture of 'event' with non-sendable type 'E' in a '@Sendable' closure; this is an error in the Swift 6 language mode
      inputEvent.matches(event) && `guard`(inputEvent).predicate
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/StateMachine/On.swift:8:21: note: consider making generic parameter 'E' conform to the 'Sendable' protocol
public struct On<S, E>: Sendable
                    ^
                     : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/StateMachine/On.swift:46:35: warning: capture of 'event' with non-sendable type '(EventAssociatedValue) -> E' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        return inputEvent.matches(event) &&
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/StateMachine/On.swift:46:35: note: a function type must be marked '@Sendable' to conform to 'Sendable'
        return inputEvent.matches(event) &&
                                  ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StateMachine/OneOf.swift (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/StateMachine/OneOf.swift:41:37: warning: capture of 'components' with non-sendable type '(T) -> Bool...' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        OneOf(predicate: { input in components.contains { $0(input) } })
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/StateMachine/OneOf.swift:41:37: note: a function type must be marked '@Sendable' to conform to 'Sendable'
        OneOf(predicate: { input in components.contains { $0(input) } })
                                    ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/StateMachine/StateMachine.swift (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling DefaultInitializable.swift (in target 'XCTestDynamicOverlay' from project 'xctest-dynamic-overlay')
SwiftCompile normal arm64 Compiling\ Channel.swift,\ ExecutionStrategy.swift,\ Middleware.swift /Users/admin/builder/spi-builder-workspace/Sources/Runtime/Channel.swift /Users/admin/builder/spi-builder-workspace/Sources/Runtime/ExecutionStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Runtime/Middleware.swift (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Runtime/Channel.swift (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Runtime/ExecutionStrategy.swift (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Runtime/ExecutionStrategy.swift:22:21: warning: capture of 'state' with non-sendable type 'S' in a '@Sendable' closure; this is an error in the Swift 6 language mode
      input.matches(state)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Runtime/ExecutionStrategy.swift:8:33: note: consider making generic parameter 'S' conform to the 'Sendable' protocol
public struct ExecutionStrategy<S>: Sendable, Equatable
                                ^
                                 : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Runtime/ExecutionStrategy.swift:30:21: warning: capture of 'state' with non-sendable type '(StateAssociatedValue) -> S' in a '@Sendable' closure; this is an error in the Swift 6 language mode
      input.matches(state)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Runtime/ExecutionStrategy.swift:30:21: note: a function type must be marked '@Sendable' to conform to 'Sendable'
      input.matches(state)
                    ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Runtime/Middleware.swift (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling RuntimeWarnings.swift (in target 'XCTestDynamicOverlay' from project 'xctest-dynamic-overlay')
SwiftDriver\ Compilation XCTestDynamicOverlay normal arm64 com.apple.xcode.tools.swift.compiler (in target 'XCTestDynamicOverlay' from project 'xctest-dynamic-overlay')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name XCTestDynamicOverlay -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/xctest-dynamic-overlay.build/Debug-appletvos/XCTestDynamicOverlay.build/Objects-normal/arm64/XCTestDynamicOverlay.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 -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/xctest-dynamic-overlay.build/Debug-appletvos/XCTestDynamicOverlay.build/Objects-normal/arm64/XCTestDynamicOverlay-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/xctest-dynamic-overlay.build/Debug-appletvos/XCTestDynamicOverlay.build/Objects-normal/arm64/XCTestDynamicOverlay.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/xctest-dynamic-overlay.build/Debug-appletvos/XCTestDynamicOverlay.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/xctest-dynamic-overlay.build/Debug-appletvos/XCTestDynamicOverlay.build/Objects-normal/arm64/XCTestDynamicOverlay_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/xctest-dynamic-overlay.build/Debug-appletvos/XCTestDynamicOverlay.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/xctest-dynamic-overlay.build/Debug-appletvos/XCTestDynamicOverlay.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/xctest-dynamic-overlay.build/Debug-appletvos/XCTestDynamicOverlay.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/xctest-dynamic-overlay.build/Debug-appletvos/XCTestDynamicOverlay.build/Objects-normal/arm64/XCTestDynamicOverlay-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling Execute.swift, Guard.swift, Never+DSLCompatible.swift (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
SwiftCompile normal arm64 Compiling\ Binding+Distinct.swift,\ Inject.swift,\ ManagedCriticalState.swift /Users/admin/builder/spi-builder-workspace/Sources/Supporting/Binding+Distinct.swift /Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift /Users/admin/builder/spi-builder-workspace/Sources/Supporting/ManagedCriticalState.swift (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Supporting/Binding+Distinct.swift (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Binding+Distinct.swift:14:7: warning: capture of 'self' with non-sendable type 'Binding<Value>' in a '@Sendable' closure
      self.wrappedValue
      ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Binding+Distinct.swift:16:22: warning: capture of 'self' with non-sendable type 'Binding<Value>' in a '@Sendable' closure
      guard value != self.wrappedValue else { return }
                     ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:14:21: warning: capture of 'a' with non-sendable type 'A' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:9:20: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func inject<A, R>(
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:24:21: warning: capture of 'a' with non-sendable type 'A' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a, b)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:18:20: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func inject<A, B, R>(
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:24:24: warning: capture of 'b' with non-sendable type 'B' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a, b)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:18:23: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func inject<A, B, R>(
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:35:21: warning: capture of 'a' with non-sendable type 'A' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a, b, c)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:28:20: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func inject<A, B, C, R>(
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:35:24: warning: capture of 'b' with non-sendable type 'B' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a, b, c)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:28:23: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func inject<A, B, C, R>(
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:35:27: warning: capture of 'c' with non-sendable type 'C' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a, b, c)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:28:26: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func inject<A, B, C, R>(
                         ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:47:21: warning: capture of 'a' with non-sendable type 'A' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a, b, c, d)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:39:20: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func inject<A, B, C, D, R>(
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:47:24: warning: capture of 'b' with non-sendable type 'B' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a, b, c, d)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:39:23: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func inject<A, B, C, D, R>(
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:47:27: warning: capture of 'c' with non-sendable type 'C' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a, b, c, d)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:39:26: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func inject<A, B, C, D, R>(
                         ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:47:30: warning: capture of 'd' with non-sendable type 'D' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a, b, c, d)
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:39:29: note: consider making generic parameter 'D' conform to the 'Sendable' protocol
public func inject<A, B, C, D, R>(
                            ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:60:21: warning: capture of 'a' with non-sendable type 'A' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a, b, c, d, e)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:51:20: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, R>(
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:60:24: warning: capture of 'b' with non-sendable type 'B' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a, b, c, d, e)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:51:23: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, R>(
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:60:27: warning: capture of 'c' with non-sendable type 'C' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a, b, c, d, e)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:51:26: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, R>(
                         ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:60:30: warning: capture of 'd' with non-sendable type 'D' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a, b, c, d, e)
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:51:29: note: consider making generic parameter 'D' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, R>(
                            ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:60:33: warning: capture of 'e' with non-sendable type 'E' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a, b, c, d, e)
                                ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:51:32: note: consider making generic parameter 'E' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, R>(
                               ^
                                : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:74:21: warning: capture of 'a' with non-sendable type 'A' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a, b, c, d, e, f)
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:64:20: note: consider making generic parameter 'A' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, F, R>(
                   ^
                    : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:74:24: warning: capture of 'b' with non-sendable type 'B' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a, b, c, d, e, f)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:64:23: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, F, R>(
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:74:27: warning: capture of 'c' with non-sendable type 'C' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a, b, c, d, e, f)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:64:26: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, F, R>(
                         ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:74:30: warning: capture of 'd' with non-sendable type 'D' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a, b, c, d, e, f)
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:64:29: note: consider making generic parameter 'D' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, F, R>(
                            ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:74:33: warning: capture of 'e' with non-sendable type 'E' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a, b, c, d, e, f)
                                ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:64:32: note: consider making generic parameter 'E' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, F, R>(
                               ^
                                : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:74:36: warning: capture of 'f' with non-sendable type 'F' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a, b, c, d, e, f)
                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:64:35: note: consider making generic parameter 'F' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, F, R>(
                                  ^
                                   : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:83:24: warning: capture of 'b' with non-sendable type 'B' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a, b)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:78:23: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func inject<A, B, R>(
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:93:24: warning: capture of 'b' with non-sendable type 'B' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a, b, c)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:87:23: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func inject<A, B, C, R>(
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:93:27: warning: capture of 'c' with non-sendable type 'C' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a, b, c)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:87:26: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func inject<A, B, C, R>(
                         ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:104:24: warning: capture of 'b' with non-sendable type 'B' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a, b, c, d)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:97:23: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func inject<A, B, C, D, R>(
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:104:27: warning: capture of 'c' with non-sendable type 'C' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a, b, c, d)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:97:26: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func inject<A, B, C, D, R>(
                         ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:104:30: warning: capture of 'd' with non-sendable type 'D' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a, b, c, d)
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:97:29: note: consider making generic parameter 'D' conform to the 'Sendable' protocol
public func inject<A, B, C, D, R>(
                            ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:116:24: warning: capture of 'b' with non-sendable type 'B' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a, b, c, d, e)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:108:23: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, R>(
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:116:27: warning: capture of 'c' with non-sendable type 'C' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a, b, c, d, e)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:108:26: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, R>(
                         ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:116:30: warning: capture of 'd' with non-sendable type 'D' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a, b, c, d, e)
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:108:29: note: consider making generic parameter 'D' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, R>(
                            ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:116:33: warning: capture of 'e' with non-sendable type 'E' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a, b, c, d, e)
                                ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:108:32: note: consider making generic parameter 'E' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, R>(
                               ^
                                : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:129:24: warning: capture of 'b' with non-sendable type 'B' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a, b, c, d, e, f)
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:120:23: note: consider making generic parameter 'B' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, F, R>(
                      ^
                       : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:129:27: warning: capture of 'c' with non-sendable type 'C' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a, b, c, d, e, f)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:120:26: note: consider making generic parameter 'C' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, F, R>(
                         ^
                          : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:129:30: warning: capture of 'd' with non-sendable type 'D' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a, b, c, d, e, f)
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:120:29: note: consider making generic parameter 'D' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, F, R>(
                            ^
                             : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:129:33: warning: capture of 'e' with non-sendable type 'E' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a, b, c, d, e, f)
                                ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:120:32: note: consider making generic parameter 'E' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, F, R>(
                               ^
                                : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:129:36: warning: capture of 'f' with non-sendable type 'F' in a '@Sendable' closure; this is an error in the Swift 6 language mode
        await block(a, b, c, d, e, f)
                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/Inject.swift:120:35: note: consider making generic parameter 'F' conform to the 'Sendable' protocol
public func inject<A, B, C, D, E, F, R>(
                                  ^
                                   : Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Supporting/ManagedCriticalState.swift (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/XCTestDynamicOverlay.o normal (in target 'XCTestDynamicOverlay' from project 'xctest-dynamic-overlay')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/xctest-dynamic-overlay
    /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 -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/xctest-dynamic-overlay.build/Debug-appletvos/XCTestDynamicOverlay.build/Objects-normal/arm64/XCTestDynamicOverlay.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/xctest-dynamic-overlay.build/Debug-appletvos/XCTestDynamicOverlay.build/Objects-normal/arm64/XCTestDynamicOverlay_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/xctest-dynamic-overlay.build/Debug-appletvos/XCTestDynamicOverlay.build/Objects-normal/arm64/XCTestDynamicOverlay_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/xctest-dynamic-overlay.build/Debug-appletvos/XCTestDynamicOverlay.build/Objects-normal/arm64/XCTestDynamicOverlay.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/XCTestDynamicOverlay.o
SwiftDriverJobDiscovery normal arm64 Compiling Transition.swift, When.swift, AnyAsyncSequence.swift (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
SwiftDriverJobDiscovery normal arm64 Emitting module for AsyncStateMachine (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
SwiftDriver\ Compilation\ Requirements AsyncStateMachine normal arm64 com.apple.xcode.tools.swift.compiler (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name AsyncStateMachine -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/Objects-normal/arm64/AsyncStateMachine.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 -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/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/Objects-normal/arm64/AsyncStateMachine-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/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/Objects-normal/arm64/AsyncStateMachine.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/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/Objects-normal/arm64/AsyncStateMachine_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/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.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/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/Objects-normal/arm64/AsyncStateMachine-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/AsyncStateMachine-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/Objects-normal/arm64/AsyncStateMachine-Swift.h (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/Objects-normal/arm64/AsyncStateMachine-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/AsyncStateMachine-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachine.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/Objects-normal/arm64/AsyncStateMachine.swiftmodule (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
    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/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/Objects-normal/arm64/AsyncStateMachine.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachine.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachine.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/Objects-normal/arm64/AsyncStateMachine.swiftdoc (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
    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/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/Objects-normal/arm64/AsyncStateMachine.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachine.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachine.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/Objects-normal/arm64/AsyncStateMachine.abi.json (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
    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/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/Objects-normal/arm64/AsyncStateMachine.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachine.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachine.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/Objects-normal/arm64/AsyncStateMachine.swiftsourceinfo (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
    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/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/Objects-normal/arm64/AsyncStateMachine.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachine.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
SwiftDriver AsyncStateMachineTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name AsyncStateMachineTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/Objects-normal/arm64/AsyncStateMachineTests.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 -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/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/Objects-normal/arm64/AsyncStateMachineTests-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/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/Objects-normal/arm64/AsyncStateMachineTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/Objects-normal/arm64/AsyncStateMachineTests_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/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
ExtractAppIntentsMetadata (in target 'XCTestDynamicOverlay' from project 'xctest-dynamic-overlay')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/xctest-dynamic-overlay
    /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 XCTestDynamicOverlay --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 xctest-dynamic-overlay.XCTestDynamicOverlay --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/XCTestDynamicOverlay.appintents --target-triple arm64-apple-tvos13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/XCTestDynamicOverlay.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/xctest-dynamic-overlay.build/Debug-appletvos/XCTestDynamicOverlay.build/Objects-normal/arm64/XCTestDynamicOverlay_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/xctest-dynamic-overlay.build/Debug-appletvos/XCTestDynamicOverlay.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/xctest-dynamic-overlay.build/Debug-appletvos/XCTestDynamicOverlay.build/Objects-normal/arm64/XCTestDynamicOverlay.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/xctest-dynamic-overlay.build/Debug-appletvos/XCTestDynamicOverlay.build/XCTestDynamicOverlay.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/xctest-dynamic-overlay.build/Debug-appletvos/XCTestDynamicOverlay.build/XCTestDynamicOverlay.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/xctest-dynamic-overlay.build/Debug-appletvos/XCTestDynamicOverlay.build/Objects-normal/arm64/XCTestDynamicOverlay.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 01:33:40.291 appintentsmetadataprocessor[771:4256] Starting appintentsmetadataprocessor export
2025-04-27 01:33:40.343 appintentsmetadataprocessor[771:4256] Extracted no relevant App Intents symbols, skipping writing output
SwiftEmitModule normal arm64 Emitting\ module\ for\ AsyncStateMachineTests (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
EmitSwiftModule normal arm64 (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ InjectTests.swift,\ OrderedStorageTests.swift,\ ThrowingInjectTests.swift /Users/admin/builder/spi-builder-workspace/Tests/Supporting/InjectTests.swift /Users/admin/builder/spi-builder-workspace/Tests/Supporting/OrderedStorageTests.swift /Users/admin/builder/spi-builder-workspace/Tests/Supporting/ThrowingInjectTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/Supporting/InjectTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/Supporting/OrderedStorageTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/Supporting/ThrowingInjectTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling OrderedStorage.swift, ThrowingInject.swift, XCTStateMachine.swift (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
SwiftCompile normal arm64 Compiling\ AsyncStateMachineTests.swift,\ EngineTests.swift,\ ViewStateMachineTests.swift /Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/AsyncStateMachineTests.swift /Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift /Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/ViewStateMachineTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/AsyncStateMachineTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/AsyncStateMachineTests.swift:209:5: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
    wait(for: [allReceived], timeout: 5.0)
    ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:85:42: warning: non-sendable type 'OrderedStorage<TaskInProgress<EngineTests.State>>' of property 'tasksInProgress' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
    let tasksInProgressCount = await sut.tasksInProgress.count
                                         ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/OrderedStorage.swift:8:8: note: generic struct 'OrderedStorage' does not conform to the 'Sendable' protocol
struct OrderedStorage<Value> {
       ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:8:11: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AsyncStateMachine'
@testable import AsyncStateMachine
          ^
          @preconcurrency
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:103:7: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
      wait(for: [taskInProgressHasBeenAdded], timeout: 10.0)
      ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:110:48: warning: non-sendable type 'OrderedStorage<TaskInProgress<EngineTests.State>>' of property 'tasksInProgress' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
    let tasksInProgressCountBefore = await sut.tasksInProgress.count
                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/OrderedStorage.swift:8:8: note: generic struct 'OrderedStorage' does not conform to the 'Sendable' protocol
struct OrderedStorage<Value> {
       ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:117:47: warning: non-sendable type 'OrderedStorage<TaskInProgress<EngineTests.State>>' of property 'tasksInProgress' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
    let tasksInProgressCountAfter = await sut.tasksInProgress.count
                                              ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/OrderedStorage.swift:8:8: note: generic struct 'OrderedStorage' does not conform to the 'Sendable' protocol
struct OrderedStorage<Value> {
       ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:154:5: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
    wait(for: [taskHasStarted], timeout: 10.0)
    ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:157:37: warning: non-sendable type 'OrderedStorage<TaskInProgress<EngineTests.State>>' of property 'tasksInProgress' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
    let tasksInProgress = await sut.tasksInProgress.values
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/OrderedStorage.swift:8:8: note: generic struct 'OrderedStorage' does not conform to the 'Sendable' protocol
struct OrderedStorage<Value> {
       ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:204:5: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
    wait(for: [tasksHaveStarted], timeout: 10.0)
    ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:209:5: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
    wait(for: [taskAHasBeenCancelled], timeout: 0.5)
    ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:212:37: warning: non-sendable type 'OrderedStorage<TaskInProgress<EngineTests.State>>' of property 'tasksInProgress' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
    let tasksInProgress = await sut.tasksInProgress.values
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/OrderedStorage.swift:8:8: note: generic struct 'OrderedStorage' does not conform to the 'Sendable' protocol
struct OrderedStorage<Value> {
       ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:254:5: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
    wait(for: [tasksHaveBeenCancelled], timeout: 10.0)
    ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:256:37: warning: non-sendable type 'OrderedStorage<TaskInProgress<EngineTests.State>>' of property 'tasksInProgress' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
    let tasksInProgress = await sut.tasksInProgress.values
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/OrderedStorage.swift:8:8: note: generic struct 'OrderedStorage' does not conform to the 'Sendable' protocol
struct OrderedStorage<Value> {
       ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:287:12: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
      self.wait(for: [middlewareACanFinish], timeout: 10.0)
           ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:296:12: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
      self.wait(for: [middlewareBCanFinish], timeout: 10.0)
           ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:310:5: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
    wait(for: [middlewaresHaveBeenCalled], timeout: 10.0)
    ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:287:7: warning: capture of 'self' with non-sendable type 'EngineTests' in a '@Sendable' closure; this is an error in the Swift 6 language mode
      self.wait(for: [middlewareACanFinish], timeout: 10.0)
      ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:11:13: note: class 'EngineTests' does not conform to the 'Sendable' protocol
final class EngineTests: XCTestCase {
            ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:296:7: warning: capture of 'self' with non-sendable type 'EngineTests' in a '@Sendable' closure; this is an error in the Swift 6 language mode
      self.wait(for: [middlewareBCanFinish], timeout: 10.0)
      ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:11:13: note: class 'EngineTests' does not conform to the 'Sendable' protocol
final class EngineTests: XCTestCase {
            ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:322:37: warning: non-sendable type 'OrderedStorage<TaskInProgress<EngineTests.State>>' of property 'tasksInProgress' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
    var tasksInProgress = await sut.tasksInProgress.values
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/OrderedStorage.swift:8:8: note: generic struct 'OrderedStorage' does not conform to the 'Sendable' protocol
struct OrderedStorage<Value> {
       ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:333:33: warning: non-sendable type 'OrderedStorage<TaskInProgress<EngineTests.State>>' of property 'tasksInProgress' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
    tasksInProgress = await sut.tasksInProgress.values
                                ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/OrderedStorage.swift:8:8: note: generic struct 'OrderedStorage' does not conform to the 'Sendable' protocol
struct OrderedStorage<Value> {
       ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:355:13: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)'
      await withTaskCancellationHandler {
            ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:355:13: note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
      await withTaskCancellationHandler {
            ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:369:13: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)'
      await withTaskCancellationHandler {
            ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:369:13: note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
      await withTaskCancellationHandler {
            ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:391:5: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
    wait(for: [middlewaresHaveStarted], timeout: 10.0)
    ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:394:37: warning: non-sendable type 'OrderedStorage<TaskInProgress<EngineTests.State>>' of property 'tasksInProgress' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
    var tasksInProgress = await sut.tasksInProgress.values
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/OrderedStorage.swift:8:8: note: generic struct 'OrderedStorage' does not conform to the 'Sendable' protocol
struct OrderedStorage<Value> {
       ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:399:33: warning: non-sendable type 'OrderedStorage<TaskInProgress<EngineTests.State>>' of property 'tasksInProgress' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
    tasksInProgress = await sut.tasksInProgress.values
                                ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/OrderedStorage.swift:8:8: note: generic struct 'OrderedStorage' does not conform to the 'Sendable' protocol
struct OrderedStorage<Value> {
       ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:407:33: warning: non-sendable type 'OrderedStorage<TaskInProgress<EngineTests.State>>' of property 'tasksInProgress' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
    tasksInProgress = await sut.tasksInProgress.values
                                ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/OrderedStorage.swift:8:8: note: generic struct 'OrderedStorage' does not conform to the 'Sendable' protocol
struct OrderedStorage<Value> {
       ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:462:5: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
    wait(for: [tasksAreStarted], timeout: 10.0)
    ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:468:5: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
    wait(for: [tasksAreCancelled], timeout: 10.0)
    ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:471:37: warning: non-sendable type 'OrderedStorage<TaskInProgress<EngineTests.State>>' of property 'tasksInProgress' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
    let tasksInProgress = await sut.tasksInProgress.values
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/OrderedStorage.swift:8:8: note: generic struct 'OrderedStorage' does not conform to the 'Sendable' protocol
struct OrderedStorage<Value> {
       ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:504:12: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
      self.wait(for: [middlewareACanFinish], timeout: 10.0)
           ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:513:12: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
      self.wait(for: [middlewareBCanFinish], timeout: 10.0)
           ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:527:5: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
    wait(for: [middlewaresHaveBeenCalled], timeout: 10.0)
    ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:504:7: warning: capture of 'self' with non-sendable type 'EngineTests' in a '@Sendable' closure; this is an error in the Swift 6 language mode
      self.wait(for: [middlewareACanFinish], timeout: 10.0)
      ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:11:13: note: class 'EngineTests' does not conform to the 'Sendable' protocol
final class EngineTests: XCTestCase {
            ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:513:7: warning: capture of 'self' with non-sendable type 'EngineTests' in a '@Sendable' closure; this is an error in the Swift 6 language mode
      self.wait(for: [middlewareBCanFinish], timeout: 10.0)
      ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:11:13: note: class 'EngineTests' does not conform to the 'Sendable' protocol
final class EngineTests: XCTestCase {
            ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:539:37: warning: non-sendable type 'OrderedStorage<TaskInProgress<EngineTests.State>>' of property 'tasksInProgress' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
    var tasksInProgress = await sut.tasksInProgress.values
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/OrderedStorage.swift:8:8: note: generic struct 'OrderedStorage' does not conform to the 'Sendable' protocol
struct OrderedStorage<Value> {
       ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:550:33: warning: non-sendable type 'OrderedStorage<TaskInProgress<EngineTests.State>>' of property 'tasksInProgress' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
    tasksInProgress = await sut.tasksInProgress.values
                                ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/OrderedStorage.swift:8:8: note: generic struct 'OrderedStorage' does not conform to the 'Sendable' protocol
struct OrderedStorage<Value> {
       ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:595:5: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
    wait(for: [sideEffectIsCalled], timeout: 10.0)
    ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:645:5: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
    wait(for: [eventIsSent], timeout: 10.0)
    ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:656:37: warning: non-sendable type 'OrderedStorage<TaskInProgress<EngineTests.State>>' of property 'tasksInProgress' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
    let tasksInProgress = await sut.tasksInProgress.values
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/OrderedStorage.swift:8:8: note: generic struct 'OrderedStorage' does not conform to the 'Sendable' protocol
struct OrderedStorage<Value> {
       ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:686:37: warning: non-sendable type 'OrderedStorage<TaskInProgress<EngineTests.State>>' of property 'tasksInProgress' cannot exit actor-isolated context; this is an error in the Swift 6 language mode
    let tasksInProgress = await sut.tasksInProgress.values
                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/OrderedStorage.swift:8:8: note: generic struct 'OrderedStorage' does not conform to the 'Sendable' protocol
struct OrderedStorage<Value> {
       ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:732:5: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
    wait(for: [engineHasBeenDeinit, tasksHaveBeenCancelled], timeout: 1.0)
    ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:102:21: 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
    let task = Task {
                    ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/EngineTests.swift:103:7: note: closure captures 'self' which is accessible to code in the current task
      wait(for: [taskInProgressHasBeenAdded], timeout: 10.0)
      ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/ViewStateMachineTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/ViewStateMachineTests.swift:59:5: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
    wait(for: [eventWasReceived], timeout: 1.0)
    ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/ViewStateMachineTests.swift:334:5: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
    wait(for: [eventWasReceived], timeout: 1.0)
    ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/ViewStateMachineTests.swift:372:5: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
    wait(for: [eventWasReceived], timeout: 1.0)
    ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/ViewStateMachineTests.swift:449:5: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
    wait(for: [initialStateWasPublished], timeout: 1.0)
    ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/AsyncStateMachine/ViewStateMachineTests.swift:463:5: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
    wait(for: [eventWasReceived], timeout: 1.0)
    ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
SwiftDriverJobDiscovery normal arm64 Compiling AsyncBufferedChannel.swift, AsyncCompactScanSequence.swift, AsyncJustSequence.swift (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
SwiftCompile normal arm64 Compiling\ AsyncThrowingSequence.swift,\ Task+ForEver.swift,\ XCTStateMachineTests.swift /Users/admin/builder/spi-builder-workspace/Tests/Tools/AsyncThrowingSequence.swift /Users/admin/builder/spi-builder-workspace/Tests/Tools/Task+ForEver.swift /Users/admin/builder/spi-builder-workspace/Tests/XCTest/XCTStateMachineTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/Tools/AsyncThrowingSequence.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/Tools/Task+ForEver.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/Tools/Task+ForEver.swift:18:13: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)'
      await withTaskCancellationHandler {
            ^
/Users/admin/builder/spi-builder-workspace/Tests/Tools/Task+ForEver.swift:18:13: note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
      await withTaskCancellationHandler {
            ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/XCTest/XCTStateMachineTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Channel.swift, ExecutionStrategy.swift, Middleware.swift (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
SwiftCompile normal arm64 Compiling\ ChannelTests.swift,\ ExecutionStrategyTests.swift,\ RuntimeTests.swift /Users/admin/builder/spi-builder-workspace/Tests/Runtime/ChannelTests.swift /Users/admin/builder/spi-builder-workspace/Tests/Runtime/ExecutionStrategyTests.swift /Users/admin/builder/spi-builder-workspace/Tests/Runtime/RuntimeTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/Runtime/ChannelTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/Runtime/ExecutionStrategyTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/Runtime/RuntimeTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling On.swift, OneOf.swift, StateMachine.swift (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
SwiftCompile normal arm64 Compiling\ AsyncLazySequence.swift,\ AsyncSequence+Collect.swift,\ AsyncSuspendableChannel.swift /Users/admin/builder/spi-builder-workspace/Tests/Tools/AsyncLazySequence.swift /Users/admin/builder/spi-builder-workspace/Tests/Tools/AsyncSequence+Collect.swift /Users/admin/builder/spi-builder-workspace/Tests/Tools/AsyncSuspendableChannel.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/Tools/AsyncLazySequence.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/Tools/AsyncSequence+Collect.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/Tools/AsyncSuspendableChannel.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/Tools/AsyncSuspendableChannel.swift:39:18: warning: 'withTaskCancellationHandler(handler:operation:)' is deprecated: renamed to 'withTaskCancellationHandler(operation:onCancel:)'
    return await withTaskCancellationHandler(handler: { [state] in
                 ^
/Users/admin/builder/spi-builder-workspace/Tests/Tools/AsyncSuspendableChannel.swift:39:18: note: use 'withTaskCancellationHandler(operation:onCancel:)' instead
    return await withTaskCancellationHandler(handler: { [state] in
                 ^                           ~~~~~~~
                                             operation
SwiftCompile normal arm64 Compiling\ DSLCompatibleTests.swift,\ ExecuteTests.swift,\ GuardTests.swift /Users/admin/builder/spi-builder-workspace/Tests/StateMachine/DSLCompatibleTests.swift /Users/admin/builder/spi-builder-workspace/Tests/StateMachine/ExecuteTests.swift /Users/admin/builder/spi-builder-workspace/Tests/StateMachine/GuardTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/StateMachine/DSLCompatibleTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/StateMachine/ExecuteTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/StateMachine/GuardTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Runtime.swift, SideEffect.swift, DSLCompatible.swift (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
SwiftCompile normal arm64 Compiling\ AsyncSubjectTests.swift,\ Binding+DebounceTests.swift,\ Binding+DistinctTests.swift /Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncSubjectTests.swift /Users/admin/builder/spi-builder-workspace/Tests/Supporting/Binding+DebounceTests.swift /Users/admin/builder/spi-builder-workspace/Tests/Supporting/Binding+DistinctTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncSubjectTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncSubjectTests.swift:103:9: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
        wait(for: [taskWasCancelled], timeout: 1.0)
        ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncSubjectTests.swift:109:5: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
    wait(for: [taskCanBeCancelled], timeout: 1.0)
    ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncSubjectTests.swift:115:5: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
    wait(for: [iterationHasFinished], timeout: 1.0)
    ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncSubjectTests.swift:148:5: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
    wait(for: [iteration1IsAwaiting, iteration2IsAwaiting], timeout: 1.0)
    ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncSubjectTests.swift:153:5: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
    wait(for: [iteration1IsFinished, iteration2IsFinished], timeout: 1.0)
    ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncSubjectTests.swift:195:5: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
    wait(for: [iterationIsFinished], timeout: 1.0)
    ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncSubjectTests.swift:98:34: 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
    let task = Task<Int?, Never> {
                                 ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncSubjectTests.swift:103:9: note: closure captures 'self' which is accessible to code in the current task
        wait(for: [taskWasCancelled], timeout: 1.0)
        ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/Supporting/Binding+DebounceTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/Supporting/Binding+DebounceTests.swift:39:7: warning: mutation of captured var 'received' in concurrently-executing code
      received.append(value)
      ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/Supporting/Binding+DistinctTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/Supporting/Binding+DistinctTests.swift:20:7: warning: reference to captured var 'value' in concurrently-executing code
      value
      ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/Binding+DistinctTests.swift:22:7: warning: mutation of captured var 'setHasBeenCalled' in concurrently-executing code
      setHasBeenCalled = true
      ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/Binding+DistinctTests.swift:23:7: warning: mutation of captured var 'value' in concurrently-executing code
      value = newValue
      ^
SwiftDriverJobDiscovery normal arm64 Compiling AsyncOnEachSequence.swift, AsyncSerialSequence.swift, Binding+Debounce.swift (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
SwiftCompile normal arm64 Compiling\ TransitionTests.swift,\ WhenTests.swift,\ AsyncCompactScanSequenceTests.swift /Users/admin/builder/spi-builder-workspace/Tests/StateMachine/TransitionTests.swift /Users/admin/builder/spi-builder-workspace/Tests/StateMachine/WhenTests.swift /Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncCompactScanSequenceTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/StateMachine/TransitionTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/StateMachine/WhenTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncCompactScanSequenceTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncCompactScanSequenceTests.swift:17:8: warning: type 'AsyncJustSequence<String>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
      .compactScan(expectedInitial) { accumulator, value in
       ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/AsyncJustSequence.swift:1:15: note: generic struct 'AsyncJustSequence' does not conform to the 'Sendable' protocol
public struct AsyncJustSequence<Element>: AsyncSequence {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncCompactScanSequenceTests.swift:8:11: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AsyncStateMachine'
@testable import AsyncStateMachine
          ^
          @preconcurrency
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncCompactScanSequenceTests.swift:16:9: warning: type 'AsyncJustSequence<String>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    let sut = AsyncJustSequence<String> { "next" }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/AsyncJustSequence.swift:1:15: note: generic struct 'AsyncJustSequence' does not conform to the 'Sendable' protocol
public struct AsyncJustSequence<Element>: AsyncSequence {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncCompactScanSequenceTests.swift:22:24: warning: type 'AsyncJustSequence<String>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    var iterator = sut.makeAsyncIterator()
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/AsyncJustSequence.swift:1:15: note: generic struct 'AsyncJustSequence' does not conform to the 'Sendable' protocol
public struct AsyncJustSequence<Element>: AsyncSequence {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncCompactScanSequenceTests.swift:22:9: warning: type 'AsyncJustSequence<String>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    var iterator = sut.makeAsyncIterator()
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/AsyncJustSequence.swift:1:15: note: generic struct 'AsyncJustSequence' does not conform to the 'Sendable' protocol
public struct AsyncJustSequence<Element>: AsyncSequence {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncCompactScanSequenceTests.swift:22:9: warning: type 'AsyncJustSequence<String>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    var iterator = sut.makeAsyncIterator()
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/AsyncJustSequence.swift:1:15: note: generic struct 'AsyncJustSequence' does not conform to the 'Sendable' protocol
public struct AsyncJustSequence<Element>: AsyncSequence {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncCompactScanSequenceTests.swift:23:35: warning: type 'AsyncJustSequence<String>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    let received = await iterator.next()
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/AsyncJustSequence.swift:1:15: note: generic struct 'AsyncJustSequence' does not conform to the 'Sendable' protocol
public struct AsyncJustSequence<Element>: AsyncSequence {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncCompactScanSequenceTests.swift:24:39: warning: type 'AsyncJustSequence<String>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    let receivedNext = await iterator.next()
                                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/AsyncJustSequence.swift:1:15: note: generic struct 'AsyncJustSequence' does not conform to the 'Sendable' protocol
public struct AsyncJustSequence<Element>: AsyncSequence {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncCompactScanSequenceTests.swift:36:8: warning: type 'AsyncLazySequence<[Int]>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
      .compactScan("0") { accumulator, value in
       ^
/Users/admin/builder/spi-builder-workspace/Tests/Tools/AsyncLazySequence.swift:8:8: note: consider making generic struct 'AsyncLazySequence' conform to the 'Sendable' protocol
struct AsyncLazySequence<Base: Sequence>: AsyncSequence {
       ^
                                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncCompactScanSequenceTests.swift:35:9: warning: type 'AsyncLazySequence<[Int]>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    let sut = AsyncLazySequence([1, 2, 3, 4, 5])
        ^
/Users/admin/builder/spi-builder-workspace/Tests/Tools/AsyncLazySequence.swift:8:8: note: consider making generic struct 'AsyncLazySequence' conform to the 'Sendable' protocol
struct AsyncLazySequence<Base: Sequence>: AsyncSequence {
       ^
                                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncCompactScanSequenceTests.swift:54:8: warning: type 'AsyncJustSequence<String>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
      .compactScan("0") { accumulator, value in
       ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/AsyncJustSequence.swift:1:15: note: generic struct 'AsyncJustSequence' does not conform to the 'Sendable' protocol
public struct AsyncJustSequence<Element>: AsyncSequence {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncCompactScanSequenceTests.swift:53:9: warning: type 'AsyncJustSequence<String>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    let sut = AsyncJustSequence<String> { "1" }
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/AsyncJustSequence.swift:1:15: note: generic struct 'AsyncJustSequence' does not conform to the 'Sendable' protocol
public struct AsyncJustSequence<Element>: AsyncSequence {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncCompactScanSequenceTests.swift:59:24: warning: type 'AsyncJustSequence<String>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    var iterator = sut.makeAsyncIterator()
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/AsyncJustSequence.swift:1:15: note: generic struct 'AsyncJustSequence' does not conform to the 'Sendable' protocol
public struct AsyncJustSequence<Element>: AsyncSequence {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncCompactScanSequenceTests.swift:59:9: warning: type 'AsyncJustSequence<String>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    var iterator = sut.makeAsyncIterator()
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/AsyncJustSequence.swift:1:15: note: generic struct 'AsyncJustSequence' does not conform to the 'Sendable' protocol
public struct AsyncJustSequence<Element>: AsyncSequence {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncCompactScanSequenceTests.swift:59:9: warning: type 'AsyncJustSequence<String>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    var iterator = sut.makeAsyncIterator()
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/AsyncJustSequence.swift:1:15: note: generic struct 'AsyncJustSequence' does not conform to the 'Sendable' protocol
public struct AsyncJustSequence<Element>: AsyncSequence {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncCompactScanSequenceTests.swift:60:34: warning: type 'AsyncJustSequence<String>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    while let _ = await iterator.next() {}
                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/AsyncJustSequence.swift:1:15: note: generic struct 'AsyncJustSequence' does not conform to the 'Sendable' protocol
public struct AsyncJustSequence<Element>: AsyncSequence {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncCompactScanSequenceTests.swift:62:35: warning: type 'AsyncJustSequence<String>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    let received = await iterator.next()
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/AsyncJustSequence.swift:1:15: note: generic struct 'AsyncJustSequence' does not conform to the 'Sendable' protocol
public struct AsyncJustSequence<Element>: AsyncSequence {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncCompactScanSequenceTests.swift:71:8: warning: type 'AsyncThrowingSequence<Int>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
      .compactScan("0") { accumulator, value in
       ^
/Users/admin/builder/spi-builder-workspace/Tests/Tools/AsyncThrowingSequence.swift:10:8: note: consider making generic struct 'AsyncThrowingSequence' conform to the 'Sendable' protocol
struct AsyncThrowingSequence<Element>: AsyncSequence {
       ^
                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncCompactScanSequenceTests.swift:70:9: warning: type 'AsyncThrowingSequence<Int>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    let sut = AsyncThrowingSequence<Int>(failAt: 1, element: 1)
        ^
/Users/admin/builder/spi-builder-workspace/Tests/Tools/AsyncThrowingSequence.swift:10:8: note: consider making generic struct 'AsyncThrowingSequence' conform to the 'Sendable' protocol
struct AsyncThrowingSequence<Element>: AsyncSequence {
       ^
                                                    , Sendable
SwiftDriverJobDiscovery normal arm64 Compiling Binding+Distinct.swift, Inject.swift, ManagedCriticalState.swift (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
SwiftCompile normal arm64 Compiling\ OnTests.swift,\ OneOfTests.swift,\ StateMachineTests.swift /Users/admin/builder/spi-builder-workspace/Tests/StateMachine/OnTests.swift /Users/admin/builder/spi-builder-workspace/Tests/StateMachine/OneOfTests.swift /Users/admin/builder/spi-builder-workspace/Tests/StateMachine/StateMachineTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/StateMachine/OnTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/StateMachine/OneOfTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/StateMachine/StateMachineTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling AsyncStateMachine.swift, Engine.swift, ViewStateMachine.swift (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
SwiftCompile normal arm64 Compiling\ AsyncJustSequenceTests.swift,\ AsyncOnEachSequenceTests.swift,\ AsyncSerialSequenceTests.swift /Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncJustSequenceTests.swift /Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncOnEachSequenceTests.swift /Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncSerialSequenceTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncJustSequenceTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncJustSequenceTests.swift:39:7: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
      wait(for: [hasCancelledExpectation], timeout: 1)
      ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncJustSequenceTests.swift:38:21: 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
    let task = Task {
                    ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncJustSequenceTests.swift:39:7: note: closure captures 'self' which is accessible to code in the current task
      wait(for: [hasCancelledExpectation], timeout: 1)
      ^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncOnEachSequenceTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncOnEachSequenceTests.swift:17:9: warning: type 'AsyncLazySequence<[Int]>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    let sut = AsyncLazySequence([1, 2, 3, 4, 5]).onEach { element in
        ^
/Users/admin/builder/spi-builder-workspace/Tests/Tools/AsyncLazySequence.swift:8:8: note: consider making generic struct 'AsyncLazySequence' conform to the 'Sendable' protocol
struct AsyncLazySequence<Base: Sequence>: AsyncSequence {
       ^
                                                       , Sendable
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncOnEachSequenceTests.swift:36:9: warning: type 'AsyncThrowingSequence<Int>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    let sut = AsyncThrowingSequence<Int>(failAt: 1, element: element).onEach { element in
        ^
/Users/admin/builder/spi-builder-workspace/Tests/Tools/AsyncThrowingSequence.swift:10:8: note: consider making generic struct 'AsyncThrowingSequence' conform to the 'Sendable' protocol
struct AsyncThrowingSequence<Element>: AsyncSequence {
       ^
                                                    , Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncSerialSequenceTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncSerialSequenceTests.swift:14:9: warning: type 'AsyncJustSequence<Int>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    let sut = AsyncJustSequence(element: 1)
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/AsyncJustSequence.swift:1:15: note: generic struct 'AsyncJustSequence' does not conform to the 'Sendable' protocol
public struct AsyncJustSequence<Element>: AsyncSequence {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncSerialSequenceTests.swift:8:11: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'AsyncStateMachine'
@testable import AsyncStateMachine
          ^
          @preconcurrency
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncSerialSequenceTests.swift:29:9: warning: type 'AsyncJustSequence<Int>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    let sut = AsyncJustSequence(element: 1)
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/AsyncJustSequence.swift:1:15: note: generic struct 'AsyncJustSequence' does not conform to the 'Sendable' protocol
public struct AsyncJustSequence<Element>: AsyncSequence {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncSerialSequenceTests.swift:33:24: warning: type 'AsyncJustSequence<Int>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    var iterator = sut.makeAsyncIterator()
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/AsyncJustSequence.swift:1:15: note: generic struct 'AsyncJustSequence' does not conform to the 'Sendable' protocol
public struct AsyncJustSequence<Element>: AsyncSequence {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncSerialSequenceTests.swift:33:9: warning: type 'AsyncJustSequence<Int>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    var iterator = sut.makeAsyncIterator()
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/AsyncJustSequence.swift:1:15: note: generic struct 'AsyncJustSequence' does not conform to the 'Sendable' protocol
public struct AsyncJustSequence<Element>: AsyncSequence {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncSerialSequenceTests.swift:33:9: warning: type 'AsyncJustSequence<Int>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    var iterator = sut.makeAsyncIterator()
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/AsyncJustSequence.swift:1:15: note: generic struct 'AsyncJustSequence' does not conform to the 'Sendable' protocol
public struct AsyncJustSequence<Element>: AsyncSequence {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncSerialSequenceTests.swift:34:34: warning: type 'AsyncJustSequence<Int>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    while let _ = await iterator.next() {}
                                 ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/AsyncJustSequence.swift:1:15: note: generic struct 'AsyncJustSequence' does not conform to the 'Sendable' protocol
public struct AsyncJustSequence<Element>: AsyncSequence {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncSerialSequenceTests.swift:35:35: warning: type 'AsyncJustSequence<Int>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    let received = await iterator.next()
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Supporting/AsyncJustSequence.swift:1:15: note: generic struct 'AsyncJustSequence' does not conform to the 'Sendable' protocol
public struct AsyncJustSequence<Element>: AsyncSequence {
              ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncSerialSequenceTests.swift:43:9: warning: type 'AsyncThrowingSequence<Int>' does not conform to the 'Sendable' protocol; this is an error in the Swift 6 language mode
    let sut = AsyncThrowingSequence<Int>()
        ^
/Users/admin/builder/spi-builder-workspace/Tests/Tools/AsyncThrowingSequence.swift:10:8: note: consider making generic struct 'AsyncThrowingSequence' conform to the 'Sendable' protocol
struct AsyncThrowingSequence<Element>: AsyncSequence {
       ^
                                                    , Sendable
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncSerialSequenceTests.swift:142:5: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
    wait(for: [iteration1HasImmediatelyResumed], timeout: 1.0)
    ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncSerialSequenceTests.swift:166:5: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
    wait(for: [iteration2HasSuspended, iteration3HasSuspended, iteration4HasSuspended], timeout: 1.0)
    ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncSerialSequenceTests.swift:172:5: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
    wait(for: [iteration1HasFinished, iteration2HasFinished, iteration3HasFinished, iteration4HasFinished], timeout: 1.0)
    ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncSerialSequenceTests.swift:194:5: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
    wait(for: [iteration1HasImmediatelyResumed], timeout: 1.0)
    ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncSerialSequenceTests.swift:200:5: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
    wait(for: [iteration1HasFinished], timeout: 1.0)
    ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncSerialSequenceTests.swift:224:5: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
    wait(for: [iteration1HasFinished], timeout: 1.0)
    ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncSerialSequenceTests.swift:250:5: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
    wait(for: [iteration1HasImmediatelyResumed], timeout: 1.0)
    ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncSerialSequenceTests.swift:261:5: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
    wait(for: [iteration2HasSuspended], timeout: 1.0)
    ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
/Users/admin/builder/spi-builder-workspace/Tests/Supporting/AsyncSerialSequenceTests.swift:265:5: warning: instance method 'wait' is unavailable from asynchronous contexts; Use await fulfillment(of:timeout:enforceOrder:) instead; this is an error in the Swift 6 language mode
    wait(for: [iteration1HasFinished], timeout: 1.0)
    ^
XCTest.XCTestCase.wait:2:11: note: 'wait(for:timeout:)' declared here
open func wait(for expectations: [XCTestExpectation], timeout seconds: TimeInterval)}
          ^
SwiftDriverJobDiscovery normal arm64 Emitting module for AsyncStateMachineTests (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
SwiftDriver\ Compilation\ Requirements AsyncStateMachineTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name AsyncStateMachineTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/Objects-normal/arm64/AsyncStateMachineTests.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 -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/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/Objects-normal/arm64/AsyncStateMachineTests-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/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/Objects-normal/arm64/AsyncStateMachineTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/Objects-normal/arm64/AsyncStateMachineTests_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/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling AsyncLazySequence.swift, AsyncSequence+Collect.swift, AsyncSuspendableChannel.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
SwiftDriver\ Compilation AsyncStateMachine normal arm64 com.apple.xcode.tools.swift.compiler (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name AsyncStateMachine -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/Objects-normal/arm64/AsyncStateMachine.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 -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/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/Objects-normal/arm64/AsyncStateMachine-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/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/Objects-normal/arm64/AsyncStateMachine.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/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/Objects-normal/arm64/AsyncStateMachine_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/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.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/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/Objects-normal/arm64/AsyncStateMachine-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachineTests.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/Objects-normal/arm64/AsyncStateMachineTests.swiftmodule (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    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/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/Objects-normal/arm64/AsyncStateMachineTests.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachineTests.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachineTests.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/Objects-normal/arm64/AsyncStateMachineTests.swiftdoc (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    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/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/Objects-normal/arm64/AsyncStateMachineTests.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachineTests.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachineTests.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/Objects-normal/arm64/AsyncStateMachineTests.abi.json (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    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/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/Objects-normal/arm64/AsyncStateMachineTests.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachineTests.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachineTests.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/Objects-normal/arm64/AsyncStateMachineTests.swiftsourceinfo (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    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/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/Objects-normal/arm64/AsyncStateMachineTests.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachineTests.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/XCTestDynamicOverlay.o (in target 'XCTestDynamicOverlay' from project 'xctest-dynamic-overlay')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/xctest-dynamic-overlay
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/XCTestDynamicOverlay.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachine.o normal (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
    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 -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/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/Objects-normal/arm64/AsyncStateMachine.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/Objects-normal/arm64/AsyncStateMachine_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/Objects-normal/arm64/AsyncStateMachine_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/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/Objects-normal/arm64/AsyncStateMachine.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachine.o
ExtractAppIntentsMetadata (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
    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 AsyncStateMachine --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.AsyncStateMachine --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachine.appintents --target-triple arm64-apple-tvos13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachine.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/Objects-normal/arm64/AsyncStateMachine_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/Objects-normal/arm64/AsyncStateMachine.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/AsyncStateMachine.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/AsyncStateMachine.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/Objects-normal/arm64/AsyncStateMachine.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 01:33:43.320 appintentsmetadataprocessor[785:4419] Starting appintentsmetadataprocessor export
2025-04-27 01:33:43.361 appintentsmetadataprocessor[785:4419] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachine.o (in target 'AsyncStateMachine' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachine.o
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachineTests.xctest/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/empty-AsyncStateMachineTests.plist (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/empty-AsyncStateMachineTests.plist -producttype com.apple.product-type.bundle.unit-test -expandbuildsettings -format binary -platform appletvos -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachineTests.xctest/Info.plist
SwiftDriverJobDiscovery normal arm64 Compiling DSLCompatibleTests.swift, ExecuteTests.swift, GuardTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
SwiftDriverJobDiscovery normal arm64 Compiling TransitionTests.swift, WhenTests.swift, AsyncCompactScanSequenceTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
SwiftDriverJobDiscovery normal arm64 Compiling AsyncThrowingSequence.swift, Task+ForEver.swift, XCTStateMachineTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
SwiftDriverJobDiscovery normal arm64 Compiling OnTests.swift, OneOfTests.swift, StateMachineTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
SwiftDriverJobDiscovery normal arm64 Compiling AsyncSubjectTests.swift, Binding+DebounceTests.swift, Binding+DistinctTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
SwiftDriverJobDiscovery normal arm64 Compiling AsyncJustSequenceTests.swift, AsyncOnEachSequenceTests.swift, AsyncSerialSequenceTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
SwiftDriverJobDiscovery normal arm64 Compiling ChannelTests.swift, ExecutionStrategyTests.swift, RuntimeTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
SwiftDriverJobDiscovery normal arm64 Compiling InjectTests.swift, OrderedStorageTests.swift, ThrowingInjectTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
SwiftDriverJobDiscovery normal arm64 Compiling AsyncStateMachineTests.swift, EngineTests.swift, ViewStateMachineTests.swift (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
SwiftDriver\ Compilation AsyncStateMachineTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name AsyncStateMachineTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/Objects-normal/arm64/AsyncStateMachineTests.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 -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/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/Objects-normal/arm64/AsyncStateMachineTests-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/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/Objects-normal/arm64/AsyncStateMachineTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/Objects-normal/arm64/AsyncStateMachineTests_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/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachineTests.xctest/AsyncStateMachineTests normal (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    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 -bundle -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 -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/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/Objects-normal/arm64/AsyncStateMachineTests.LinkFileList -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/../Frameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/Objects-normal/arm64/AsyncStateMachineTests_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/Objects-normal/arm64/AsyncStateMachineTests_dependency_info.dat -fobjc-link-runtime -fprofile-instr-generate -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/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/Objects-normal/arm64/AsyncStateMachineTests.swiftmodule -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -framework XCTest -lXCTestSwiftSupport -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachineTests.xctest/AsyncStateMachineTests -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/xctest-dynamic-overlay.build/Debug-appletvos/XCTestDynamicOverlay.build/Objects-normal/arm64/XCTestDynamicOverlay.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachine.build/Objects-normal/arm64/AsyncStateMachine.swiftmodule
CopySwiftLibs /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachineTests.xctest (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftStdLibTool --copy --verbose --scan-executable /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachineTests.xctest/AsyncStateMachineTests --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachineTests.xctest/Frameworks --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachineTests.xctest/PlugIns --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachineTests.xctest/SystemExtensions --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachineTests.xctest/Extensions --platform appletvos --toolchain /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --destination /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachineTests.xctest/Frameworks --strip-bitcode --scan-executable /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/libXCTestSwiftSupport.dylib --strip-bitcode-tool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip --emit-dependency-info /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/SwiftStdLibToolInputDependencies.dep --filter-for-swift-os --back-deploy-swift-concurrency
Ignoring --strip-bitcode because --sign was not passed
Copying /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift-5.5/appletvos/libswift_Concurrency.dylib to /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachineTests.xctest/Frameworks/libswift_Concurrency.dylib
ExtractAppIntentsMetadata (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    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 AsyncStateMachineTests --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.AsyncStateMachineTests --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachineTests.xctest --target-triple arm64-apple-tvos13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachineTests.xctest/AsyncStateMachineTests --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/Objects-normal/arm64/AsyncStateMachineTests_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/Objects-normal/arm64/AsyncStateMachineTests.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/AsyncStateMachineTests.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/AsyncStateMachineTests.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/AsyncStateMachine.build/Debug-appletvos/AsyncStateMachineTests.build/Objects-normal/arm64/AsyncStateMachineTests.SwiftConstValuesFileList --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 01:33:44.471 appintentsmetadataprocessor[788:4466] Starting appintentsmetadataprocessor export
2025-04-27 01:33:44.474 appintentsmetadataprocessor[788:4466] warning: Metadata extraction skipped. No AppIntents.framework dependency found.
GenerateDSYMFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachineTests.xctest.dSYM /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachineTests.xctest/AsyncStateMachineTests (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachineTests.xctest/AsyncStateMachineTests -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachineTests.xctest.dSYM
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachineTests.xctest (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachineTests.xctest
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachineTests.xctest (in target 'AsyncStateMachineTests' from project 'AsyncStateMachine')
    cd /Users/admin/builder/spi-builder-workspace
    /usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/AsyncStateMachineTests.xctest
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
    {
      "identity" : "xctest-dynamic-overlay",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.4.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/xctest-dynamic-overlay.git"
    }
  ],
  "manifest_display_name" : "AsyncStateMachine",
  "name" : "AsyncStateMachine",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "AsyncStateMachine",
      "targets" : [
        "AsyncStateMachine"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "AsyncStateMachineTests",
      "module_type" : "SwiftTarget",
      "name" : "AsyncStateMachineTests",
      "path" : "Tests",
      "sources" : [
        "AsyncStateMachine/AsyncStateMachineTests.swift",
        "AsyncStateMachine/EngineTests.swift",
        "AsyncStateMachine/ViewStateMachineTests.swift",
        "Runtime/ChannelTests.swift",
        "Runtime/ExecutionStrategyTests.swift",
        "Runtime/RuntimeTests.swift",
        "StateMachine/DSLCompatibleTests.swift",
        "StateMachine/ExecuteTests.swift",
        "StateMachine/GuardTests.swift",
        "StateMachine/OnTests.swift",
        "StateMachine/OneOfTests.swift",
        "StateMachine/StateMachineTests.swift",
        "StateMachine/TransitionTests.swift",
        "StateMachine/WhenTests.swift",
        "Supporting/AsyncCompactScanSequenceTests.swift",
        "Supporting/AsyncJustSequenceTests.swift",
        "Supporting/AsyncOnEachSequenceTests.swift",
        "Supporting/AsyncSerialSequenceTests.swift",
        "Supporting/AsyncSubjectTests.swift",
        "Supporting/Binding+DebounceTests.swift",
        "Supporting/Binding+DistinctTests.swift",
        "Supporting/InjectTests.swift",
        "Supporting/OrderedStorageTests.swift",
        "Supporting/ThrowingInjectTests.swift",
        "Tools/AsyncLazySequence.swift",
        "Tools/AsyncSequence+Collect.swift",
        "Tools/AsyncSuspendableChannel.swift",
        "Tools/AsyncThrowingSequence.swift",
        "Tools/Task+ForEver.swift",
        "XCTest/XCTStateMachineTests.swift"
      ],
      "target_dependencies" : [
        "AsyncStateMachine"
      ],
      "type" : "test"
    },
    {
      "c99name" : "AsyncStateMachine",
      "module_type" : "SwiftTarget",
      "name" : "AsyncStateMachine",
      "path" : "Sources",
      "product_dependencies" : [
        "XCTestDynamicOverlay"
      ],
      "product_memberships" : [
        "AsyncStateMachine"
      ],
      "sources" : [
        "AsyncStateMachine/AsyncStateMachine.swift",
        "AsyncStateMachine/Engine.swift",
        "AsyncStateMachine/ViewStateMachine.swift",
        "Runtime/Channel.swift",
        "Runtime/ExecutionStrategy.swift",
        "Runtime/Middleware.swift",
        "Runtime/Runtime.swift",
        "Runtime/SideEffect.swift",
        "StateMachine/DSLCompatible.swift",
        "StateMachine/Execute.swift",
        "StateMachine/Guard.swift",
        "StateMachine/Never+DSLCompatible.swift",
        "StateMachine/On.swift",
        "StateMachine/OneOf.swift",
        "StateMachine/StateMachine.swift",
        "StateMachine/Transition.swift",
        "StateMachine/When.swift",
        "Supporting/AnyAsyncSequence.swift",
        "Supporting/AsyncBufferedChannel.swift",
        "Supporting/AsyncCompactScanSequence.swift",
        "Supporting/AsyncJustSequence.swift",
        "Supporting/AsyncOnEachSequence.swift",
        "Supporting/AsyncSerialSequence.swift",
        "Supporting/Binding+Debounce.swift",
        "Supporting/Binding+Distinct.swift",
        "Supporting/Inject.swift",
        "Supporting/ManagedCriticalState.swift",
        "Supporting/OrderedStorage.swift",
        "Supporting/ThrowingInject.swift",
        "XCTest/XCTStateMachine.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.6"
}
Done.