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 YComponentBrowser 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 YComponentBrowser -destination generic/platform=tvos OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete

Build Log

    func populate(with model: Model)
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:97:10: warning: main actor-isolated instance method 'prepareForReuse()' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    func prepareForReuse() {
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:97:10: note: add 'nonisolated' to 'prepareForReuse()' to make this instance method not isolated to the actor
    func prepareForReuse() {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:96:28: note: add '@preconcurrency' to the 'Reusable' conformance to defer isolation checking to run time
extension CatalogDemoView: Reusable {
                           ^
                           @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Reusable.swift:12:10: note: mark the protocol requirement 'prepareForReuse()' 'async' to allow actor-isolated conformances
    func prepareForReuse()
         ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:20:40: warning: main actor-isolated property 'isPopulated' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.displayView.isPopulated)
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:73:9: note: property declared here
    var isPopulated = false
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:20:28: warning: main actor-isolated property 'displayView' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.displayView.isPopulated)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:64:16: note: property declared here
    public let displayView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:21:13: warning: call to main actor-isolated instance method 'populate(with:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.populate(with: model)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:160:17: note: calls to instance method 'populate(with:)' from outside of its actor context are implicitly asynchronous
    public func populate(with model: Model) {
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:11:10: note: add '@MainActor' to make instance method 'testPopulatable()' part of global actor 'MainActor'
    func testPopulatable() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:22:39: warning: main actor-isolated property 'isPopulated' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertTrue(sut.displayView.isPopulated)
                                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:73:9: note: property declared here
    var isPopulated = false
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:22:27: warning: main actor-isolated property 'displayView' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertTrue(sut.displayView.isPopulated)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:64:16: note: property declared here
    public let displayView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:28:40: warning: main actor-isolated property 'isPrepared' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.displayView.isPrepared)
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:72:9: note: property declared here
    var isPrepared = false
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:28:28: warning: main actor-isolated property 'displayView' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertFalse(sut.displayView.isPrepared)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:64:16: note: property declared here
    public let displayView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:29:13: warning: call to main actor-isolated instance method 'prepareForReuse()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.prepareForReuse()
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:172:17: note: calls to instance method 'prepareForReuse()' from outside of its actor context are implicitly asynchronous
    public func prepareForReuse() {
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:25:10: note: add '@MainActor' to make instance method 'testReusable()' part of global actor 'MainActor'
    func testReusable() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:30:39: warning: main actor-isolated property 'isPrepared' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertTrue(sut.displayView.isPrepared)
                                      ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:72:9: note: property declared here
    var isPrepared = false
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:30:27: warning: main actor-isolated property 'displayView' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertTrue(sut.displayView.isPrepared)
                          ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:64:16: note: property declared here
    public let displayView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:36:38: warning: main actor-isolated property 'isHighlighted' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertNil(sut.displayView.isHighlighted)
                                     ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:74:9: note: property declared here
    var isHighlighted: Bool?
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:36:26: warning: main actor-isolated property 'displayView' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertNil(sut.displayView.isHighlighted)
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:64:16: note: property declared here
    public let displayView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:37:13: warning: call to main actor-isolated instance method 'setHighlighted' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.setHighlighted(true)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:184:17: note: calls to instance method 'setHighlighted' from outside of its actor context are implicitly asynchronous
    public func setHighlighted(_ isHighlighted: Bool) {
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:33:10: note: add '@MainActor' to make instance method 'testHighlightable()' part of global actor 'MainActor'
    func testHighlightable() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:38:40: warning: main actor-isolated property 'isHighlighted' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.displayView.isHighlighted, true)
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:74:9: note: property declared here
    var isHighlighted: Bool?
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:38:28: warning: main actor-isolated property 'displayView' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.displayView.isHighlighted, true)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:64:16: note: property declared here
    public let displayView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:39:13: warning: call to main actor-isolated instance method 'setHighlighted' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.setHighlighted(false)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:184:17: note: calls to instance method 'setHighlighted' from outside of its actor context are implicitly asynchronous
    public func setHighlighted(_ isHighlighted: Bool) {
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:33:10: note: add '@MainActor' to make instance method 'testHighlightable()' part of global actor 'MainActor'
    func testHighlightable() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:40:40: warning: main actor-isolated property 'isHighlighted' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.displayView.isHighlighted, false)
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:74:9: note: property declared here
    var isHighlighted: Bool?
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:40:28: warning: main actor-isolated property 'displayView' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.displayView.isHighlighted, false)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:64:16: note: property declared here
    public let displayView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:46:38: warning: main actor-isolated property 'isSelected' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertNil(sut.displayView.isSelected)
                                     ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:75:9: note: property declared here
    var isSelected: Bool?
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:46:26: warning: main actor-isolated property 'displayView' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertNil(sut.displayView.isSelected)
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:64:16: note: property declared here
    public let displayView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:47:13: warning: call to main actor-isolated instance method 'setSelected' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.setSelected(true)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:195:17: note: calls to instance method 'setSelected' from outside of its actor context are implicitly asynchronous
    public func setSelected(_ isSelected: Bool) {
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:43:10: note: add '@MainActor' to make instance method 'testSelectable()' part of global actor 'MainActor'
    func testSelectable() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:48:40: warning: main actor-isolated property 'isSelected' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.displayView.isSelected, true)
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:75:9: note: property declared here
    var isSelected: Bool?
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:48:28: warning: main actor-isolated property 'displayView' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.displayView.isSelected, true)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:64:16: note: property declared here
    public let displayView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:49:13: warning: call to main actor-isolated instance method 'setSelected' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.setSelected(false)
            ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:195:17: note: calls to instance method 'setSelected' from outside of its actor context are implicitly asynchronous
    public func setSelected(_ isSelected: Bool) {
                ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:43:10: note: add '@MainActor' to make instance method 'testSelectable()' part of global actor 'MainActor'
    func testSelectable() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:50:40: warning: main actor-isolated property 'isSelected' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.displayView.isSelected, false)
                                       ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:75:9: note: property declared here
    var isSelected: Bool?
        ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:50:28: warning: main actor-isolated property 'displayView' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssertEqual(sut.displayView.isSelected, false)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:64:16: note: property declared here
    public let displayView: View = View(frame: .zero)
               ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:54:53: warning: call to main actor-isolated initializer 'init(coder:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let sut = CatalogDisplayView<CatalogDemoView>(coder: try makeCoder(for: makeSUT()))
                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:112:21: note: calls to initializer 'init(coder:)' from outside of its actor context are implicitly asynchronous
    public required init?(coder: NSCoder) { nil }
                    ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:53:10: note: add '@MainActor' to make instance method 'testInitWithCoder()' part of global actor 'MainActor'
    func testInitWithCoder() throws {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:61:53: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let sut = CatalogDisplayView<CatalogDemoView>()
                                                    ^
UIKit.UIView:38:35: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
    @MainActor public convenience init()
                                  ^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:60:10: note: add '@MainActor' to make instance method 'makeSUT(file:line:)' part of global actor 'MainActor'
    func makeSUT(file: StaticString = #filePath, line: UInt = #line) -> CatalogDisplayView<CatalogDemoView> {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:54:53: warning: sending task-isolated value of type 'NSCoder' with later accesses to main actor-isolated context risks causing data races; this is an error in the Swift 6 language mode
        let sut = CatalogDisplayView<CatalogDemoView>(coder: try makeCoder(for: makeSUT()))
                  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
SwiftCompile normal arm64 Compiling\ ClassificationViewControllerTest.swift,\ XCTestCase+MemoryLeakTracking.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Extensions/XCTestCase+MemoryLeakTracking.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    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/Tests/YComponentBrowserTests/CatalogFactoryTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Extensions/XCTestCase+MemoryLeakTracking.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Extensions/XCTestCase+makeCoder.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Categories/CatalogCategoryTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Categories/CategoriesTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Destinations/CatalogDestinationTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Destinations/SubcategoryDestinationTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Protocols/IdentifiableProtocolTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Cells/GenericCollectionViewCellTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Cells/GenericTableViewCellTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Controllers/GenericCollectionViewControllerTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Controllers/GenericTableViewControllerTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/CatalogDisplayViewTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/ColorViewTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/FontViewTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/IconViewTest.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/ClassificationViewControllerTest.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/ClassificationViewControllerTest.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/ClassificationViewControllerTest.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/ClassificationViewControllerTest.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+MemoryLeakTracking.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+MemoryLeakTracking.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+MemoryLeakTracking.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+MemoryLeakTracking.dia -target arm64-apple-tvos14.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/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests_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/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name YComponentBrowserTests -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/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/ClassificationViewControllerTest.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+MemoryLeakTracking.o -index-unit-output-path /YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/ClassificationViewControllerTest.o -index-unit-output-path /YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+MemoryLeakTracking.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    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/Tests/YComponentBrowserTests/CatalogFactoryTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Extensions/XCTestCase+MemoryLeakTracking.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Extensions/XCTestCase+makeCoder.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Categories/CatalogCategoryTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Categories/CategoriesTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Destinations/CatalogDestinationTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Destinations/SubcategoryDestinationTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Protocols/IdentifiableProtocolTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Cells/GenericCollectionViewCellTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Cells/GenericTableViewCellTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Controllers/GenericCollectionViewControllerTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Controllers/GenericTableViewControllerTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/CatalogDisplayViewTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/ColorViewTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/FontViewTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/IconViewTest.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/ClassificationViewControllerTest.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/ClassificationViewControllerTest.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/ClassificationViewControllerTest.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/ClassificationViewControllerTest.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+MemoryLeakTracking.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+MemoryLeakTracking.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+MemoryLeakTracking.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+MemoryLeakTracking.dia -target arm64-apple-tvos14.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/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests_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/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name YComponentBrowserTests -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/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/ClassificationViewControllerTest.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+MemoryLeakTracking.o -index-unit-output-path /YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/ClassificationViewControllerTest.o -index-unit-output-path /YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+MemoryLeakTracking.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Extensions/XCTestCase+MemoryLeakTracking.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    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/Tests/YComponentBrowserTests/CatalogFactoryTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Extensions/XCTestCase+MemoryLeakTracking.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Extensions/XCTestCase+makeCoder.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Categories/CatalogCategoryTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Categories/CategoriesTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Destinations/CatalogDestinationTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Destinations/SubcategoryDestinationTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Protocols/IdentifiableProtocolTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Cells/GenericCollectionViewCellTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Cells/GenericTableViewCellTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Controllers/GenericCollectionViewControllerTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Controllers/GenericTableViewControllerTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/CatalogDisplayViewTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/ColorViewTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/FontViewTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/IconViewTest.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/ClassificationViewControllerTest.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/ClassificationViewControllerTest.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/ClassificationViewControllerTest.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/ClassificationViewControllerTest.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+MemoryLeakTracking.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+MemoryLeakTracking.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+MemoryLeakTracking.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+MemoryLeakTracking.dia -target arm64-apple-tvos14.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/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests_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/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name YComponentBrowserTests -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/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/ClassificationViewControllerTest.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+MemoryLeakTracking.o -index-unit-output-path /YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/ClassificationViewControllerTest.o -index-unit-output-path /YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+MemoryLeakTracking.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftEmitModule normal arm64 Emitting\ module\ for\ YComponentBrowser (in target 'YComponentBrowser' from project 'YComponentBrowser')
    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/YComponentBrowser/CatalogFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/CatalogCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/ColorCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/ComponentCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/CustomCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/FontCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/IconCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Destinations/CatalogDetailDestination.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Destinations/SubcategoryDetailDestination.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/CatalogDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Classification.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Destination.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Highlightable.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Identifiable.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Populatable.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Reusable.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Selectable.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Cells/GenericCollectionViewCell.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Cells/GenericTableViewCell.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Controllers/GenericCollectionViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Controllers/GenericTableViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/CatalogDisplayView.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/ColorView.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/ContentView.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/FontView.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/IconView.swift -target arm64-apple-tvos14.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 -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/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser_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/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.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/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name YComponentBrowser -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/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser.abi.json
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationDataSource.swift:15:23: warning: main actor-isolated static property 'cell' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
 8 |
 9 | /// Represents the Classification Datasource
10 | public final class ClassificationDataSource: NSObject, CatalogDataSource {
   |                                                        `- note: add '@preconcurrency' to the 'CatalogDataSource' conformance to defer isolation checking to run time
11 |     /// The type of cell catalogDataSource supports
12 |     public typealias Cell = UITableViewCell
13 |
14 |     /// Represents the cell type
15 |     public static var cell: Cell.Type { UITableViewCell.self }
   |                       `- warning: main actor-isolated static property 'cell' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
16 |
17 |     /// Identifier to identify the cell
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/CatalogDataSource.swift:15:16: note: 'cell' declared here
13 |
14 |     /// Cell type
15 |     static var cell: Cell.Type { get }
   |                `- note: 'cell' declared here
16 |
17 |     /// Identifier to identify the cell
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationDataSource.swift:18:23: warning: main actor-isolated static property 'cellIdentifier' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
16 |
17 |     /// Identifier to identify the cell
18 |     public static var cellIdentifier: String { "ClassificationTableCell" }
   |                       `- warning: main actor-isolated static property 'cellIdentifier' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
19 |
20 |     /// Represents the title of catalog
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/CatalogDataSource.swift:18:16: note: 'cellIdentifier' declared here
16 |
17 |     /// Identifier to identify the cell
18 |     static var cellIdentifier: String { get }
   |                `- note: 'cellIdentifier' declared here
19 |
20 |     /// Catalog title
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationDataSource.swift:24:16: warning: main actor-isolated property 'categories' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
22 |
23 |     /// Represents categories in the catalog
24 |     public let categories: [Classification]
   |                `- warning: main actor-isolated property 'categories' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
25 |
26 |     /// Initializes a  classification data source
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/CatalogDataSource.swift:24:9: note: 'categories' declared here
22 |
23 |     /// Categories in the catalog
24 |     var categories: [Classification] { get }
   |         `- note: 'categories' declared here
25 |
26 |     /// Gets the category based on the index path
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationDataSource.swift:36:17: warning: main actor-isolated instance method 'category(for:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
34 |
35 |     /// :nodoc:
36 |     public func category(for indexPath: IndexPath) -> Classification {
   |                 |- warning: main actor-isolated instance method 'category(for:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
   |                 `- note: add 'nonisolated' to 'category(for:)' to make this instance method not isolated to the actor
37 |         categories[indexPath.row]
38 |     }
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/CatalogDataSource.swift:28:10: note: mark the protocol requirement 'category(for:)' 'async' to allow actor-isolated conformances
26 |     /// Gets the category based on the index path
27 |     /// - Parameter indexPath: index path of tableview
28 |     func category(for indexPath: IndexPath) -> Classification
   |          `- note: mark the protocol requirement 'category(for:)' 'async' to allow actor-isolated conformances
29 | }
30 |
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:160:17: warning: main actor-isolated instance method 'populate(with:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
156 | // MARK: - Populatable
157 |
158 | extension CatalogDisplayView: Populatable {
    |                               `- note: add '@preconcurrency' to the 'Populatable' conformance to defer isolation checking to run time
159 |     /// :nodoc:
160 |     public func populate(with model: Model) {
    |                 |- warning: main actor-isolated instance method 'populate(with:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |                 `- note: add 'nonisolated' to 'populate(with:)' to make this instance method not isolated to the actor
161 |         outerStackView.axis = model.axis
162 |         displayView.populate(with: model.model)
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Populatable.swift:16:10: note: mark the protocol requirement 'populate(with:)' 'async' to allow actor-isolated conformances
14 | /// Used to populate UI component data passed in the Model
15 | /// - Parameter model: Model
16 |     func populate(with model: Model)
   |          `- note: mark the protocol requirement 'populate(with:)' 'async' to allow actor-isolated conformances
17 | }
18 |
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:172:17: warning: main actor-isolated instance method 'prepareForReuse()' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
168 | // MARK: - Reusable
169 |
170 | extension CatalogDisplayView: Reusable {
    |                               `- note: add '@preconcurrency' to the 'Reusable' conformance to defer isolation checking to run time
171 |     /// :nodoc:
172 |     public func prepareForReuse() {
    |                 |- warning: main actor-isolated instance method 'prepareForReuse()' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |                 `- note: add 'nonisolated' to 'prepareForReuse()' to make this instance method not isolated to the actor
173 |         displayView.prepareForReuse()
174 |         outerStackView.axis = .horizontal
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Reusable.swift:12:10: note: mark the protocol requirement 'prepareForReuse()' 'async' to allow actor-isolated conformances
10 | public protocol Reusable {
11 |     /// Used to perform clean up for reuse
12 |     func prepareForReuse()
   |          `- note: mark the protocol requirement 'prepareForReuse()' 'async' to allow actor-isolated conformances
13 | }
14 |
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:184:17: warning: main actor-isolated instance method 'setHighlighted' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
180 | // MARK: - Highlightable
181 |
182 | extension CatalogDisplayView: Highlightable {
    |                               `- note: add '@preconcurrency' to the 'Highlightable' conformance to defer isolation checking to run time
183 |     /// :nodoc:
184 |     public func setHighlighted(_ isHighlighted: Bool) {
    |                 |- warning: main actor-isolated instance method 'setHighlighted' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    |                 `- note: add 'nonisolated' to 'setHighlighted' to make this instance method not isolated to the actor
185 |         if let highlightable = displayView as? Highlightable {
186 |             highlightable.setHighlighted(isHighlighted)
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Highlightable.swift:13:10: note: mark the protocol requirement 'setHighlighted' 'async' to allow actor-isolated conformances
11 |     /// Highlights the UI component
12 |     /// - Parameter isHighlighted: whether the UI component is highlighted
13 |     func setHighlighted(_ isHighlighted: Bool)
   |          `- note: mark the protocol requirement 'setHighlighted' 'async' to allow actor-isolated conformances
14 | }
15 |
SwiftDriverJobDiscovery normal arm64 Emitting module for YComponentBrowserTests (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftDriver\ Compilation\ Requirements YComponentBrowserTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    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 YComponentBrowserTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.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-tvos14.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/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests-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/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests_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/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling ColorViewTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftCompile normal arm64 Compiling\ XCTestCase+makeCoder.swift,\ CatalogCategoryTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Extensions/XCTestCase+makeCoder.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Categories/CatalogCategoryTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    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/Tests/YComponentBrowserTests/CatalogFactoryTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Extensions/XCTestCase+MemoryLeakTracking.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Extensions/XCTestCase+makeCoder.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Categories/CatalogCategoryTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Categories/CategoriesTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Destinations/CatalogDestinationTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Destinations/SubcategoryDestinationTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Protocols/IdentifiableProtocolTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Cells/GenericCollectionViewCellTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Cells/GenericTableViewCellTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Controllers/GenericCollectionViewControllerTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Controllers/GenericTableViewControllerTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/CatalogDisplayViewTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/ColorViewTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/FontViewTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/IconViewTest.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+makeCoder.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+makeCoder.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+makeCoder.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+makeCoder.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CatalogCategoryTest.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CatalogCategoryTest.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CatalogCategoryTest.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CatalogCategoryTest.dia -target arm64-apple-tvos14.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/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests_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/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name YComponentBrowserTests -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/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+makeCoder.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CatalogCategoryTest.o -index-unit-output-path /YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+makeCoder.o -index-unit-output-path /YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CatalogCategoryTest.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Extensions/XCTestCase+makeCoder.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    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/Tests/YComponentBrowserTests/CatalogFactoryTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Extensions/XCTestCase+MemoryLeakTracking.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Extensions/XCTestCase+makeCoder.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Categories/CatalogCategoryTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Categories/CategoriesTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Destinations/CatalogDestinationTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Destinations/SubcategoryDestinationTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Protocols/IdentifiableProtocolTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Cells/GenericCollectionViewCellTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Cells/GenericTableViewCellTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Controllers/GenericCollectionViewControllerTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Controllers/GenericTableViewControllerTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/CatalogDisplayViewTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/ColorViewTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/FontViewTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/IconViewTest.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+makeCoder.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+makeCoder.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+makeCoder.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+makeCoder.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CatalogCategoryTest.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CatalogCategoryTest.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CatalogCategoryTest.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CatalogCategoryTest.dia -target arm64-apple-tvos14.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/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests_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/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name YComponentBrowserTests -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/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+makeCoder.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CatalogCategoryTest.o -index-unit-output-path /YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+makeCoder.o -index-unit-output-path /YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CatalogCategoryTest.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Categories/CatalogCategoryTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    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/Tests/YComponentBrowserTests/CatalogFactoryTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Extensions/XCTestCase+MemoryLeakTracking.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Extensions/XCTestCase+makeCoder.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Categories/CatalogCategoryTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Categories/CategoriesTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Destinations/CatalogDestinationTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Destinations/SubcategoryDestinationTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Protocols/IdentifiableProtocolTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Cells/GenericCollectionViewCellTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Cells/GenericTableViewCellTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Controllers/GenericCollectionViewControllerTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Controllers/GenericTableViewControllerTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/CatalogDisplayViewTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/ColorViewTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/FontViewTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/IconViewTest.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+makeCoder.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+makeCoder.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+makeCoder.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+makeCoder.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CatalogCategoryTest.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CatalogCategoryTest.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CatalogCategoryTest.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CatalogCategoryTest.dia -target arm64-apple-tvos14.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/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests_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/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name YComponentBrowserTests -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/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+makeCoder.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CatalogCategoryTest.o -index-unit-output-path /YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/XCTestCase+makeCoder.o -index-unit-output-path /YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CatalogCategoryTest.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Categories/CatalogCategoryTest.swift:10:9: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
    var controller = UIViewController()
        ^
SwiftDriverJobDiscovery normal arm64 Compiling SubcategoryDestinationTests.swift, IdentifiableProtocolTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftCompile normal arm64 Compiling\ CatalogDisplayView.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/CatalogDisplayView.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
    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/YComponentBrowser/CatalogFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/CatalogCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/ColorCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/ComponentCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/CustomCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/FontCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/IconCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Destinations/CatalogDetailDestination.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Destinations/SubcategoryDetailDestination.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/CatalogDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Classification.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Destination.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Highlightable.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Identifiable.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Populatable.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Reusable.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Selectable.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Cells/GenericCollectionViewCell.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Cells/GenericTableViewCell.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Controllers/GenericCollectionViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Controllers/GenericTableViewController.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/CatalogDisplayView.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/ColorView.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/ContentView.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/FontView.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/IconView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/CatalogDisplayView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/CatalogDisplayView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/CatalogDisplayView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/CatalogDisplayView.dia -target arm64-apple-tvos14.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 -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/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser_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/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.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/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name YComponentBrowser -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/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/CatalogDisplayView.o -index-unit-output-path /YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/CatalogDisplayView.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/YComponentBrowser/UI\ Components/Generic\ Views/CatalogDisplayView.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
    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/YComponentBrowser/CatalogFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/CatalogCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/ColorCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/ComponentCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/CustomCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/FontCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/IconCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Destinations/CatalogDetailDestination.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Destinations/SubcategoryDetailDestination.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/CatalogDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Classification.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Destination.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Highlightable.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Identifiable.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Populatable.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Reusable.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Selectable.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Cells/GenericCollectionViewCell.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Cells/GenericTableViewCell.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Controllers/GenericCollectionViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Controllers/GenericTableViewController.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/CatalogDisplayView.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/ColorView.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/ContentView.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/FontView.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/IconView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/CatalogDisplayView.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/CatalogDisplayView.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/CatalogDisplayView.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/CatalogDisplayView.dia -target arm64-apple-tvos14.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 -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/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser_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/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.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/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name YComponentBrowser -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/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/CatalogDisplayView.o -index-unit-output-path /YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/CatalogDisplayView.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:160:17: warning: main actor-isolated instance method 'populate(with:)' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    public func populate(with model: Model) {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:160:17: note: add 'nonisolated' to 'populate(with:)' to make this instance method not isolated to the actor
    public func populate(with model: Model) {
                ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:158:31: note: add '@preconcurrency' to the 'Populatable' conformance to defer isolation checking to run time
extension CatalogDisplayView: Populatable {
                              ^
                              @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Populatable.swift:16:10: note: mark the protocol requirement 'populate(with:)' 'async' to allow actor-isolated conformances
    func populate(with model: Model)
         ^
                                     async
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:172:17: warning: main actor-isolated instance method 'prepareForReuse()' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    public func prepareForReuse() {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:172:17: note: add 'nonisolated' to 'prepareForReuse()' to make this instance method not isolated to the actor
    public func prepareForReuse() {
                ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:170:31: note: add '@preconcurrency' to the 'Reusable' conformance to defer isolation checking to run time
extension CatalogDisplayView: Reusable {
                              ^
                              @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Reusable.swift:12:10: note: mark the protocol requirement 'prepareForReuse()' 'async' to allow actor-isolated conformances
    func prepareForReuse()
         ^
                           async
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:184:17: warning: main actor-isolated instance method 'setHighlighted' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    public func setHighlighted(_ isHighlighted: Bool) {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:184:17: note: add 'nonisolated' to 'setHighlighted' to make this instance method not isolated to the actor
    public func setHighlighted(_ isHighlighted: Bool) {
                ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:182:31: note: add '@preconcurrency' to the 'Highlightable' conformance to defer isolation checking to run time
extension CatalogDisplayView: Highlightable {
                              ^
                              @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Highlightable.swift:13:10: note: mark the protocol requirement 'setHighlighted' 'async' to allow actor-isolated conformances
    func setHighlighted(_ isHighlighted: Bool)
         ^
                                               async
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:195:17: warning: main actor-isolated instance method 'setSelected' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
    public func setSelected(_ isSelected: Bool) {
                ^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:195:17: note: add 'nonisolated' to 'setSelected' to make this instance method not isolated to the actor
    public func setSelected(_ isSelected: Bool) {
                ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:193:31: note: add '@preconcurrency' to the 'Selectable' conformance to defer isolation checking to run time
extension CatalogDisplayView: Selectable {
                              ^
                              @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Selectable.swift:13:10: note: mark the protocol requirement 'setSelected' 'async' to allow actor-isolated conformances
    func setSelected(_ isSelected: Bool)
         ^
                                         async
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/CatalogDisplayView.swift:117:28: error: 'systemBackground' is unavailable in tvOS
        backgroundColor = .systemBackground
                           ^~~~~~~~~~~~~~~~
UIKit.UIColor:135:20: note: 'systemBackground' has been explicitly marked unavailable here
    open class var systemBackground: UIColor { get }
                   ^
SwiftDriverJobDiscovery normal arm64 Compiling FontViewTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YComponentBrowserTests.swiftmodule/arm64-apple-tvos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.swiftmodule (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YComponentBrowserTests.swiftmodule/arm64-apple-tvos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YComponentBrowserTests.swiftmodule/arm64-apple-tvos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.swiftdoc (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YComponentBrowserTests.swiftmodule/arm64-apple-tvos.swiftdoc
SwiftDriverJobDiscovery normal arm64 Compiling IconViewTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YComponentBrowserTests.swiftmodule/arm64-apple-tvos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.abi.json (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YComponentBrowserTests.swiftmodule/arm64-apple-tvos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YComponentBrowserTests.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.swiftsourceinfo (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-appletvos/YComponentBrowserTests.swiftmodule/Project/arm64-apple-tvos.swiftsourceinfo
SwiftCompile normal arm64 Compiling\ GenericTableViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Controllers/GenericTableViewController.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
    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/YComponentBrowser/CatalogFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/CatalogCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/ColorCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/ComponentCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/CustomCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/FontCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/IconCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Destinations/CatalogDetailDestination.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Destinations/SubcategoryDetailDestination.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/CatalogDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Classification.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Destination.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Highlightable.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Identifiable.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Populatable.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Reusable.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Selectable.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Cells/GenericCollectionViewCell.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Cells/GenericTableViewCell.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Controllers/GenericCollectionViewController.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Controllers/GenericTableViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/CatalogDisplayView.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/ColorView.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/ContentView.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/FontView.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/IconView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/GenericTableViewController.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/GenericTableViewController.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/GenericTableViewController.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/GenericTableViewController.dia -target arm64-apple-tvos14.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 -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/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser_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/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.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/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name YComponentBrowser -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/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/GenericTableViewController.o -index-unit-output-path /YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/GenericTableViewController.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/YComponentBrowser/UI\ Components/Generic\ Controllers/GenericTableViewController.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
    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/YComponentBrowser/CatalogFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/CatalogCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/ColorCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/ComponentCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/CustomCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/FontCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/IconCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Destinations/CatalogDetailDestination.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Destinations/SubcategoryDetailDestination.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/CatalogDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Classification.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Destination.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Highlightable.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Identifiable.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Populatable.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Reusable.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Selectable.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Cells/GenericCollectionViewCell.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Cells/GenericTableViewCell.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Controllers/GenericCollectionViewController.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Controllers/GenericTableViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/CatalogDisplayView.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/ColorView.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/ContentView.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/FontView.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/IconView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/GenericTableViewController.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/GenericTableViewController.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/GenericTableViewController.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/GenericTableViewController.dia -target arm64-apple-tvos14.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 -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/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser_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/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.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/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name YComponentBrowser -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/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/GenericTableViewController.o -index-unit-output-path /YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/GenericTableViewController.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ GenericCollectionViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Controllers/GenericCollectionViewController.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
    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/YComponentBrowser/CatalogFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/CatalogCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/ColorCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/ComponentCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/CustomCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/FontCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/IconCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Destinations/CatalogDetailDestination.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Destinations/SubcategoryDetailDestination.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/CatalogDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Classification.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Destination.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Highlightable.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Identifiable.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Populatable.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Reusable.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Selectable.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Cells/GenericCollectionViewCell.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Cells/GenericTableViewCell.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Controllers/GenericCollectionViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Controllers/GenericTableViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/CatalogDisplayView.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/ColorView.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/ContentView.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/FontView.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/IconView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/GenericCollectionViewController.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/GenericCollectionViewController.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/GenericCollectionViewController.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/GenericCollectionViewController.dia -target arm64-apple-tvos14.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 -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/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser_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/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.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/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name YComponentBrowser -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/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/GenericCollectionViewController.o -index-unit-output-path /YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/GenericCollectionViewController.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/YComponentBrowser/UI\ Components/Generic\ Controllers/GenericCollectionViewController.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
    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/YComponentBrowser/CatalogFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/CatalogCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/ColorCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/ComponentCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/CustomCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/FontCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/IconCategory.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Destinations/CatalogDetailDestination.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Destinations/SubcategoryDetailDestination.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/CatalogDataSource.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Classification.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Destination.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Highlightable.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Identifiable.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Populatable.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Reusable.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Selectable.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Cells/GenericCollectionViewCell.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Cells/GenericTableViewCell.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Controllers/GenericCollectionViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Controllers/GenericTableViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/CatalogDisplayView.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/ColorView.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/ContentView.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/FontView.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/IconView.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/GenericCollectionViewController.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/GenericCollectionViewController.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/GenericCollectionViewController.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/GenericCollectionViewController.dia -target arm64-apple-tvos14.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 -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/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser_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/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.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/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name YComponentBrowser -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/YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/GenericCollectionViewController.o -index-unit-output-path /YComponentBrowser.build/Debug-appletvos/YComponentBrowser.build/Objects-normal/arm64/GenericCollectionViewController.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Compiling CatalogDisplayViewTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftCompile normal arm64 Compiling\ CategoriesTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Categories/CategoriesTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    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/Tests/YComponentBrowserTests/CatalogFactoryTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Extensions/XCTestCase+MemoryLeakTracking.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Extensions/XCTestCase+makeCoder.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Categories/CatalogCategoryTest.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Categories/CategoriesTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Destinations/CatalogDestinationTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Destinations/SubcategoryDestinationTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Protocols/IdentifiableProtocolTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Cells/GenericCollectionViewCellTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Cells/GenericTableViewCellTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Controllers/GenericCollectionViewControllerTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Controllers/GenericTableViewControllerTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/CatalogDisplayViewTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/ColorViewTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/FontViewTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/IconViewTest.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CategoriesTest.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CategoriesTest.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CategoriesTest.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CategoriesTest.dia -target arm64-apple-tvos14.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/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests_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/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name YComponentBrowserTests -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/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CategoriesTest.o -index-unit-output-path /YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CategoriesTest.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Categories/CategoriesTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    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/Tests/YComponentBrowserTests/CatalogFactoryTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Extensions/XCTestCase+MemoryLeakTracking.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Extensions/XCTestCase+makeCoder.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Categories/CatalogCategoryTest.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Categories/CategoriesTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Destinations/CatalogDestinationTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Destinations/SubcategoryDestinationTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Protocols/IdentifiableProtocolTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Cells/GenericCollectionViewCellTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Cells/GenericTableViewCellTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Controllers/GenericCollectionViewControllerTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Controllers/GenericTableViewControllerTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/CatalogDisplayViewTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/ColorViewTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/FontViewTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/IconViewTest.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CategoriesTest.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CategoriesTest.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CategoriesTest.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CategoriesTest.dia -target arm64-apple-tvos14.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/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests_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/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name YComponentBrowserTests -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/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CategoriesTest.o -index-unit-output-path /YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CategoriesTest.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Compiling GenericCollectionViewCellTest.swift, GenericTableViewCellTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftCompile normal arm64 Compiling\ CatalogDestinationTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Destinations/CatalogDestinationTests.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    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/Tests/YComponentBrowserTests/CatalogFactoryTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Extensions/XCTestCase+MemoryLeakTracking.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Extensions/XCTestCase+makeCoder.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Categories/CatalogCategoryTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Categories/CategoriesTest.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Destinations/CatalogDestinationTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Destinations/SubcategoryDestinationTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Protocols/IdentifiableProtocolTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Cells/GenericCollectionViewCellTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Cells/GenericTableViewCellTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Controllers/GenericCollectionViewControllerTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Controllers/GenericTableViewControllerTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/CatalogDisplayViewTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/ColorViewTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/FontViewTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/IconViewTest.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CatalogDestinationTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CatalogDestinationTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CatalogDestinationTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CatalogDestinationTests.dia -target arm64-apple-tvos14.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/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests_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/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name YComponentBrowserTests -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/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CatalogDestinationTests.o -index-unit-output-path /YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CatalogDestinationTests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Destinations/CatalogDestinationTests.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
    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/Tests/YComponentBrowserTests/CatalogFactoryTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Extensions/XCTestCase+MemoryLeakTracking.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Extensions/XCTestCase+makeCoder.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Categories/CatalogCategoryTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Categories/CategoriesTest.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Destinations/CatalogDestinationTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Destinations/SubcategoryDestinationTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Protocols/IdentifiableProtocolTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Cells/GenericCollectionViewCellTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Cells/GenericTableViewCellTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Controllers/GenericCollectionViewControllerTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Controllers/GenericTableViewControllerTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/CatalogDisplayViewTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/ColorViewTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/FontViewTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/IconViewTest.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CatalogDestinationTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CatalogDestinationTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CatalogDestinationTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CatalogDestinationTests.dia -target arm64-apple-tvos14.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/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests_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/Products/Debug-appletvos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name YComponentBrowserTests -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/YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CatalogDestinationTests.o -index-unit-output-path /YComponentBrowser.build/Debug-appletvos/YComponentBrowserTests.build/Objects-normal/arm64/CatalogDestinationTests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Compiling CatalogFactoryTest.swift, ClassificationDataSourceTests.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftDriverJobDiscovery normal arm64 Compiling GenericCollectionViewControllerTest.swift, GenericTableViewControllerTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftDriverJobDiscovery normal arm64 Compiling XCTestCase+makeCoder.swift, CatalogCategoryTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftDriverJobDiscovery normal arm64 Compiling CatalogDestinationTests.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'YComponentBrowser' from project 'YComponentBrowser')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'YComponentBrowser' from project 'YComponentBrowser')
** BUILD FAILED **
The following build commands failed:
	SwiftCompile normal arm64 Compiling\ CatalogDisplayView.swift /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/CatalogDisplayView.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/CatalogDisplayView.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
(2 failures)
BUILD FAILURE 6.0 tvOS
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.