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 swift-chess-neo, reference master (7a2a98), with Swift 6.0 for tvOS using Xcode 16.2 on 30 Nov 2024 22:49:26 UTC.

Swift 6 data race errors: 73

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme swift-chess-neo -destination generic/platform=tvOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures

Build Log

/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:62:25: warning: static property '_a' is not concurrency-safe because non-'Sendable' type 'File' may have shared mutable state; this is an error in the Swift 6 language mode
    internal static let _a = File.a
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:24:13: note: consider making enum 'File' conform to the 'Sendable' protocol
public enum File: Int, Comparable, CustomStringConvertible {
            ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:62:25: note: annotate '_a' with '@MainActor' if property should only be accessed from the main actor
    internal static let _a = File.a
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:62:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    internal static let _a = File.a
                        ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:65:25: warning: static property '_b' is not concurrency-safe because non-'Sendable' type 'File' may have shared mutable state; this is an error in the Swift 6 language mode
    internal static let _b = File.b
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:24:13: note: consider making enum 'File' conform to the 'Sendable' protocol
public enum File: Int, Comparable, CustomStringConvertible {
            ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:65:25: note: annotate '_b' with '@MainActor' if property should only be accessed from the main actor
    internal static let _b = File.b
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:65:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    internal static let _b = File.b
                        ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:68:25: warning: static property '_c' is not concurrency-safe because non-'Sendable' type 'File' may have shared mutable state; this is an error in the Swift 6 language mode
    internal static let _c = File.c
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:24:13: note: consider making enum 'File' conform to the 'Sendable' protocol
public enum File: Int, Comparable, CustomStringConvertible {
            ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:68:25: note: annotate '_c' with '@MainActor' if property should only be accessed from the main actor
    internal static let _c = File.c
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:68:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    internal static let _c = File.c
                        ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:71:25: warning: static property '_d' is not concurrency-safe because non-'Sendable' type 'File' may have shared mutable state; this is an error in the Swift 6 language mode
    internal static let _d = File.d
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:24:13: note: consider making enum 'File' conform to the 'Sendable' protocol
public enum File: Int, Comparable, CustomStringConvertible {
            ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:71:25: note: annotate '_d' with '@MainActor' if property should only be accessed from the main actor
    internal static let _d = File.d
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:71:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    internal static let _d = File.d
                        ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:74:25: warning: static property '_e' is not concurrency-safe because non-'Sendable' type 'File' may have shared mutable state; this is an error in the Swift 6 language mode
    internal static let _e = File.e
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:24:13: note: consider making enum 'File' conform to the 'Sendable' protocol
public enum File: Int, Comparable, CustomStringConvertible {
            ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:74:25: note: annotate '_e' with '@MainActor' if property should only be accessed from the main actor
    internal static let _e = File.e
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:74:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    internal static let _e = File.e
                        ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:77:25: warning: static property '_f' is not concurrency-safe because non-'Sendable' type 'File' may have shared mutable state; this is an error in the Swift 6 language mode
    internal static let _f = File.f
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:24:13: note: consider making enum 'File' conform to the 'Sendable' protocol
public enum File: Int, Comparable, CustomStringConvertible {
            ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:77:25: note: annotate '_f' with '@MainActor' if property should only be accessed from the main actor
    internal static let _f = File.f
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:77:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    internal static let _f = File.f
                        ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:80:25: warning: static property '_g' is not concurrency-safe because non-'Sendable' type 'File' may have shared mutable state; this is an error in the Swift 6 language mode
    internal static let _g = File.g
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:24:13: note: consider making enum 'File' conform to the 'Sendable' protocol
public enum File: Int, Comparable, CustomStringConvertible {
            ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:80:25: note: annotate '_g' with '@MainActor' if property should only be accessed from the main actor
    internal static let _g = File.g
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:80:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    internal static let _g = File.g
                        ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:83:25: warning: static property '_h' is not concurrency-safe because non-'Sendable' type 'File' may have shared mutable state; this is an error in the Swift 6 language mode
    internal static let _h = File.h
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:24:13: note: consider making enum 'File' conform to the 'Sendable' protocol
public enum File: Int, Comparable, CustomStringConvertible {
            ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:83:25: note: annotate '_h' with '@MainActor' if property should only be accessed from the main actor
    internal static let _h = File.h
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:83:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    internal static let _h = File.h
                        ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:90:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[File]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let all: [File] = [.a, .b, .c, .d, .e, .f, .g, .h]
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:24:13: note: consider making enum 'File' conform to the 'Sendable' protocol
public enum File: Int, Comparable, CustomStringConvertible {
            ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:90:23: note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    public static let all: [File] = [.a, .b, .c, .d, .e, .f, .g, .h]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:90:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let all: [File] = [.a, .b, .c, .d, .e, .f, .g, .h]
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Game.swift (in target 'SwiftChessNeo' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Board.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/CastlingRights.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Color.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Game.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/InternalTypes.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Move.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/PGN.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/PGNMove.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Piece.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Player.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Rank.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Sequence+Sage.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Square.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Tables.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Variant.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/File.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/File.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/File.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/File.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Game.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Game.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Game.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Game.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/SwiftChessNeo_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftChessNeo -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/File.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Game.o -index-unit-output-path /swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/File.o -index-unit-output-path /swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Game.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Game.swift:35:29: warning: static property '_draw' is not concurrency-safe because non-'Sendable' type 'Game.Outcome' may have shared mutable state; this is an error in the Swift 6 language mode
        internal static let _draw = Outcome.draw
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Game.swift:26:17: note: consider making enum 'Outcome' conform to the 'Sendable' protocol
    public enum Outcome: Hashable, CustomStringConvertible {
                ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Game.swift:35:29: note: annotate '_draw' with '@MainActor' if property should only be accessed from the main actor
        internal static let _draw = Outcome.draw
                            ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Game.swift:35:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        internal static let _draw = Outcome.draw
                            ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/CastlingRights.swift:174:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type 'CastlingRights' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let all = CastlingRights(Right.all)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/CastlingRights.swift:24:15: note: consider making struct 'CastlingRights' conform to the 'Sendable' protocol
public struct CastlingRights: CustomStringConvertible {
              ^
                                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/CastlingRights.swift:174:23: note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    public static let all = CastlingRights(Right.all)
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/CastlingRights.swift:174:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let all = CastlingRights(Right.all)
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Game.swift:235:14: warning: associated value 'wrongKingCount' of 'Sendable'-conforming enum 'PositionError' has non-sendable type 'Color'; this is an error in the Swift 6 language mode
        case wrongKingCount(Color)
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Color.swift:22:13: note: consider making enum 'Color' conform to the 'Sendable' protocol
public enum Color: String, CustomStringConvertible {
            ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Game.swift:238:14: warning: associated value 'missingKing' of 'Sendable'-conforming enum 'PositionError' has non-sendable type 'CastlingRights.Right'; this is an error in the Swift 6 language mode
        case missingKing(CastlingRights.Right)
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/CastlingRights.swift:27:17: note: consider making enum 'Right' conform to the 'Sendable' protocol
    public enum Right: String, CustomStringConvertible {
                ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Game.swift:241:14: warning: associated value 'missingRook' of 'Sendable'-conforming enum 'PositionError' has non-sendable type 'CastlingRights.Right'; this is an error in the Swift 6 language mode
        case missingRook(CastlingRights.Right)
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/CastlingRights.swift:27:17: note: consider making enum 'Right' conform to the 'Sendable' protocol
    public enum Right: String, CustomStringConvertible {
                ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Game.swift:244:14: warning: associated value 'wrongEnPassantTargetRank' of 'Sendable'-conforming enum 'PositionError' has non-sendable type 'Rank'; this is an error in the Swift 6 language mode
        case wrongEnPassantTargetRank(Rank)
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Rank.swift:24:13: note: consider making enum 'Rank' conform to the 'Sendable' protocol
public enum Rank: Int, Comparable, CustomStringConvertible {
            ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Game.swift:247:14: warning: associated value 'nonEmptyEnPassantTarget' of 'Sendable'-conforming enum 'PositionError' has non-sendable type 'Square'; this is an error in the Swift 6 language mode
        case nonEmptyEnPassantTarget(Square, Piece)
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Square.swift:27:13: note: consider making enum 'Square' conform to the 'Sendable' protocol
public enum Square: Int, CustomStringConvertible {
            ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Game.swift:247:14: warning: associated value 'nonEmptyEnPassantTarget' of 'Sendable'-conforming enum 'PositionError' has non-sendable type 'Piece'; this is an error in the Swift 6 language mode
        case nonEmptyEnPassantTarget(Square, Piece)
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Piece.swift:22:15: note: consider making struct 'Piece' conform to the 'Sendable' protocol
public struct Piece: Hashable, CustomStringConvertible {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Game.swift:250:14: warning: associated value 'missingEnPassantPawn' of 'Sendable'-conforming enum 'PositionError' has non-sendable type 'Square'; this is an error in the Swift 6 language mode
        case missingEnPassantPawn(Square)
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Square.swift:27:13: note: consider making enum 'Square' conform to the 'Sendable' protocol
public enum Square: Int, CustomStringConvertible {
            ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Game.swift:253:14: warning: associated value 'nonEmptyEnPassantSquare' of 'Sendable'-conforming enum 'PositionError' has non-sendable type 'Square'; this is an error in the Swift 6 language mode
        case nonEmptyEnPassantSquare(Square, Piece)
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Square.swift:27:13: note: consider making enum 'Square' conform to the 'Sendable' protocol
public enum Square: Int, CustomStringConvertible {
            ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Game.swift:253:14: warning: associated value 'nonEmptyEnPassantSquare' of 'Sendable'-conforming enum 'PositionError' has non-sendable type 'Piece'; this is an error in the Swift 6 language mode
        case nonEmptyEnPassantSquare(Square, Piece)
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Piece.swift:22:15: note: consider making struct 'Piece' conform to the 'Sendable' protocol
public struct Piece: Hashable, CustomStringConvertible {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Game.swift:263:14: warning: associated value 'missingPiece' of 'Sendable'-conforming enum 'ExecutionError' has non-sendable type 'Square'; this is an error in the Swift 6 language mode
        case missingPiece(Square)
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Square.swift:27:13: note: consider making enum 'Square' conform to the 'Sendable' protocol
public enum Square: Int, CustomStringConvertible {
            ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Game.swift:266:14: warning: associated value 'illegalMove' of 'Sendable'-conforming enum 'ExecutionError' has non-sendable type 'Move'; this is an error in the Swift 6 language mode
        case illegalMove(Move, Color, Board)
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Move.swift:22:15: note: consider making struct 'Move' conform to the 'Sendable' protocol
public struct Move: Hashable, CustomStringConvertible {
              ^
                                                     , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Game.swift:266:14: warning: associated value 'illegalMove' of 'Sendable'-conforming enum 'ExecutionError' has non-sendable type 'Color'; this is an error in the Swift 6 language mode
        case illegalMove(Move, Color, Board)
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Color.swift:22:13: note: consider making enum 'Color' conform to the 'Sendable' protocol
public enum Color: String, CustomStringConvertible {
            ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Game.swift:266:14: warning: associated value 'illegalMove' of 'Sendable'-conforming enum 'ExecutionError' has non-sendable type 'Board'; this is an error in the Swift 6 language mode
        case illegalMove(Move, Color, Board)
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Board.swift:30:15: note: consider making struct 'Board' conform to the 'Sendable' protocol
public struct Board: Hashable, CustomStringConvertible {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Game.swift:269:14: warning: associated value 'invalidPromotion' of 'Sendable'-conforming enum 'ExecutionError' has non-sendable type 'Piece.Kind'; this is an error in the Swift 6 language mode
        case invalidPromotion(Piece.Kind)
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Piece.swift:25:17: note: consider making enum 'Kind' conform to the 'Sendable' protocol
    public enum Kind: Int {
                ^
                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Color.swift:37:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[Color]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let all: [Color] = [.white, .black]
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Color.swift:22:13: note: consider making enum 'Color' conform to the 'Sendable' protocol
public enum Color: String, CustomStringConvertible {
            ^
                                                  , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Color.swift:37:23: note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    public static let all: [Color] = [.white, .black]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Color.swift:37:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let all: [Color] = [.white, .black]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Piece.swift:58:29: warning: static property '_queen' is not concurrency-safe because non-'Sendable' type 'Piece.Kind' may have shared mutable state; this is an error in the Swift 6 language mode
        internal static let _queen = Kind.queen
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Piece.swift:25:17: note: consider making enum 'Kind' conform to the 'Sendable' protocol
    public enum Kind: Int {
                ^
                         , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Piece.swift:58:29: note: annotate '_queen' with '@MainActor' if property should only be accessed from the main actor
        internal static let _queen = Kind.queen
                            ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Piece.swift:58:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        internal static let _queen = Kind.queen
                            ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Square.swift:226:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[Square]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let all: [Square] = (0 ..< 64).compactMap(Square.init(rawValue:))
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Square.swift:27:13: note: consider making enum 'Square' conform to the 'Sendable' protocol
public enum Square: Int, CustomStringConvertible {
            ^
                                                , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Square.swift:226:23: note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    public static let all: [Square] = (0 ..< 64).compactMap(Square.init(rawValue:))
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Square.swift:226:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let all: [Square] = (0 ..< 64).compactMap(Square.init(rawValue:))
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Bitboard.swift,\ Board.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Board.swift (in target 'SwiftChessNeo' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Board.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/CastlingRights.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Color.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Game.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/InternalTypes.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Move.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/PGN.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/PGNMove.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Piece.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Player.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Rank.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Sequence+Sage.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Square.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Tables.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Variant.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Bitboard.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Bitboard.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Bitboard.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Bitboard.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Board.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Board.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Board.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Board.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/SwiftChessNeo_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftChessNeo -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Bitboard.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Board.o -index-unit-output-path /swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Bitboard.o -index-unit-output-path /swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Board.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift (in target 'SwiftChessNeo' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Board.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/CastlingRights.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Color.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Game.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/InternalTypes.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Move.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/PGN.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/PGNMove.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Piece.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Player.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Rank.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Sequence+Sage.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Square.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Tables.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Variant.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Bitboard.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Bitboard.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Bitboard.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Bitboard.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Board.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Board.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Board.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Board.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/SwiftChessNeo_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftChessNeo -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Bitboard.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Board.o -index-unit-output-path /swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Bitboard.o -index-unit-output-path /swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Board.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:42:13: warning: let '_bitboardTable' is not concurrency-safe because non-'Sendable' type '[Bitboard]' may have shared mutable state; this is an error in the Swift 6 language mode
private let _bitboardTable: [Bitboard] = (0 ..< 64).map { Bitboard(rawValue: 1 << $0) }
            ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:78:15: note: consider making struct 'Bitboard' conform to the 'Sendable' protocol
public struct Bitboard: RawRepresentable, Hashable, CustomStringConvertible {
              ^
                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:42:13: note: annotate '_bitboardTable' with '@MainActor' if property should only be accessed from the main actor
private let _bitboardTable: [Bitboard] = (0 ..< 64).map { Bitboard(rawValue: 1 << $0) }
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:42:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let _bitboardTable: [Bitboard] = (0 ..< 64).map { Bitboard(rawValue: 1 << $0) }
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:56:13: warning: let '_notFileA' is not concurrency-safe because non-'Sendable' type 'Bitboard' may have shared mutable state; this is an error in the Swift 6 language mode
private let _notFileA: Bitboard = 0xfefefefefefefefe
            ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:78:15: note: consider making struct 'Bitboard' conform to the 'Sendable' protocol
public struct Bitboard: RawRepresentable, Hashable, CustomStringConvertible {
              ^
                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:56:13: note: annotate '_notFileA' with '@MainActor' if property should only be accessed from the main actor
private let _notFileA: Bitboard = 0xfefefefefefefefe
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:56:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let _notFileA: Bitboard = 0xfefefefefefefefe
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:59:13: warning: let '_notFileAB' is not concurrency-safe because non-'Sendable' type 'Bitboard' may have shared mutable state; this is an error in the Swift 6 language mode
private let _notFileAB: Bitboard = 0xfcfcfcfcfcfcfcfc
            ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:78:15: note: consider making struct 'Bitboard' conform to the 'Sendable' protocol
public struct Bitboard: RawRepresentable, Hashable, CustomStringConvertible {
              ^
                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:59:13: note: annotate '_notFileAB' with '@MainActor' if property should only be accessed from the main actor
private let _notFileAB: Bitboard = 0xfcfcfcfcfcfcfcfc
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:59:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let _notFileAB: Bitboard = 0xfcfcfcfcfcfcfcfc
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:62:13: warning: let '_notFileH' is not concurrency-safe because non-'Sendable' type 'Bitboard' may have shared mutable state; this is an error in the Swift 6 language mode
private let _notFileH: Bitboard = 0x7f7f7f7f7f7f7f7f
            ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:78:15: note: consider making struct 'Bitboard' conform to the 'Sendable' protocol
public struct Bitboard: RawRepresentable, Hashable, CustomStringConvertible {
              ^
                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:62:13: note: annotate '_notFileH' with '@MainActor' if property should only be accessed from the main actor
private let _notFileH: Bitboard = 0x7f7f7f7f7f7f7f7f
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:62:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let _notFileH: Bitboard = 0x7f7f7f7f7f7f7f7f
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:65:13: warning: let '_notFileGH' is not concurrency-safe because non-'Sendable' type 'Bitboard' may have shared mutable state; this is an error in the Swift 6 language mode
private let _notFileGH: Bitboard = 0x3f3f3f3f3f3f3f3f
            ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:78:15: note: consider making struct 'Bitboard' conform to the 'Sendable' protocol
public struct Bitboard: RawRepresentable, Hashable, CustomStringConvertible {
              ^
                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:65:13: note: annotate '_notFileGH' with '@MainActor' if property should only be accessed from the main actor
private let _notFileGH: Bitboard = 0x3f3f3f3f3f3f3f3f
            ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:65:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let _notFileGH: Bitboard = 0x3f3f3f3f3f3f3f3f
            ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:108:29: warning: static property '_north' is not concurrency-safe because non-'Sendable' type 'Bitboard.ShiftDirection' may have shared mutable state; this is an error in the Swift 6 language mode
        internal static let _north = ShiftDirection.north
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:81:17: note: consider making enum 'ShiftDirection' conform to the 'Sendable' protocol
    public enum ShiftDirection {
                ^
                               : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:108:29: note: annotate '_north' with '@MainActor' if property should only be accessed from the main actor
        internal static let _north = ShiftDirection.north
                            ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:108:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        internal static let _north = ShiftDirection.north
                            ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:111:29: warning: static property '_south' is not concurrency-safe because non-'Sendable' type 'Bitboard.ShiftDirection' may have shared mutable state; this is an error in the Swift 6 language mode
        internal static let _south = ShiftDirection.south
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:81:17: note: consider making enum 'ShiftDirection' conform to the 'Sendable' protocol
    public enum ShiftDirection {
                ^
                               : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:111:29: note: annotate '_south' with '@MainActor' if property should only be accessed from the main actor
        internal static let _south = ShiftDirection.south
                            ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:111:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        internal static let _south = ShiftDirection.south
                            ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:114:29: warning: static property '_east' is not concurrency-safe because non-'Sendable' type 'Bitboard.ShiftDirection' may have shared mutable state; this is an error in the Swift 6 language mode
        internal static let _east = ShiftDirection.east
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:81:17: note: consider making enum 'ShiftDirection' conform to the 'Sendable' protocol
    public enum ShiftDirection {
                ^
                               : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:114:29: note: annotate '_east' with '@MainActor' if property should only be accessed from the main actor
        internal static let _east = ShiftDirection.east
                            ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:114:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        internal static let _east = ShiftDirection.east
                            ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:117:29: warning: static property '_west' is not concurrency-safe because non-'Sendable' type 'Bitboard.ShiftDirection' may have shared mutable state; this is an error in the Swift 6 language mode
        internal static let _west = ShiftDirection.west
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:81:17: note: consider making enum 'ShiftDirection' conform to the 'Sendable' protocol
    public enum ShiftDirection {
                ^
                               : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:117:29: note: annotate '_west' with '@MainActor' if property should only be accessed from the main actor
        internal static let _west = ShiftDirection.west
                            ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:117:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        internal static let _west = ShiftDirection.west
                            ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:120:29: warning: static property '_northeast' is not concurrency-safe because non-'Sendable' type 'Bitboard.ShiftDirection' may have shared mutable state; this is an error in the Swift 6 language mode
        internal static let _northeast = ShiftDirection.northeast
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:81:17: note: consider making enum 'ShiftDirection' conform to the 'Sendable' protocol
    public enum ShiftDirection {
                ^
                               : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:120:29: note: annotate '_northeast' with '@MainActor' if property should only be accessed from the main actor
        internal static let _northeast = ShiftDirection.northeast
                            ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:120:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        internal static let _northeast = ShiftDirection.northeast
                            ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:123:29: warning: static property '_southeast' is not concurrency-safe because non-'Sendable' type 'Bitboard.ShiftDirection' may have shared mutable state; this is an error in the Swift 6 language mode
        internal static let _southeast = ShiftDirection.southeast
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:81:17: note: consider making enum 'ShiftDirection' conform to the 'Sendable' protocol
    public enum ShiftDirection {
                ^
                               : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:123:29: note: annotate '_southeast' with '@MainActor' if property should only be accessed from the main actor
        internal static let _southeast = ShiftDirection.southeast
                            ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:123:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        internal static let _southeast = ShiftDirection.southeast
                            ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:126:29: warning: static property '_northwest' is not concurrency-safe because non-'Sendable' type 'Bitboard.ShiftDirection' may have shared mutable state; this is an error in the Swift 6 language mode
        internal static let _northwest = ShiftDirection.northwest
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:81:17: note: consider making enum 'ShiftDirection' conform to the 'Sendable' protocol
    public enum ShiftDirection {
                ^
                               : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:126:29: note: annotate '_northwest' with '@MainActor' if property should only be accessed from the main actor
        internal static let _northwest = ShiftDirection.northwest
                            ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:126:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        internal static let _northwest = ShiftDirection.northwest
                            ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:129:29: warning: static property '_southwest' is not concurrency-safe because non-'Sendable' type 'Bitboard.ShiftDirection' may have shared mutable state; this is an error in the Swift 6 language mode
        internal static let _southwest = ShiftDirection.southwest
                            ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:81:17: note: consider making enum 'ShiftDirection' conform to the 'Sendable' protocol
    public enum ShiftDirection {
                ^
                               : Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:129:29: note: annotate '_southwest' with '@MainActor' if property should only be accessed from the main actor
        internal static let _southwest = ShiftDirection.southwest
                            ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:129:29: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        internal static let _southwest = ShiftDirection.southwest
                            ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:152:23: warning: static property 'edges' is not concurrency-safe because non-'Sendable' type 'Bitboard' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let edges: Bitboard = 0xff818181818181ff
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:78:15: note: consider making struct 'Bitboard' conform to the 'Sendable' protocol
public struct Bitboard: RawRepresentable, Hashable, CustomStringConvertible {
              ^
                                                                           , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:152:23: note: annotate 'edges' with '@MainActor' if property should only be accessed from the main actor
    public static let edges: Bitboard = 0xff818181818181ff
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift:152:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let edges: Bitboard = 0xff818181818181ff
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Rank.swift:66:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[Rank]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let all: [Rank] = [1, 2, 3, 4, 5, 6, 7, 8]
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Rank.swift:24:13: note: consider making enum 'Rank' conform to the 'Sendable' protocol
public enum Rank: Int, Comparable, CustomStringConvertible {
            ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Rank.swift:66:23: note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    public static let all: [Rank] = [1, 2, 3, 4, 5, 6, 7, 8]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Rank.swift:66:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let all: [Rank] = [1, 2, 3, 4, 5, 6, 7, 8]
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:90:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[File]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let all: [File] = [.a, .b, .c, .d, .e, .f, .g, .h]
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:24:13: note: consider making enum 'File' conform to the 'Sendable' protocol
public enum File: Int, Comparable, CustomStringConvertible {
            ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:90:23: note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    public static let all: [File] = [.a, .b, .c, .d, .e, .f, .g, .h]
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:90:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let all: [File] = [.a, .b, .c, .d, .e, .f, .g, .h]
                      ^
    nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Board.swift (in target 'SwiftChessNeo' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Bitboard.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Board.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/CastlingRights.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Color.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Game.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/InternalTypes.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Move.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/PGN.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/PGNMove.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Piece.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Player.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Rank.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Sequence+Sage.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Square.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Tables.swift /Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Variant.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Bitboard.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Bitboard.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Bitboard.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Bitboard.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Board.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Board.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Board.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Board.dia -target arm64-apple-tvos12.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/SwiftChessNeo_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftChessNeo -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Bitboard.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Board.o -index-unit-output-path /swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Bitboard.o -index-unit-output-path /swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/Board.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Board.swift:131:24: warning: call to main actor-isolated initializer 'init(frame:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            let view = _View(frame: frame)
                       ^
UIKit.UIView:4:23: note: calls to initializer 'init(frame:)' from outside of its actor context are implicitly asynchronous
    @MainActor public init(frame: CGRect)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Board.swift:119:23: note: add '@MainActor' to make instance method '_view(size:)' part of global actor 'MainActor'
        internal func _view(size: CGFloat) -> _View {
                      ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Board.swift:150:22: warning: main actor-isolated property 'backgroundColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                view.backgroundColor = bg
                     ^
UIKit.UIView:10:36: note: mutation of this property is only permitted within the actor
    @NSCopying @MainActor open var backgroundColor: UIColor? { get set }
                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Board.swift:119:23: note: add '@MainActor' to make instance method '_view(size:)' part of global actor 'MainActor'
        internal func _view(size: CGFloat) -> _View {
                      ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Board.swift:151:29: warning: call to main actor-isolated initializer 'init(frame:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                let label = UILabel(frame: textFrame)
                            ^
UIKit.UILabel:48:23: note: calls to initializer 'init(frame:)' from outside of its actor context are implicitly asynchronous
    @MainActor public init(frame: CGRect)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Board.swift:119:23: note: add '@MainActor' to make instance method '_view(size:)' part of global actor 'MainActor'
        internal func _view(size: CGFloat) -> _View {
                      ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Board.swift:152:23: warning: main actor-isolated property 'textAlignment' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                label.textAlignment = .center
                      ^
UIKit.UILabel:10:14: note: mutation of this property is only permitted within the actor
    open var textAlignment: NSTextAlignment { get set }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Board.swift:119:23: note: add '@MainActor' to make instance method '_view(size:)' part of global actor 'MainActor'
        internal func _view(size: CGFloat) -> _View {
                      ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Board.swift:153:23: warning: main actor-isolated property 'font' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                label.font = .systemFont(ofSize: fontSize)
                      ^
UIKit.UILabel:4:14: note: mutation of this property is only permitted within the actor
    open var font: UIFont! { get set }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Board.swift:119:23: note: add '@MainActor' to make instance method '_view(size:)' part of global actor 'MainActor'
        internal func _view(size: CGFloat) -> _View {
                      ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Board.swift:154:23: warning: main actor-isolated property 'text' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                label.text = str
                      ^
UIKit.UILabel:3:14: note: mutation of this property is only permitted within the actor
    open var text: String? { get set }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Board.swift:119:23: note: add '@MainActor' to make instance method '_view(size:)' part of global actor 'MainActor'
        internal func _view(size: CGFloat) -> _View {
                      ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Board.swift:155:23: warning: main actor-isolated property 'textColor' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
                label.textColor = tc
                      ^
UIKit.UILabel:5:14: note: mutation of this property is only permitted within the actor
    open var textColor: UIColor! { get set }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Board.swift:119:23: note: add '@MainActor' to make instance method '_view(size:)' part of global actor 'MainActor'
        internal func _view(size: CGFloat) -> _View {
                      ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Board.swift:156:22: warning: call to main actor-isolated instance method 'addSubview' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                view.addSubview(label)
                     ^
UIKit.UIView:12:26: note: calls to instance method 'addSubview' from outside of its actor context are implicitly asynchronous
    @MainActor open func addSubview(_ view: UIView)
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Board.swift:119:23: note: add '@MainActor' to make instance method '_view(size:)' part of global actor 'MainActor'
        internal func _view(size: CGFloat) -> _View {
                      ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Piece.swift:149:23: warning: static property 'all' is not concurrency-safe because non-'Sendable' type '[Piece]' may have shared mutable state; this is an error in the Swift 6 language mode
    public static let all: [Piece] = {
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Piece.swift:22:15: note: consider making struct 'Piece' conform to the 'Sendable' protocol
public struct Piece: Hashable, CustomStringConvertible {
              ^
                                                      , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Piece.swift:149:23: note: annotate 'all' with '@MainActor' if property should only be accessed from the main actor
    public static let all: [Piece] = {
                      ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Piece.swift:149:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static let all: [Piece] = {
                      ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:83:25: warning: static property '_h' is not concurrency-safe because non-'Sendable' type 'File' may have shared mutable state; this is an error in the Swift 6 language mode
    internal static let _h = File.h
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:24:13: note: consider making enum 'File' conform to the 'Sendable' protocol
public enum File: Int, Comparable, CustomStringConvertible {
            ^
                                                          , Sendable
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:83:25: note: annotate '_h' with '@MainActor' if property should only be accessed from the main actor
    internal static let _h = File.h
                        ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/File.swift:83:25: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    internal static let _h = File.h
                        ^
    nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Board.swift:669:20: warning: call to main actor-isolated initializer 'init(frame:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let view = _View(frame: frame)
                   ^
UIKit.UIView:4:23: note: calls to initializer 'init(frame:)' from outside of its actor context are implicitly asynchronous
    @MainActor public init(frame: CGRect)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/SwiftChessNeo/Board.swift:672:18: warning: call to main actor-isolated instance method 'addSubview' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            view.addSubview(space._view(size: spaceSize))
                 ^
UIKit.UIView:12:26: note: calls to instance method 'addSubview' from outside of its actor context are implicitly asynchronous
    @MainActor open func addSubview(_ view: UIView)
                         ^
SwiftDriverJobDiscovery normal arm64 Emitting module for SwiftChessNeo (in target 'SwiftChessNeo' from project 'swift-chess-neo')
SwiftDriverJobDiscovery normal arm64 Compiling Square.swift (in target 'SwiftChessNeo' from project 'swift-chess-neo')
SwiftDriver\ Compilation\ Requirements SwiftChessNeo normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SwiftChessNeo' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SwiftChessNeo -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/SwiftChessNeo.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.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -target arm64-apple-tvos12.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 -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/SwiftChessNeo-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/SwiftChessNeo.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/SwiftChessNeo_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/SwiftChessNeo-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/SwiftChessNeo-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/SwiftChessNeo-Swift.h (in target 'SwiftChessNeo' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/SwiftChessNeo-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-appletvos/SwiftChessNeo-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeo.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/SwiftChessNeo.swiftmodule (in target 'SwiftChessNeo' from project 'swift-chess-neo')
    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/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/SwiftChessNeo.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeo.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeo.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/SwiftChessNeo.swiftdoc (in target 'SwiftChessNeo' from project 'swift-chess-neo')
    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/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/SwiftChessNeo.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeo.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeo.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/SwiftChessNeo.abi.json (in target 'SwiftChessNeo' from project 'swift-chess-neo')
    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/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/SwiftChessNeo.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeo.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeo.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/SwiftChessNeo.swiftsourceinfo (in target 'SwiftChessNeo' from project 'swift-chess-neo')
    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/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/SwiftChessNeo.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeo.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
SwiftDriver SwiftChessNeoTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SwiftChessNeoTests' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SwiftChessNeoTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.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.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.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 -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ SwiftChessNeoTests (in target 'SwiftChessNeoTests' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/PGNParsingTests.swift /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/PlayerTests.swift /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/SwiftChessNeoTests.swift /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/VariantTests.swift -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftChessNeoTests -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.swiftsourceinfo -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.abi.json
EmitSwiftModule normal arm64 (in target 'SwiftChessNeoTests' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/PGNParsingTests.swift /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/PlayerTests.swift /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/SwiftChessNeoTests.swift /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/VariantTests.swift -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftChessNeoTests -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.swiftsourceinfo -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.abi.json
SwiftDriverJobDiscovery normal arm64 Compiling Rank.swift, Sequence+Sage.swift (in target 'SwiftChessNeo' from project 'swift-chess-neo')
SwiftCompile normal arm64 Compiling\ VariantTests.swift /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/VariantTests.swift (in target 'SwiftChessNeoTests' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/PGNParsingTests.swift /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/PlayerTests.swift /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/SwiftChessNeoTests.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/VariantTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/VariantTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/VariantTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/VariantTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/VariantTests.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftChessNeoTests -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/VariantTests.o -index-unit-output-path /swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/VariantTests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/VariantTests.swift (in target 'SwiftChessNeoTests' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/PGNParsingTests.swift /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/PlayerTests.swift /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/SwiftChessNeoTests.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/VariantTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/VariantTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/VariantTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/VariantTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/VariantTests.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftChessNeoTests -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/VariantTests.o -index-unit-output-path /swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/VariantTests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Compiling Piece.swift, Player.swift (in target 'SwiftChessNeo' from project 'swift-chess-neo')
SwiftCompile normal arm64 Compiling\ PGNParsingTests.swift /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/PGNParsingTests.swift (in target 'SwiftChessNeoTests' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/PGNParsingTests.swift /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/PlayerTests.swift /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/SwiftChessNeoTests.swift /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/VariantTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/PGNParsingTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/PGNParsingTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/PGNParsingTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/PGNParsingTests.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftChessNeoTests -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/PGNParsingTests.o -index-unit-output-path /swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/PGNParsingTests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/PGNParsingTests.swift (in target 'SwiftChessNeoTests' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/PGNParsingTests.swift /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/PlayerTests.swift /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/SwiftChessNeoTests.swift /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/VariantTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/PGNParsingTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/PGNParsingTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/PGNParsingTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/PGNParsingTests.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftChessNeoTests -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/PGNParsingTests.o -index-unit-output-path /swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/PGNParsingTests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Compiling Variant.swift (in target 'SwiftChessNeo' from project 'swift-chess-neo')
SwiftCompile normal arm64 Compiling\ PlayerTests.swift /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/PlayerTests.swift (in target 'SwiftChessNeoTests' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/PGNParsingTests.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/PlayerTests.swift /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/SwiftChessNeoTests.swift /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/VariantTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/PlayerTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/PlayerTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/PlayerTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/PlayerTests.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftChessNeoTests -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/PlayerTests.o -index-unit-output-path /swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/PlayerTests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/PlayerTests.swift (in target 'SwiftChessNeoTests' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/PGNParsingTests.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/PlayerTests.swift /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/SwiftChessNeoTests.swift /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/VariantTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/PlayerTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/PlayerTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/PlayerTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/PlayerTests.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftChessNeoTests -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/PlayerTests.o -index-unit-output-path /swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/PlayerTests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ SwiftChessNeoTests.swift /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/SwiftChessNeoTests.swift (in target 'SwiftChessNeoTests' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/PGNParsingTests.swift /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/PlayerTests.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/SwiftChessNeoTests.swift /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/VariantTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftChessNeoTests -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.o -index-unit-output-path /swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/SwiftChessNeoTests.swift (in target 'SwiftChessNeoTests' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/PGNParsingTests.swift /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/PlayerTests.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/SwiftChessNeoTests.swift /Users/admin/builder/spi-builder-workspace/Tests/SwiftChessNeoTests/VariantTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name SwiftChessNeoTests -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 18.1 -target-sdk-name appletvos18.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.o -index-unit-output-path /swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Compiling Tables.swift (in target 'SwiftChessNeo' from project 'swift-chess-neo')
SwiftDriverJobDiscovery normal arm64 Compiling CastlingRights.swift, Color.swift (in target 'SwiftChessNeo' from project 'swift-chess-neo')
SwiftDriverJobDiscovery normal arm64 Compiling File.swift, Game.swift (in target 'SwiftChessNeo' from project 'swift-chess-neo')
SwiftDriverJobDiscovery normal arm64 Compiling PGN.swift, PGNMove.swift (in target 'SwiftChessNeo' from project 'swift-chess-neo')
SwiftDriverJobDiscovery normal arm64 Compiling InternalTypes.swift, Move.swift (in target 'SwiftChessNeo' from project 'swift-chess-neo')
SwiftDriverJobDiscovery normal arm64 Compiling Bitboard.swift, Board.swift (in target 'SwiftChessNeo' from project 'swift-chess-neo')
SwiftDriver\ Compilation SwiftChessNeo normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SwiftChessNeo' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SwiftChessNeo -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/SwiftChessNeo.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.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk -target arm64-apple-tvos12.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 -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/SwiftChessNeo-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/SwiftChessNeo.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/SwiftChessNeo_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/SwiftChessNeo-Swift.h -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/SwiftChessNeo.o normal (in target 'SwiftChessNeo' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos12.0 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.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.1.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.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/SwiftChessNeo.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/SwiftChessNeo_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/SwiftChessNeo.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/SwiftChessNeo_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeo.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeo.o (in target 'SwiftChessNeo' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeo.o
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeoTests.xctest/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/empty-SwiftChessNeoTests.plist (in target 'SwiftChessNeoTests' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/empty-SwiftChessNeoTests.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/SwiftChessNeoTests.xctest/Info.plist
SwiftDriverJobDiscovery normal arm64 Emitting module for SwiftChessNeoTests (in target 'SwiftChessNeoTests' from project 'swift-chess-neo')
SwiftDriver\ Compilation\ Requirements SwiftChessNeoTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SwiftChessNeoTests' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SwiftChessNeoTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.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.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.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 -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -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/SwiftChessNeoTests.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.swiftmodule (in target 'SwiftChessNeoTests' from project 'swift-chess-neo')
    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/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeoTests.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeoTests.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.swiftdoc (in target 'SwiftChessNeoTests' from project 'swift-chess-neo')
    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/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeoTests.swiftmodule/arm64-apple-tvos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeoTests.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.swiftsourceinfo (in target 'SwiftChessNeoTests' from project 'swift-chess-neo')
    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/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeoTests.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeoTests.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.abi.json (in target 'SwiftChessNeoTests' from project 'swift-chess-neo')
    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/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeoTests.swiftmodule/arm64-apple-tvos.abi.json
SwiftDriverJobDiscovery normal arm64 Compiling PlayerTests.swift (in target 'SwiftChessNeoTests' from project 'swift-chess-neo')
SwiftDriverJobDiscovery normal arm64 Compiling VariantTests.swift (in target 'SwiftChessNeoTests' from project 'swift-chess-neo')
SwiftDriverJobDiscovery normal arm64 Compiling SwiftChessNeoTests.swift (in target 'SwiftChessNeoTests' from project 'swift-chess-neo')
SwiftDriverJobDiscovery normal arm64 Compiling PGNParsingTests.swift (in target 'SwiftChessNeoTests' from project 'swift-chess-neo')
SwiftDriver\ Compilation SwiftChessNeoTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'SwiftChessNeoTests' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name SwiftChessNeoTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.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.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.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 -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-16.1.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.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/appletvos18.1-22J572-e7fdd8cf9ffd4d4af20823079b51a726.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.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/SwiftChessNeoTests.xctest/SwiftChessNeoTests normal (in target 'SwiftChessNeoTests' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-tvos13.0 -bundle -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.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.1.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.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.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/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -fprofile-instr-generate -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/appletvos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.swiftmodule -Wl,-no_warn_duplicate_libraries -framework XCTest -lXCTestSwiftSupport -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeoTests.xctest/SwiftChessNeoTests -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeo.build/Objects-normal/arm64/SwiftChessNeo.swiftmodule
GenerateDSYMFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeoTests.xctest.dSYM /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeoTests.xctest/SwiftChessNeoTests (in target 'SwiftChessNeoTests' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeoTests.xctest/SwiftChessNeoTests -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeoTests.xctest.dSYM
CopySwiftLibs /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeoTests.xctest (in target 'SwiftChessNeoTests' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftStdLibTool --copy --verbose --scan-executable /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeoTests.xctest/SwiftChessNeoTests --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeoTests.xctest/Frameworks --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeoTests.xctest/PlugIns --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeoTests.xctest/SystemExtensions --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeoTests.xctest/Extensions --platform appletvos --toolchain /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --destination /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeoTests.xctest/Frameworks --strip-bitcode --scan-executable /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/libXCTestSwiftSupport.dylib --strip-bitcode-tool /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip --emit-dependency-info /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/SwiftStdLibToolInputDependencies.dep --filter-for-swift-os --back-deploy-swift-concurrency
Ignoring --strip-bitcode because --sign was not passed
Copying /Applications/Xcode-16.1.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/SwiftChessNeoTests.xctest/Frameworks/libswift_Concurrency.dylib
ExtractAppIntentsMetadata (in target 'SwiftChessNeoTests' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeoTests.xctest --toolchain-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name SwiftChessNeoTests --sdk-root /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS18.1.sdk --xcode-version 16B40 --platform-family tvOS --deployment-target 13.0 --bundle-identifier spi-builder-workspace.SwiftChessNeoTests --target-triple arm64-apple-tvos13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeoTests.xctest/SwiftChessNeoTests --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/SwiftChessNeoTests.DependencyMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-chess-neo.build/Debug-appletvos/SwiftChessNeoTests.build/Objects-normal/arm64/SwiftChessNeoTests.SwiftConstValuesFileList --compile-time-extraction --deployment-aware-processing --validate-assistant-intents
note: Metadata extraction skipped. No AppIntents.framework dependency found. (in target 'SwiftChessNeoTests' from project 'swift-chess-neo')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeoTests.xctest (in target 'SwiftChessNeoTests' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeoTests.xctest
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeoTests.xctest (in target 'SwiftChessNeoTests' from project 'swift-chess-neo')
    cd /Users/admin/builder/spi-builder-workspace
    /usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/SwiftChessNeoTests.xctest
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "swift-chess-neo",
  "name" : "swift-chess-neo",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "SwiftChessNeo",
      "targets" : [
        "SwiftChessNeo"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwiftChessNeoTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftChessNeoTests",
      "path" : "Tests/SwiftChessNeoTests",
      "sources" : [
        "PGNParsingTests.swift",
        "PlayerTests.swift",
        "SwiftChessNeoTests.swift",
        "VariantTests.swift"
      ],
      "target_dependencies" : [
        "SwiftChessNeo"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftChessNeo",
      "module_type" : "SwiftTarget",
      "name" : "SwiftChessNeo",
      "path" : "Sources/SwiftChessNeo",
      "product_memberships" : [
        "SwiftChessNeo"
      ],
      "sources" : [
        "Bitboard.swift",
        "Board.swift",
        "CastlingRights.swift",
        "Color.swift",
        "File.swift",
        "Game.swift",
        "InternalTypes.swift",
        "Move.swift",
        "PGN.swift",
        "PGNMove.swift",
        "Piece.swift",
        "Player.swift",
        "Rank.swift",
        "Sequence+Sage.swift",
        "Square.swift",
        "Tables.swift",
        "Variant.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.