This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

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

Failed to build Playback with Swift 6.0 for tvOS using Xcode 16.0.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a xcodebuild -IDEClonedSourcePackagesDirPathOverride=$workDir/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $workDir/.derivedData build -scheme Playback -destination generic/platform=tvos OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete

Build Log

    public static var shared = ImagePipeline()
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/nuke/Sources/ImagePipeline.swift:41:23: note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    public static var shared = ImagePipeline()
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/nuke/Sources/ImagePipeline.swift:41:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var shared = ImagePipeline()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:79:19: warning: reference to class property 'shared' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
    ImagePipeline.shared = ImageRepository.makeImagePipeline(removing: true)
                  ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/nuke/Sources/ImagePipeline.swift:41:23: note: class property declared here
    public static var shared = ImagePipeline()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:106:45: warning: main actor-isolated property 'scale' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
    let wanted = size.width * UIScreen.main.scale
                                            ^
UIKit.UIScreen:12:25: note: property declared here
    @MainActor open var scale: CGFloat { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:104:16: note: add '@MainActor' to make instance method 'imageURL(representing:at:)' part of global actor 'MainActor'
  private func imageURL(
               ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:106:40: warning: main actor-isolated class property 'main' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
    let wanted = size.width * UIScreen.main.scale
                                       ^
UIKit.UIScreen:6:20: note: class property declared here
    open class var main: UIScreen { get }
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:104:16: note: add '@MainActor' to make instance method 'imageURL(representing:at:)' part of global actor 'MainActor'
  private func imageURL(
               ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:188:36: warning: main actor-isolated property 'scale' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
    let l =  1 / 4 / UIScreen.main.scale
                                   ^
UIKit.UIScreen:12:25: note: property declared here
    @MainActor open var scale: CGFloat { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:158:16: note: add '@MainActor' to make instance method 'makePlaceholder(item:size:isClean:)' part of global actor 'MainActor'
  private func makePlaceholder(
               ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:188:31: warning: main actor-isolated class property 'main' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
    let l =  1 / 4 / UIScreen.main.scale
                              ^
UIKit.UIScreen:6:20: note: class property declared here
    open class var main: UIScreen { get }
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:158:16: note: add '@MainActor' to make instance method 'makePlaceholder(item:size:isClean:)' part of global actor 'MainActor'
  private func makePlaceholder(
               ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:223:53: warning: main actor-isolated property 'scale' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
    return UIImage(data: data, scale: UIScreen.main.scale)
                                                    ^
UIKit.UIScreen:12:25: note: property declared here
    @MainActor open var scale: CGFloat { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:215:16: note: add '@MainActor' to make instance method 'cachedImage(url:)' part of global actor 'MainActor'
  private func cachedImage(url: URL) -> UIImage? {
               ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:223:48: warning: main actor-isolated class property 'main' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
    return UIImage(data: data, scale: UIScreen.main.scale)
                                               ^
UIKit.UIScreen:6:20: note: class property declared here
    open class var main: UIScreen { get }
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:215:16: note: add '@MainActor' to make instance method 'cachedImage(url:)' part of global actor 'MainActor'
  private func cachedImage(url: URL) -> UIImage? {
               ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:302:26: warning: reference to class property 'shared' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
    return ImagePipeline.shared.cachedImage(for: req)
                         ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/nuke/Sources/ImagePipeline.swift:41:23: note: class property declared here
    public static var shared = ImagePipeline()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:322:34: warning: main actor-isolated property 'bounds' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
    let originalSize = imageView.bounds.size
                                 ^
UIKit.UIView:3:25: note: property declared here
    @MainActor open var bounds: CGRect { get set }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:314:15: note: add '@MainActor' to make instance method 'loadImage(representing:into:options:completionBlock:)' part of global actor 'MainActor'
  public func loadImage(
              ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:342:17: warning: main actor-isolated property 'image' can not be mutated from a non-isolated context; this is an error in the Swift 6 language mode
      imageView.image = res.image
                ^
UIKit.UIImageView:6:25: note: mutation of this property is only permitted within the actor
    @MainActor open var image: UIImage? { get set }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:314:15: note: add '@MainActor' to make instance method 'loadImage(representing:into:options:completionBlock:)' part of global actor 'MainActor'
  public func loadImage(
              ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:356:32: warning: main actor-isolated property 'image' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        placeholder: imageView.image,
                               ^
UIKit.UIImageView:6:25: note: property declared here
    @MainActor open var image: UIImage? { get set }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:349:10: note: add '@MainActor' to make local function 'issue(_:cb:)' part of global actor 'MainActor'
    func issue(_ url: URL, cb: (() -> Void)? = nil) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:357:58: warning: main actor-isolated property 'image' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
        failureImage: options.fallbackImage ?? imageView.image
                                                         ^
UIKit.UIImageView:6:25: note: property declared here
    @MainActor open var image: UIImage? { get set }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:403:17: warning: main actor-isolated property 'image' can not be mutated from a non-isolated context; this is an error in the Swift 6 language mode
      imageView.image = image
                ^
UIKit.UIImageView:6:25: note: mutation of this property is only permitted within the actor
    @MainActor open var image: UIImage? { get set }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:314:15: note: add '@MainActor' to make instance method 'loadImage(representing:into:options:completionBlock:)' part of global actor 'MainActor'
  public func loadImage(
              ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:452:26: warning: reference to class property 'shared' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
      Nuke.ImagePipeline.shared.loadImage(with: request, completion: { result in
                         ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/nuke/Sources/ImagePipeline.swift:41:23: note: class property declared here
    public static var shared = ImagePipeline()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:530:26: warning: reference to class property 'shared' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
      Nuke.ImagePipeline.shared.loadImage(with: url, completion: { [weak self] result in
                         ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/nuke/Sources/ImagePipeline.swift:41:23: note: class property declared here
    public static var shared = ImagePipeline()
                      ^
SwiftDriverJobDiscovery normal arm64 Compiling ImageTask.swift (in target 'Nuke' from project 'Nuke')
SwiftCompile normal arm64 Compiling\ Playback.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Playback.swift (in target 'Playback' from project 'Playback')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/Images.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/NowPlaying.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Playback/Playback.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackSession.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackState.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/RemoteCommandProxying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Times.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Timestamp.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.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/Playback.build/Debug-appletvos/Playback.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Playback -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback.o -index-unit-output-path /Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback.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/Playback/Playback.swift (in target 'Playback' from project 'Playback')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/Images.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/NowPlaying.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Playback/Playback.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackSession.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackState.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/RemoteCommandProxying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Times.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Timestamp.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.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/Playback.build/Debug-appletvos/Playback.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Playback -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback.o -index-unit-output-path /Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Compiling ImageViewExtensions.swift (in target 'Nuke' from project 'Nuke')
SwiftCompile normal arm64 Compiling\ Images.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/Images.swift (in target 'Playback' from project 'Playback')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/Images.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/NowPlaying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Playback.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackSession.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackState.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/RemoteCommandProxying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Times.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Timestamp.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Images.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Images.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Images.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Images.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.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/Playback.build/Debug-appletvos/Playback.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Playback -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Images.o -index-unit-output-path /Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Images.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/Playback/Images/Images.swift (in target 'Playback' from project 'Playback')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/Images.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/NowPlaying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Playback.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackSession.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackState.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/RemoteCommandProxying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Times.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Timestamp.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Images.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Images.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Images.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Images.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.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/Playback.build/Debug-appletvos/Playback.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Playback -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Images.o -index-unit-output-path /Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Images.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Compiling Internal.swift (in target 'Nuke' from project 'Nuke')
SwiftDriver\ Compilation Nuke normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Nuke' from project 'Nuke')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/nuke
    builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name Nuke -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nuke.build/Debug-appletvos/Nuke.build/Objects-normal/arm64/Nuke.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.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 -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nuke.build/Debug-appletvos/Nuke.build/Objects-normal/arm64/Nuke-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/Nuke.build/Debug-appletvos/Nuke.build/Objects-normal/arm64/Nuke.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nuke.build/Debug-appletvos/Nuke.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nuke.build/Debug-appletvos/Nuke.build/Objects-normal/arm64/Nuke_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/Nuke.build/Debug-appletvos/Nuke.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nuke.build/Debug-appletvos/Nuke.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nuke.build/Debug-appletvos/Nuke.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/Nuke.build/Debug-appletvos/Nuke.build/Objects-normal/arm64/Nuke-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/nuke -experimental-emit-module-separately -disable-cmo
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'Nuke' from project 'Nuke')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'Playback' from project 'Playback')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'Playback' from project 'Playback')
** BUILD FAILED **
The following build commands failed:
	SwiftEmitModule normal arm64 Emitting\ module\ for\ Playback (in target 'Playback' from project 'Playback')
	SwiftCompile normal arm64 Compiling\ ImageRepository.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift (in target 'Playback' from project 'Playback')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift (in target 'Playback' from project 'Playback')
(3 failures)
Command line invocation:
    /Applications/Xcode-15.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath /Users/admin/builder/spi-builder-workspace/.derivedData build -scheme Playback -destination generic/platform=tvos "OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete"
User defaults from command line:
    IDEClonedSourcePackagesDirPathOverride = /Users/admin/builder/spi-builder-workspace/.dependencies
    IDEDerivedDataPathOverride = /Users/admin/builder/spi-builder-workspace/.derivedData
    IDEPackageSupportToolchainOverrideForManifestLoading = org.swift.600202405261a
    IDEPackageSupportUseBuiltinSCM = YES
Build settings from command line:
    OTHER_SWIFT_FLAGS = -stats-output-dir .stats -strict-concurrency=complete
    TOOLCHAINS = org.swift.600202405261a
Resolve Package Graph
Resolved source packages:
  Playback: /Users/admin/builder/spi-builder-workspace
  Nuke: https://github.com/kean/nuke @ 9.1.3
Prepare packages
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (4 targets)
    Target 'Playback' in project 'Playback'
        ➜ Explicit dependency on target 'Playback' in project 'Playback'
        ➜ Explicit dependency on target 'Nuke' in project 'Nuke'
    Target 'Playback' in project 'Playback'
        ➜ Explicit dependency on target 'Nuke' in project 'Nuke'
    Target 'Nuke' in project 'Nuke'
        ➜ Explicit dependency on target 'Nuke' in project 'Nuke'
    Target 'Nuke' in project 'Nuke' (no dependencies)
GatherProvisioningInputs
CreateBuildDescription
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'.
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'Playback' from project 'Playback')
SwiftDriver Playback normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Playback' from project 'Playback')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-SwiftDriver -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name Playback -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -target arm64-apple-tvos13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback-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/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback_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/Playback.build/Debug-appletvos/Playback.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.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/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriver Nuke normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Nuke' from project 'Nuke')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/nuke
    builtin-SwiftDriver -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name Nuke -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nuke.build/Debug-appletvos/Nuke.build/Objects-normal/arm64/Nuke.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.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 -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nuke.build/Debug-appletvos/Nuke.build/Objects-normal/arm64/Nuke-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/Nuke.build/Debug-appletvos/Nuke.build/Objects-normal/arm64/Nuke.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nuke.build/Debug-appletvos/Nuke.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nuke.build/Debug-appletvos/Nuke.build/Objects-normal/arm64/Nuke_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/Nuke.build/Debug-appletvos/Nuke.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nuke.build/Debug-appletvos/Nuke.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nuke.build/Debug-appletvos/Nuke.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/Nuke.build/Debug-appletvos/Nuke.build/Objects-normal/arm64/Nuke-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/nuke -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ Playback (in target 'Playback' from project 'Playback')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/Images.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/NowPlaying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Playback.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackSession.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackState.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/RemoteCommandProxying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Times.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Timestamp.swift -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.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/Playback.build/Debug-appletvos/Playback.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Playback -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback.abi.json
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:82:21: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 80 |   }
 81 |
 82 |   public static var shared: Images = ImageRepository()
    |                     |- warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
    |                     |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 83 |
 84 |   fileprivate let preheater = Nuke.ImagePrefetcher()
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:84:31: error: module 'Nuke' has no member named 'ImagePrefetcher'
 82 |   public static var shared: Images = ImageRepository()
 83 |
 84 |   fileprivate let preheater = Nuke.ImagePrefetcher()
    |                               `- error: module 'Nuke' has no member named 'ImagePrefetcher'
 85 |
 86 |   /// A thread-safe temporary cache for URL objects. Those aren’t cheap.
/Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackSession.swift:17:5: warning: let 'log' is not concurrency-safe because non-'Sendable' type 'OSLog' may have shared mutable state; this is an error in the Swift 6 language mode
 15 | import os.log
 16 |
 17 | let log = OSLog(subsystem: "ink.codes.playback", category: "Playback")
    |     `- warning: let 'log' is not concurrency-safe because non-'Sendable' type 'OSLog' may have shared mutable state; this is an error in the Swift 6 language mode
 18 |
 19 | struct RemoteCommandTargets {
os.OSLog:1:12: note: class 'OSLog' does not conform to the 'Sendable' protocol
1 | open class OSLog : NSObject {
  |            `- note: class 'OSLog' does not conform to the 'Sendable' protocol
2 |     @available(*, unavailable, message: "Unavailable in Swift")
3 |     public init!()
/Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackSession.swift:15:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'os'
 13 | import AVKit
 14 | import Foundation
 15 | import os.log
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'os'
 16 |
 17 | let log = OSLog(subsystem: "ink.codes.playback", category: "Playback")
    |     |- note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
    |     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 18 |
 19 | struct RemoteCommandTargets {
/Users/admin/builder/spi-builder-workspace/Sources/Playback/RemoteCommandProxying.swift:17:17: warning: var 'once' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
15 |
16 | /// Indicates that remote commands have been added.
17 | fileprivate var once = false
   |                 |- warning: var 'once' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                 |- note: convert 'once' to a 'let' constant to make 'Sendable' shared state immutable
   |                 |- note: annotate 'once' with '@MainActor' if property should only be accessed from the main actor
   |                 `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | protocol RemoteCommandProxying {
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Times.swift:33:21: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'TimeRepository' may have shared mutable state; this is an error in the Swift 6 language mode
 14 | import os.log
 15 |
 16 | public final class TimeRepository: NSObject {
    |                    `- note: class 'TimeRepository' does not conform to the 'Sendable' protocol
 17 |
 18 |   /// Identifies a time.
    :
 31 |
 32 |   /// The shared time respository.
 33 |   public static let shared = TimeRepository()
    |                     |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'TimeRepository' may have shared mutable state; this is an error in the Swift 6 language mode
    |                     |- note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    |                     `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 34 |
 35 |   private lazy var store = NSUbiquitousKeyValueStore.default
SwiftCompile normal arm64 Compiling\ PlaybackState.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackState.swift (in target 'Playback' from project 'Playback')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/Images.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/NowPlaying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Playback.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackSession.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackState.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/RemoteCommandProxying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Times.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Timestamp.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/PlaybackState.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/PlaybackState.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/PlaybackState.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/PlaybackState.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.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/Playback.build/Debug-appletvos/Playback.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Playback -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/PlaybackState.o -index-unit-output-path /Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/PlaybackState.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/Playback/PlaybackState.swift (in target 'Playback' from project 'Playback')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/Images.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/NowPlaying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Playback.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackSession.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackState.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/RemoteCommandProxying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Times.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Timestamp.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/PlaybackState.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/PlaybackState.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/PlaybackState.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/PlaybackState.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.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/Playback.build/Debug-appletvos/Playback.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Playback -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/PlaybackState.o -index-unit-output-path /Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/PlaybackState.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ Timestamp.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Timestamp.swift (in target 'Playback' from project 'Playback')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/Images.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/NowPlaying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Playback.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackSession.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackState.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/RemoteCommandProxying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Times.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Timestamp.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Timestamp.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Timestamp.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Timestamp.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Timestamp.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.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/Playback.build/Debug-appletvos/Playback.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Playback -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Timestamp.o -index-unit-output-path /Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Timestamp.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/Playback/Times/Timestamp.swift (in target 'Playback' from project 'Playback')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/Images.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/NowPlaying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Playback.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackSession.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackState.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/RemoteCommandProxying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Times.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Timestamp.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Timestamp.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Timestamp.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Timestamp.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Timestamp.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.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/Playback.build/Debug-appletvos/Playback.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Playback -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Timestamp.o -index-unit-output-path /Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Timestamp.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ PlaybackSession.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackSession.swift (in target 'Playback' from project 'Playback')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/Images.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/NowPlaying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Playback.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackSession.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackState.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/RemoteCommandProxying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Times.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Timestamp.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/PlaybackSession.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/PlaybackSession.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/PlaybackSession.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/PlaybackSession.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.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/Playback.build/Debug-appletvos/Playback.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Playback -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/PlaybackSession.o -index-unit-output-path /Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/PlaybackSession.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/Playback/PlaybackSession.swift (in target 'Playback' from project 'Playback')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/Images.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/NowPlaying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Playback.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackSession.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackState.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/RemoteCommandProxying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Times.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Timestamp.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/PlaybackSession.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/PlaybackSession.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/PlaybackSession.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/PlaybackSession.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.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/Playback.build/Debug-appletvos/Playback.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Playback -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/PlaybackSession.o -index-unit-output-path /Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/PlaybackSession.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ Times.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Times.swift (in target 'Playback' from project 'Playback')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/Images.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/NowPlaying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Playback.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackSession.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackState.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/RemoteCommandProxying.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Times.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Timestamp.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Times.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Times.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Times.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Times.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.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/Playback.build/Debug-appletvos/Playback.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Playback -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Times.o -index-unit-output-path /Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Times.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/Playback/Times/Times.swift (in target 'Playback' from project 'Playback')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/Images.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/NowPlaying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Playback.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackSession.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackState.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/RemoteCommandProxying.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Times.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Timestamp.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Times.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Times.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Times.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Times.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.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/Playback.build/Debug-appletvos/Playback.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Playback -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Times.o -index-unit-output-path /Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Times.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ RemoteCommandProxying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/RemoteCommandProxying.swift (in target 'Playback' from project 'Playback')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/Images.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/NowPlaying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Playback.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackSession.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackState.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Playback/RemoteCommandProxying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Times.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Timestamp.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/RemoteCommandProxying.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/RemoteCommandProxying.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/RemoteCommandProxying.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/RemoteCommandProxying.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.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/Playback.build/Debug-appletvos/Playback.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Playback -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/RemoteCommandProxying.o -index-unit-output-path /Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/RemoteCommandProxying.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/Playback/RemoteCommandProxying.swift (in target 'Playback' from project 'Playback')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/Images.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/NowPlaying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Playback.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackSession.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackState.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Playback/RemoteCommandProxying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Times.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Timestamp.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/RemoteCommandProxying.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/RemoteCommandProxying.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/RemoteCommandProxying.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/RemoteCommandProxying.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.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/Playback.build/Debug-appletvos/Playback.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Playback -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/RemoteCommandProxying.o -index-unit-output-path /Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/RemoteCommandProxying.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ NowPlaying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/NowPlaying.swift (in target 'Playback' from project 'Playback')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/Images.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Playback/NowPlaying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Playback.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackSession.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackState.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/RemoteCommandProxying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Times.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Timestamp.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/NowPlaying.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/NowPlaying.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/NowPlaying.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/NowPlaying.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.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/Playback.build/Debug-appletvos/Playback.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Playback -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/NowPlaying.o -index-unit-output-path /Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/NowPlaying.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/Playback/NowPlaying.swift (in target 'Playback' from project 'Playback')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/Images.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Playback/NowPlaying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Playback.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackSession.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackState.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/RemoteCommandProxying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Times.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Timestamp.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/NowPlaying.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/NowPlaying.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/NowPlaying.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/NowPlaying.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.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/Playback.build/Debug-appletvos/Playback.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Playback -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/NowPlaying.o -index-unit-output-path /Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/NowPlaying.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ Playback.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Playback.swift (in target 'Playback' from project 'Playback')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/Images.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/NowPlaying.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Playback/Playback.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackSession.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackState.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/RemoteCommandProxying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Times.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Timestamp.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.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/Playback.build/Debug-appletvos/Playback.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Playback -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback.o -index-unit-output-path /Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback.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/Playback/Playback.swift (in target 'Playback' from project 'Playback')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/Images.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/NowPlaying.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Playback/Playback.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackSession.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackState.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/RemoteCommandProxying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Times.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Timestamp.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.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/Playback.build/Debug-appletvos/Playback.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Playback -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback.o -index-unit-output-path /Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ ImageRepository.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift (in target 'Playback' from project 'Playback')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/Images.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/NowPlaying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Playback.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackSession.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackState.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/RemoteCommandProxying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Times.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Timestamp.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/ImageRepository.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/ImageRepository.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/ImageRepository.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/ImageRepository.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.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/Playback.build/Debug-appletvos/Playback.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Playback -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/ImageRepository.o -index-unit-output-path /Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/ImageRepository.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/Playback/Images/ImageRepository.swift (in target 'Playback' from project 'Playback')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/Images.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/NowPlaying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Playback.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackSession.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackState.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/RemoteCommandProxying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Times.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Timestamp.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/ImageRepository.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/ImageRepository.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/ImageRepository.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/ImageRepository.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.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/Playback.build/Debug-appletvos/Playback.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Playback -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/ImageRepository.o -index-unit-output-path /Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/ImageRepository.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:82:21: warning: static property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
  public static var shared: Images = ImageRepository()
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:82:21: note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
  public static var shared: Images = ImageRepository()
                ~~~ ^
                let
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:82:21: note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
  public static var shared: Images = ImageRepository()
                    ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:82:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
  public static var shared: Images = ImageRepository()
                    ^
  nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:84:31: error: module 'Nuke' has no member named 'ImagePrefetcher'
  fileprivate let preheater = Nuke.ImagePrefetcher()
                              ^~~~ ~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackSession.swift:17:5: warning: let 'log' is not concurrency-safe because non-'Sendable' type 'OSLog' may have shared mutable state; this is an error in the Swift 6 language mode
let log = OSLog(subsystem: "ink.codes.playback", category: "Playback")
    ^
os.OSLog:1:12: note: class 'OSLog' does not conform to the 'Sendable' protocol
open class OSLog : NSObject {
           ^
/Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackSession.swift:15:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'os'
import os.log
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackSession.swift:17:5: note: annotate 'log' with '@MainActor' if property should only be accessed from the main actor
let log = OSLog(subsystem: "ink.codes.playback", category: "Playback")
    ^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackSession.swift:17:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let log = OSLog(subsystem: "ink.codes.playback", category: "Playback")
    ^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/nuke/Sources/ImagePipeline.swift:41:23: warning: class property 'shared' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
    public static var shared = ImagePipeline()
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/nuke/Sources/ImagePipeline.swift:41:23: note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
    public static var shared = ImagePipeline()
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/nuke/Sources/ImagePipeline.swift:41:23: note: annotate 'shared' with '@MainActor' if property should only be accessed from the main actor
    public static var shared = ImagePipeline()
                      ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/nuke/Sources/ImagePipeline.swift:41:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
    public static var shared = ImagePipeline()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:79:19: warning: reference to class property 'shared' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
    ImagePipeline.shared = ImageRepository.makeImagePipeline(removing: true)
                  ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/nuke/Sources/ImagePipeline.swift:41:23: note: class property declared here
    public static var shared = ImagePipeline()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:106:45: warning: main actor-isolated property 'scale' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
    let wanted = size.width * UIScreen.main.scale
                                            ^
UIKit.UIScreen:12:25: note: property declared here
    @MainActor open var scale: CGFloat { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:104:16: note: add '@MainActor' to make instance method 'imageURL(representing:at:)' part of global actor 'MainActor'
  private func imageURL(
               ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:106:40: warning: main actor-isolated class property 'main' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
    let wanted = size.width * UIScreen.main.scale
                                       ^
UIKit.UIScreen:6:20: note: class property declared here
    open class var main: UIScreen { get }
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:104:16: note: add '@MainActor' to make instance method 'imageURL(representing:at:)' part of global actor 'MainActor'
  private func imageURL(
               ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:188:36: warning: main actor-isolated property 'scale' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
    let l =  1 / 4 / UIScreen.main.scale
                                   ^
UIKit.UIScreen:12:25: note: property declared here
    @MainActor open var scale: CGFloat { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:158:16: note: add '@MainActor' to make instance method 'makePlaceholder(item:size:isClean:)' part of global actor 'MainActor'
  private func makePlaceholder(
               ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:188:31: warning: main actor-isolated class property 'main' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
    let l =  1 / 4 / UIScreen.main.scale
                              ^
UIKit.UIScreen:6:20: note: class property declared here
    open class var main: UIScreen { get }
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:158:16: note: add '@MainActor' to make instance method 'makePlaceholder(item:size:isClean:)' part of global actor 'MainActor'
  private func makePlaceholder(
               ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:223:53: warning: main actor-isolated property 'scale' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
    return UIImage(data: data, scale: UIScreen.main.scale)
                                                    ^
UIKit.UIScreen:12:25: note: property declared here
    @MainActor open var scale: CGFloat { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:215:16: note: add '@MainActor' to make instance method 'cachedImage(url:)' part of global actor 'MainActor'
  private func cachedImage(url: URL) -> UIImage? {
               ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:223:48: warning: main actor-isolated class property 'main' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
    return UIImage(data: data, scale: UIScreen.main.scale)
                                               ^
UIKit.UIScreen:6:20: note: class property declared here
    open class var main: UIScreen { get }
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:215:16: note: add '@MainActor' to make instance method 'cachedImage(url:)' part of global actor 'MainActor'
  private func cachedImage(url: URL) -> UIImage? {
               ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:302:26: warning: reference to class property 'shared' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
    return ImagePipeline.shared.cachedImage(for: req)
                         ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/nuke/Sources/ImagePipeline.swift:41:23: note: class property declared here
    public static var shared = ImagePipeline()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:322:34: warning: main actor-isolated property 'bounds' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
    let originalSize = imageView.bounds.size
                                 ^
UIKit.UIView:3:25: note: property declared here
    @MainActor open var bounds: CGRect { get set }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:314:15: note: add '@MainActor' to make instance method 'loadImage(representing:into:options:completionBlock:)' part of global actor 'MainActor'
  public func loadImage(
              ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:342:17: warning: main actor-isolated property 'image' can not be mutated from a non-isolated context; this is an error in the Swift 6 language mode
      imageView.image = res.image
                ^
UIKit.UIImageView:6:25: note: mutation of this property is only permitted within the actor
    @MainActor open var image: UIImage? { get set }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:314:15: note: add '@MainActor' to make instance method 'loadImage(representing:into:options:completionBlock:)' part of global actor 'MainActor'
  public func loadImage(
              ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:356:32: warning: main actor-isolated property 'image' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        placeholder: imageView.image,
                               ^
UIKit.UIImageView:6:25: note: property declared here
    @MainActor open var image: UIImage? { get set }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:349:10: note: add '@MainActor' to make local function 'issue(_:cb:)' part of global actor 'MainActor'
    func issue(_ url: URL, cb: (() -> Void)? = nil) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:357:58: warning: main actor-isolated property 'image' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
        failureImage: options.fallbackImage ?? imageView.image
                                                         ^
UIKit.UIImageView:6:25: note: property declared here
    @MainActor open var image: UIImage? { get set }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:403:17: warning: main actor-isolated property 'image' can not be mutated from a non-isolated context; this is an error in the Swift 6 language mode
      imageView.image = image
                ^
UIKit.UIImageView:6:25: note: mutation of this property is only permitted within the actor
    @MainActor open var image: UIImage? { get set }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:314:15: note: add '@MainActor' to make instance method 'loadImage(representing:into:options:completionBlock:)' part of global actor 'MainActor'
  public func loadImage(
              ^
  @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:452:26: warning: reference to class property 'shared' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
      Nuke.ImagePipeline.shared.loadImage(with: request, completion: { result in
                         ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/nuke/Sources/ImagePipeline.swift:41:23: note: class property declared here
    public static var shared = ImagePipeline()
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift:530:26: warning: reference to class property 'shared' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
      Nuke.ImagePipeline.shared.loadImage(with: url, completion: { [weak self] result in
                         ^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/nuke/Sources/ImagePipeline.swift:41:23: note: class property declared here
    public static var shared = ImagePipeline()
                      ^
SwiftCompile normal arm64 Compiling\ Images.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/Images.swift (in target 'Playback' from project 'Playback')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/Images.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/NowPlaying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Playback.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackSession.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackState.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/RemoteCommandProxying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Times.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Timestamp.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Images.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Images.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Images.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Images.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.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/Playback.build/Debug-appletvos/Playback.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Playback -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Images.o -index-unit-output-path /Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Images.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/Playback/Images/Images.swift (in target 'Playback' from project 'Playback')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/Images.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/NowPlaying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Playback.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackSession.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/PlaybackState.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/RemoteCommandProxying.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Times.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Times/Timestamp.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Images.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Images.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Images.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Images.dia -target arm64-apple-tvos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -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/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -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 -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.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/Playback.build/Debug-appletvos/Playback.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name Playback -frontend-parseable-output -disable-clang-spi -target-sdk-version 17.4 -target-sdk-name appletvos17.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Images.o -index-unit-output-path /Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Images.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriver\ Compilation Nuke normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Nuke' from project 'Nuke')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/nuke
    builtin-Swift-Compilation -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name Nuke -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nuke.build/Debug-appletvos/Nuke.build/Objects-normal/arm64/Nuke.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.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 -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nuke.build/Debug-appletvos/Nuke.build/Objects-normal/arm64/Nuke-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/Nuke.build/Debug-appletvos/Nuke.build/Objects-normal/arm64/Nuke.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nuke.build/Debug-appletvos/Nuke.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nuke.build/Debug-appletvos/Nuke.build/Objects-normal/arm64/Nuke_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/Nuke.build/Debug-appletvos/Nuke.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nuke.build/Debug-appletvos/Nuke.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nuke.build/Debug-appletvos/Nuke.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/Nuke.build/Debug-appletvos/Nuke.build/Objects-normal/arm64/Nuke-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/nuke -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation\ Requirements Playback normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Playback' from project 'Playback')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name Playback -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk -target arm64-apple-tvos13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/AppleTVOS.platform/Developer/SDKs/AppleTVOS17.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback-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/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback_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/Playback.build/Debug-appletvos/Playback.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Playback.build/Debug-appletvos/Playback.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/Playback.build/Debug-appletvos/Playback.build/Objects-normal/arm64/Playback-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'Playback' from project 'Playback')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'Nuke' from project 'Nuke')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'Nuke' from project 'Nuke')
** BUILD FAILED **
The following build commands failed:
	SwiftEmitModule normal arm64 Emitting\ module\ for\ Playback (in target 'Playback' from project 'Playback')
	SwiftCompile normal arm64 Compiling\ ImageRepository.swift /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift (in target 'Playback' from project 'Playback')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Playback/Images/ImageRepository.swift (in target 'Playback' from project 'Playback')
(3 failures)
BUILD FAILURE 6.0 tvOS
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.