Build Information
Successful build of YComponentBrowser, reference 1.0.2 (c6328d
), with Swift 6.1 for iOS using Xcode 16.3 on 27 Apr 2025 22:04:34 UTC.
Swift 6 data race errors: 21
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme YComponentBrowser -destination generic/platform=iOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures
Build Log
@MainActor open func cellForRow(at indexPath: IndexPath) -> UITableViewCell?}
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:16:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
func testDidSelect() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:46:42: warning: main actor-isolated property 'tableView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
isCellSelected = ((controllerOne.tableView.cellForRow(at: indexPath)?.isSelected) != nil)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h:27:61: note: property declared here
@property (nonatomic, strong, null_resettable) UITableView *tableView;
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:16:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
func testDidSelect() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:49:23: warning: call to main actor-isolated instance method 'tableView(_:didSelectRowAt:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
controllerTwo.tableView(controllerTwo.tableView, didSelectRowAt: indexPath)
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationViewController.swift:27:26: note: calls to instance method 'tableView(_:didSelectRowAt:)' from outside of its actor context are implicitly asynchronous
public override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:16:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
func testDidSelect() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:49:47: warning: main actor-isolated property 'tableView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
controllerTwo.tableView(controllerTwo.tableView, didSelectRowAt: indexPath)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h:27:61: note: property declared here
@property (nonatomic, strong, null_resettable) UITableView *tableView;
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:16:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
func testDidSelect() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:50:33: warning: call to main actor-isolated instance method 'selectRow(at:animated:scrollPosition:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
controllerTwo.tableView.selectRow(at: indexPath, animated: false, scrollPosition: .none)
^
UIKit.UITableView.selectRow:2:22: note: calls to instance method 'selectRow(at:animated:scrollPosition:)' from outside of its actor context are implicitly asynchronous
@MainActor open func selectRow(at indexPath: IndexPath?, animated: Bool, scrollPosition: UITableView.ScrollPosition)}
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:16:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
func testDidSelect() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:50:23: warning: main actor-isolated property 'tableView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
controllerTwo.tableView.selectRow(at: indexPath, animated: false, scrollPosition: .none)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h:27:61: note: property declared here
@property (nonatomic, strong, null_resettable) UITableView *tableView;
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:16:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
func testDidSelect() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:51:79: warning: main actor-isolated property 'isSelected' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
isCellSelected = ((controllerTwo.tableView.cellForRow(at: indexPath)?.isSelected) != nil)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h:144:55: note: property declared here
@property (nonatomic, getter=isSelected) BOOL selected; // set selected state (title, image, background). default is NO. animated is NO
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:16:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
func testDidSelect() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:51:52: warning: call to main actor-isolated instance method 'cellForRow(at:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
isCellSelected = ((controllerTwo.tableView.cellForRow(at: indexPath)?.isSelected) != nil)
^
UIKit.UITableView.cellForRow:2:22: note: calls to instance method 'cellForRow(at:)' from outside of its actor context are implicitly asynchronous
@MainActor open func cellForRow(at indexPath: IndexPath) -> UITableViewCell?}
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:16:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
func testDidSelect() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:51:42: warning: main actor-isolated property 'tableView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
isCellSelected = ((controllerTwo.tableView.cellForRow(at: indexPath)?.isSelected) != nil)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h:27:61: note: property declared here
@property (nonatomic, strong, null_resettable) UITableView *tableView;
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:16:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
func testDidSelect() {
^
@MainActor
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/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Extensions/XCTestCase+MemoryLeakTracking.swift:15:17: warning: sending 'instance' risks causing data races; this is an error in the Swift 6 language mode
instance,
~~~~~~~~~~~~~~~~^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Extensions/XCTestCase+MemoryLeakTracking.swift:15:17: note: task-isolated 'instance' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
instance,
^~~~~~~~
SwiftCompile normal arm64 Compiling\ GenericCollectionViewControllerTest.swift,\ GenericTableViewControllerTest.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 (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Controllers/GenericCollectionViewControllerTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:12:66: 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 = GenericCollectionViewController<CatalogDemoView>(coder: try makeCoder(for: makeSUT()))
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Controllers/GenericCollectionViewController.swift:33: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 Controllers/GenericCollectionViewControllerTest.swift:11: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 Controllers/GenericCollectionViewControllerTest.swift:19:17: warning: call to main actor-isolated instance method 'collectionView(_:numberOfItemsInSection:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
sut.collectionView(sut.collectionView, numberOfItemsInSection: 0),
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Controllers/GenericCollectionViewController.swift:36:26: note: calls to instance method 'collectionView(_:numberOfItemsInSection:)' from outside of its actor context are implicitly asynchronous
public override func collectionView(
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:19:36: warning: main actor-isolated property 'collectionView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
sut.collectionView(sut.collectionView, numberOfItemsInSection: 0),
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewController.h:25:75: note: property declared here
@property (null_resettable, nonatomic, strong) __kindof UICollectionView *collectionView;
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:26:24: warning: call to main actor-isolated instance method 'collectionView(_:cellForItemAt:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let cell = sut.collectionView(sut.collectionView, cellForItemAt: [0, 0])
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Controllers/GenericCollectionViewController.swift:44:26: note: calls to instance method 'collectionView(_:cellForItemAt:)' from outside of its actor context are implicitly asynchronous
public override func collectionView(
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:24:10: note: add '@MainActor' to make instance method 'testCellForItemAt()' part of global actor 'MainActor'
func testCellForItemAt() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:26:43: warning: main actor-isolated property 'collectionView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let cell = sut.collectionView(sut.collectionView, cellForItemAt: [0, 0])
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewController.h:25:75: note: property declared here
@property (null_resettable, nonatomic, strong) __kindof UICollectionView *collectionView;
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:24:10: note: add '@MainActor' to make instance method 'testCellForItemAt()' part of global actor 'MainActor'
func testCellForItemAt() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:33:13: warning: call to main actor-isolated instance method 'collectionView(_:didSelectItemAt:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
sut.collectionView(sut.collectionView, didSelectItemAt: indexPath)
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Controllers/GenericCollectionViewController.swift:61:26: note: calls to instance method 'collectionView(_:didSelectItemAt:)' from outside of its actor context are implicitly asynchronous
public override func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:30:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
func testDidSelect() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:33:32: warning: main actor-isolated property 'collectionView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
sut.collectionView(sut.collectionView, didSelectItemAt: indexPath)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewController.h:25:75: note: property declared here
@property (null_resettable, nonatomic, strong) __kindof UICollectionView *collectionView;
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:30:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
func testDidSelect() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:34:28: warning: call to main actor-isolated instance method 'selectItem(at:animated:scrollPosition:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
sut.collectionView.selectItem(at: indexPath, animated: true, scrollPosition: .bottom)
^
UIKit.UICollectionView.selectItem:2:22: note: calls to instance method 'selectItem(at:animated:scrollPosition:)' from outside of its actor context are implicitly asynchronous
@MainActor open func selectItem(at indexPath: IndexPath?, animated: Bool, scrollPosition: UICollectionView.ScrollPosition)}
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:30:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
func testDidSelect() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:34:13: warning: main actor-isolated property 'collectionView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
sut.collectionView.selectItem(at: indexPath, animated: true, scrollPosition: .bottom)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewController.h:25:75: note: property declared here
@property (null_resettable, nonatomic, strong) __kindof UICollectionView *collectionView;
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:30:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
func testDidSelect() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:35:91: warning: main actor-isolated property 'isSelected' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let isSelected = sut.collectionView(sut.collectionView, cellForItemAt: indexPath).isSelected
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewCell.h:98:47: note: property declared here
@property (nonatomic, getter=isSelected) BOOL selected;
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:30:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
func testDidSelect() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:35:30: warning: call to main actor-isolated instance method 'collectionView(_:cellForItemAt:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let isSelected = sut.collectionView(sut.collectionView, cellForItemAt: indexPath).isSelected
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Controllers/GenericCollectionViewController.swift:44:26: note: calls to instance method 'collectionView(_:cellForItemAt:)' from outside of its actor context are implicitly asynchronous
public override func collectionView(
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:30:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
func testDidSelect() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:35:49: warning: main actor-isolated property 'collectionView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let isSelected = sut.collectionView(sut.collectionView, cellForItemAt: indexPath).isSelected
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewController.h:25:75: note: property declared here
@property (null_resettable, nonatomic, strong) __kindof UICollectionView *collectionView;
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:30:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
func testDidSelect() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:56:86: warning: call to main actor-isolated initializer 'init(navigationTitle:collectionViewLayout:models:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let sut = GenericCollectionViewController<CatalogDisplayView<CatalogDemoView>>(
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Controllers/GenericCollectionViewController.swift:21:12: note: calls to initializer 'init(navigationTitle:collectionViewLayout:models:)' from outside of its actor context are implicitly asynchronous
public init(
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:41:10: note: add '@MainActor' to make instance method 'makeSUT(file:line:)' part of global actor 'MainActor'
func makeSUT(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:58:35: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
collectionViewLayout: UICollectionViewFlowLayout(),
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h:91:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init NS_DESIGNATED_INITIALIZER;
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:41:10: note: add '@MainActor' to make instance method 'makeSUT(file:line:)' part of global actor 'MainActor'
func makeSUT(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:12:66: warning: sending value of non-Sendable type 'NSCoder' risks causing data races; this is an error in the Swift 6 language mode
let sut = GenericCollectionViewController<CatalogDemoView>(coder: try makeCoder(for: makeSUT()))
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift:12:66: note: sending task-isolated value of non-Sendable type 'NSCoder' to main actor-isolated callee risks causing races in between task-isolated and main actor-isolated uses
let sut = GenericCollectionViewController<CatalogDemoView>(coder: try makeCoder(for: makeSUT()))
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Controllers/GenericTableViewControllerTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:12:61: 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 = GenericTableViewController<CatalogDemoView>(coder: try makeCoder(for: makeSUT()))
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Controllers/GenericTableViewController.swift:27: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 Controllers/GenericTableViewControllerTest.swift:11: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 Controllers/GenericTableViewControllerTest.swift:18:28: warning: call to main actor-isolated instance method 'tableView(_:numberOfRowsInSection:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
XCTAssertEqual(sut.tableView(sut.tableView, numberOfRowsInSection: 0), 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Controllers/GenericTableViewController.swift:30:26: note: calls to instance method 'tableView(_:numberOfRowsInSection:)' from outside of its actor context are implicitly asynchronous
public override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:18:42: warning: main actor-isolated property 'tableView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(sut.tableView(sut.tableView, numberOfRowsInSection: 0), 2)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h:27:61: note: property declared here
@property (nonatomic, strong, null_resettable) UITableView *tableView;
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:23:24: warning: call to main actor-isolated instance method 'tableView(_:cellForRowAt:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let cell = sut.tableView(sut.tableView, cellForRowAt: [0, 0])
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Controllers/GenericTableViewController.swift:35:26: note: calls to instance method 'tableView(_:cellForRowAt:)' from outside of its actor context are implicitly asynchronous
public override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:21:10: note: add '@MainActor' to make instance method 'testCellForRowAt()' part of global actor 'MainActor'
func testCellForRowAt() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:23:38: warning: main actor-isolated property 'tableView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let cell = sut.tableView(sut.tableView, cellForRowAt: [0, 0])
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h:27:61: note: property declared here
@property (nonatomic, strong, null_resettable) UITableView *tableView;
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:21:10: note: add '@MainActor' to make instance method 'testCellForRowAt()' part of global actor 'MainActor'
func testCellForRowAt() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:30:13: warning: call to main actor-isolated instance method 'tableView(_:didSelectRowAt:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
sut.tableView(sut.tableView, didSelectRowAt: indexPath)
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Controllers/GenericTableViewController.swift:49:26: note: calls to instance method 'tableView(_:didSelectRowAt:)' from outside of its actor context are implicitly asynchronous
public override func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:27:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
func testDidSelect() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:30:27: warning: main actor-isolated property 'tableView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
sut.tableView(sut.tableView, didSelectRowAt: indexPath)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h:27:61: note: property declared here
@property (nonatomic, strong, null_resettable) UITableView *tableView;
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:27:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
func testDidSelect() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:31:23: warning: call to main actor-isolated instance method 'selectRow(at:animated:scrollPosition:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
sut.tableView.selectRow(at: indexPath, animated: false, scrollPosition: .none)
^
UIKit.UITableView.selectRow:2:22: note: calls to instance method 'selectRow(at:animated:scrollPosition:)' from outside of its actor context are implicitly asynchronous
@MainActor open func selectRow(at indexPath: IndexPath?, animated: Bool, scrollPosition: UITableView.ScrollPosition)}
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:27:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
func testDidSelect() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:31:13: warning: main actor-isolated property 'tableView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
sut.tableView.selectRow(at: indexPath, animated: false, scrollPosition: .none)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h:27:61: note: property declared here
@property (nonatomic, strong, null_resettable) UITableView *tableView;
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:27:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
func testDidSelect() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:32:67: warning: main actor-isolated property 'isSelected' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let isSelected = sut.tableView.cellForRow(at: indexPath)?.isSelected
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h:144:55: note: property declared here
@property (nonatomic, getter=isSelected) BOOL selected; // set selected state (title, image, background). default is NO. animated is NO
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:27:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
func testDidSelect() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:32:40: warning: call to main actor-isolated instance method 'cellForRow(at:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let isSelected = sut.tableView.cellForRow(at: indexPath)?.isSelected
^
UIKit.UITableView.cellForRow:2:22: note: calls to instance method 'cellForRow(at:)' from outside of its actor context are implicitly asynchronous
@MainActor open func cellForRow(at indexPath: IndexPath) -> UITableViewCell?}
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:27:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
func testDidSelect() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:32:30: warning: main actor-isolated property 'tableView' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let isSelected = sut.tableView.cellForRow(at: indexPath)?.isSelected
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewController.h:27:61: note: property declared here
@property (nonatomic, strong, null_resettable) UITableView *tableView;
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:27:10: note: add '@MainActor' to make instance method 'testDidSelect()' part of global actor 'MainActor'
func testDidSelect() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:53:81: warning: call to main actor-isolated initializer 'init(navigationTitle:models:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let sut = GenericTableViewController<CatalogDisplayView<CatalogDemoView>>(
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Controllers/GenericTableViewController.swift:19:12: note: calls to initializer 'init(navigationTitle:models:)' from outside of its actor context are implicitly asynchronous
public init(navigationTitle: String? = nil, models: [View.Model]) {
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:38:10: note: add '@MainActor' to make instance method 'makeSUT(file:line:)' part of global actor 'MainActor'
func makeSUT(
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:12:61: warning: sending value of non-Sendable type 'NSCoder' risks causing data races; this is an error in the Swift 6 language mode
let sut = GenericTableViewController<CatalogDemoView>(coder: try makeCoder(for: makeSUT()))
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Controllers/GenericTableViewControllerTest.swift:12:61: note: sending task-isolated value of non-Sendable type 'NSCoder' to main actor-isolated callee risks causing races in between task-isolated and main actor-isolated uses
let sut = GenericTableViewController<CatalogDemoView>(coder: try makeCoder(for: makeSUT()))
^
SwiftCompile normal arm64 Compiling\ CatalogFactoryTest.swift,\ ClassificationDataSourceTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/CatalogFactoryTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/CatalogFactoryTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/CatalogFactoryTest.swift:19:41: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
controller: UIViewController()
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/CatalogFactoryTest.swift:11:10: note: add '@MainActor' to make instance method 'testCreateCatalogViewer()' part of global actor 'MainActor'
func testCreateCatalogViewer() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/CatalogFactoryTest.swift:35:41: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
controller: UIViewController()
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/CatalogFactoryTest.swift:11:10: note: add '@MainActor' to make instance method 'testCreateCatalogViewer()' part of global actor 'MainActor'
func testCreateCatalogViewer() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/CatalogFactoryTest.swift:67:34: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
display: .collection(UICollectionViewFlowLayout()),
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UICollectionViewLayout.h:91:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init NS_DESIGNATED_INITIALIZER;
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/CatalogFactoryTest.swift:45:10: note: add '@MainActor' to make instance method 'testCreateGenericDisplayViewController()' part of global actor 'MainActor'
func testCreateGenericDisplayViewController() {
^
@MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift:11:9: warning: main actor-isolated default value in a nonisolated context; this is an error in the Swift 6 language mode
var controller = UIViewController()
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift:14:25: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let tableview = UITableView()
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift:13:10: note: add '@MainActor' to make instance method 'testClassificationDataSource()' part of global actor 'MainActor'
func testClassificationDataSource() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift:15:40: warning: call to main actor-isolated initializer 'init(navigationTitle:classification:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let classificationDataSource = ClassificationDataSource(
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationDataSource.swift:30:12: note: calls to initializer 'init(navigationTitle:classification:)' from outside of its actor context are implicitly asynchronous
public init(navigationTitle: String?, classification: [Classification]) {
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift:13:10: note: add '@MainActor' to make instance method 'testClassificationDataSource()' part of global actor 'MainActor'
func testClassificationDataSource() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift:29:38: warning: call to main actor-isolated instance method 'tableView(_:numberOfRowsInSection:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
classificationDataSource.tableView(
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationDataSource.swift:41:17: note: calls to instance method 'tableView(_:numberOfRowsInSection:)' from outside of its actor context are implicitly asynchronous
public func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift:30:17: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
UITableView(),
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift:31:65: warning: main actor-isolated property 'categories' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
numberOfRowsInSection: classificationDataSource.categories.count
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationDataSource.swift:24:16: note: property declared here
public let categories: [Classification]
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift:35:19: warning: call to main actor-isolated instance method 'register(_:forCellReuseIdentifier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
tableview.register(
^
UIKit.UITableView.register:3:24: note: calls to instance method 'register(_:forCellReuseIdentifier:)' from outside of its actor context are implicitly asynchronous
@MainActor open func register(_ cellClass: AnyClass?, forCellReuseIdentifier identifier: String)}
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift:13:10: note: add '@MainActor' to make instance method 'testClassificationDataSource()' part of global actor 'MainActor'
func testClassificationDataSource() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift:36:38: warning: main actor-isolated class property 'cell' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
ClassificationDataSource.cell,
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationDataSource.swift:15:23: note: class property declared here
public static var cell: Cell.Type { UITableViewCell.self }
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift:13:10: note: add '@MainActor' to make instance method 'testClassificationDataSource()' part of global actor 'MainActor'
func testClassificationDataSource() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift:37:62: warning: main actor-isolated class property 'cellIdentifier' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
forCellReuseIdentifier: ClassificationDataSource.cellIdentifier
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationDataSource.swift:18:23: note: class property declared here
public static var cellIdentifier: String { "ClassificationTableCell" }
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift:13:10: note: add '@MainActor' to make instance method 'testClassificationDataSource()' part of global actor 'MainActor'
func testClassificationDataSource() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift:39:50: warning: call to main actor-isolated instance method 'tableView(_:cellForRowAt:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let tableCell = classificationDataSource.tableView(tableview, cellForRowAt: [0, 0])
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationDataSource.swift:46:17: note: calls to instance method 'tableView(_:cellForRowAt:)' from outside of its actor context are implicitly asynchronous
public func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift:13:10: note: add '@MainActor' to make instance method 'testClassificationDataSource()' part of global actor 'MainActor'
func testClassificationDataSource() {
^
@MainActor
SwiftDriverJobDiscovery normal arm64 Compiling FontView.swift, IconView.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
SwiftDriverJobDiscovery normal arm64 Compiling Selectable.swift, GenericCollectionViewCell.swift, GenericTableViewCell.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
SwiftDriverJobDiscovery normal arm64 Compiling CatalogFactory.swift, ClassificationDataSource.swift, ClassificationViewController.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
SwiftCompile normal arm64 Compiling\ CatalogDisplayViewTest.swift,\ ColorViewTest.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 (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/CatalogDisplayViewTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:79:10: warning: main actor-isolated instance method 'setSelected' cannot be used to satisfy nonisolated requirement from protocol 'Selectable'; this is an error in the Swift 6 language mode
func setSelected(_ isSelected: Bool) {
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:79:10: note: add 'nonisolated' to 'setSelected' to make this instance method not isolated to the actor
func setSelected(_ isSelected: Bool) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:78:28: note: add '@preconcurrency' to the 'Selectable' conformance to defer isolation checking to run time
extension CatalogDemoView: 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)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:85:10: warning: main actor-isolated instance method 'setHighlighted' cannot be used to satisfy nonisolated requirement from protocol 'Highlightable'; this is an error in the Swift 6 language mode
func setHighlighted(_ isHighlighted: Bool) {
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:85:10: note: add 'nonisolated' to 'setHighlighted' to make this instance method not isolated to the actor
func setHighlighted(_ isHighlighted: Bool) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:84:28: note: add '@preconcurrency' to the 'Highlightable' conformance to defer isolation checking to run time
extension CatalogDemoView: 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)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:91:10: warning: main actor-isolated instance method 'populate(with:)' cannot be used to satisfy nonisolated requirement from protocol 'Populatable'; this is an error in the Swift 6 language mode
func populate(with model: Model) {
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:91:10: note: add 'nonisolated' to 'populate(with:)' to make this instance method not isolated to the actor
func populate(with model: Model) {
^
nonisolated
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:90:28: note: add '@preconcurrency' to the 'Populatable' conformance to defer isolation checking to run time
extension CatalogDemoView: 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)
^
/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 requirement from protocol 'Reusable'; 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 nonisolated 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 nonisolated 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 nonisolated 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 nonisolated 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 nonisolated 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 nonisolated 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 nonisolated 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 nonisolated 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 nonisolated 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 nonisolated 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 nonisolated 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 nonisolated 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 nonisolated 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 nonisolated 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 nonisolated 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 nonisolated 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 nonisolated 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 nonisolated 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 nonisolated 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 nonisolated 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>()
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)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 value of non-Sendable type 'NSCoder' risks causing data races; 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/Tests/YComponentBrowserTests/UI Components/Generic Views/CatalogDisplayViewTest.swift:54:53: note: sending task-isolated value of non-Sendable type 'NSCoder' to main actor-isolated callee risks causing races in between task-isolated and main actor-isolated uses
let sut = CatalogDisplayView<CatalogDemoView>(coder: try makeCoder(for: makeSUT()))
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/ColorViewTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/ColorViewTest.swift:12:19: 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 = ColorView(coder: try makeCoder(for: makeSUT()))
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/ColorView.swift:27: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/ColorViewTest.swift:11: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/ColorViewTest.swift:19:26: warning: main actor-isolated property 'backgroundColor' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertNil(sut.backgroundColor)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:303:66: note: property declared here
@property(nullable, nonatomic,copy) UIColor *backgroundColor UI_APPEARANCE_SELECTOR; // default is nil. Can be useful with the appearance proxy on custom UIView subclasses.
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/ColorViewTest.swift:20: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: UIColor.red)
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/ColorView.swift:59: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/ColorViewTest.swift:16: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/ColorViewTest.swift:21:28: warning: main actor-isolated property 'backgroundColor' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(sut.backgroundColor, .red)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:303:66: note: property declared here
@property(nullable, nonatomic,copy) UIColor *backgroundColor UI_APPEARANCE_SELECTOR; // default is nil. Can be useful with the appearance proxy on custom UIView subclasses.
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/ColorViewTest.swift:27: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: .red)
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/ColorView.swift:59: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/ColorViewTest.swift:24: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/ColorViewTest.swift:28:29: warning: main actor-isolated property 'backgroundColor' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertNotNil(sut.backgroundColor)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:303:66: note: property declared here
@property(nullable, nonatomic,copy) UIColor *backgroundColor UI_APPEARANCE_SELECTOR; // default is nil. Can be useful with the appearance proxy on custom UIView subclasses.
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/ColorViewTest.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/ColorView.swift:68: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/ColorViewTest.swift:24: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/ColorViewTest.swift:30:26: warning: main actor-isolated property 'backgroundColor' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertNil(sut.backgroundColor)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:303:66: note: property declared here
@property(nullable, nonatomic,copy) UIColor *backgroundColor UI_APPEARANCE_SELECTOR; // default is nil. Can be useful with the appearance proxy on custom UIView subclasses.
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/ColorViewTest.swift:36:19: warning: call to main actor-isolated initializer 'init(frame:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let sut = ColorView(frame: .zero)
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/ColorView.swift:21:21: note: calls to initializer 'init(frame:)' from outside of its actor context are implicitly asynchronous
public override init(frame: CGRect) {
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/ColorViewTest.swift:35:10: note: add '@MainActor' to make instance method 'makeSUT(file:line:)' part of global actor 'MainActor'
func makeSUT(file: StaticString = #filePath, line: UInt = #line) -> ColorView {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/ColorViewTest.swift:12:19: warning: sending value of non-Sendable type 'NSCoder' risks causing data races; this is an error in the Swift 6 language mode
let sut = ColorView(coder: try makeCoder(for: makeSUT()))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/ColorViewTest.swift:12:19: note: sending task-isolated value of non-Sendable type 'NSCoder' to main actor-isolated callee risks causing races in between task-isolated and main actor-isolated uses
let sut = ColorView(coder: try makeCoder(for: makeSUT()))
^
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/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name YComponentBrowserTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios14.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-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/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-iphoneos/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-iphoneos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling FontViewTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftDriver\ Compilation YComponentBrowser normal arm64 com.apple.xcode.tools.swift.compiler (in target 'YComponentBrowser' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name YComponentBrowser -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios14.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-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser-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-iphoneos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling ClassificationViewControllerTest.swift, XCTestCase+MemoryLeakTracking.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftDriverJobDiscovery normal arm64 Compiling IconViewTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowser.o normal (in target 'YComponentBrowser' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios14.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowser.o
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/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-iphoneos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/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-iphoneos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/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-iphoneos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/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-iphoneos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling XCTestCase+makeCoder.swift, CatalogCategoryTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftDriverJobDiscovery normal arm64 Compiling CategoriesTest.swift, CatalogDestinationTests.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
ExtractAppIntentsMetadata (in target 'YComponentBrowser' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name YComponentBrowser --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 14.0 --bundle-identifier spi-builder-workspace.YComponentBrowser --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowser.appintents --target-triple arm64-apple-ios14.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowser.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/YComponentBrowser.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/YComponentBrowser.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 15:04:33.493 appintentsmetadataprocessor[761:4252] Starting appintentsmetadataprocessor export
2025-04-27 15:04:33.538 appintentsmetadataprocessor[761:4252] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling GenericCollectionViewControllerTest.swift, GenericTableViewControllerTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowser.o (in target 'YComponentBrowser' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowser.o
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/empty-YComponentBrowserTests.plist (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace
builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/empty-YComponentBrowserTests.plist -producttype com.apple.product-type.bundle.unit-test -expandbuildsettings -format binary -platform iphoneos -requiredArchitecture arm64 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest/Info.plist
SwiftDriverJobDiscovery normal arm64 Compiling GenericCollectionViewCellTest.swift, GenericTableViewCellTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftDriverJobDiscovery normal arm64 Compiling CatalogDisplayViewTest.swift, ColorViewTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftDriverJobDiscovery normal arm64 Compiling CatalogFactoryTest.swift, ClassificationDataSourceTests.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftDriverJobDiscovery normal arm64 Compiling SubcategoryDestinationTests.swift, IdentifiableProtocolTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftDriver\ Compilation YComponentBrowserTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name YComponentBrowserTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios14.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-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/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-iphoneos/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-iphoneos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest/YComponentBrowserTests normal (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios14.0 -bundle -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.LinkFileList -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/../Frameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests_dependency_info.dat -fobjc-link-runtime -fprofile-instr-generate -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.swiftmodule -Wl,-no_warn_duplicate_libraries -framework XCTest -lXCTestSwiftSupport -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest/YComponentBrowserTests -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser.swiftmodule
CopySwiftLibs /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftStdLibTool --copy --verbose --scan-executable /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest/YComponentBrowserTests --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest/Frameworks --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest/PlugIns --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest/SystemExtensions --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest/Extensions --platform iphoneos --toolchain /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --destination /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest/Frameworks --strip-bitcode --scan-executable /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/libXCTestSwiftSupport.dylib --strip-bitcode-tool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip --emit-dependency-info /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/SwiftStdLibToolInputDependencies.dep --filter-for-swift-os --back-deploy-swift-concurrency
Ignoring --strip-bitcode because --sign was not passed
Copying /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift-5.5/iphoneos/libswift_Concurrency.dylib to /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest/Frameworks/libswift_Concurrency.dylib
ExtractAppIntentsMetadata (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name YComponentBrowserTests --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 14.0 --bundle-identifier spi-builder-workspace.YComponentBrowserTests --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest --target-triple arm64-apple-ios14.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest/YComponentBrowserTests --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/YComponentBrowserTests.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/YComponentBrowserTests.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.SwiftConstValuesFileList --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 15:04:33.883 appintentsmetadataprocessor[764:4293] Starting appintentsmetadataprocessor export
2025-04-27 15:04:33.885 appintentsmetadataprocessor[764:4293] warning: Metadata extraction skipped. No AppIntents.framework dependency found.
GenerateDSYMFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest.dSYM /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest/YComponentBrowserTests (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest/YComponentBrowserTests -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest.dSYM
AppIntentsSSUTraining (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsnltrainingprocessor --infoplist-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest/Info.plist --temp-dir-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/ssu --bundle-id spi-builder-workspace.YComponentBrowserTests --product-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest --extracted-metadata-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest/Metadata.appintents --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/YComponentBrowserTests.DependencyMetadataFileList --archive-ssu-assets
2025-04-27 15:04:33.926 appintentsnltrainingprocessor[766:4295] Parsing options for appintentsnltrainingprocessor
2025-04-27 15:04:33.927 appintentsnltrainingprocessor[766:4295] No AppShortcuts found - Skipping.
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace
/usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest
** BUILD SUCCEEDED **
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "YComponentBrowser",
"name" : "YComponentBrowser",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "14.0"
}
],
"products" : [
{
"name" : "YComponentBrowser",
"targets" : [
"YComponentBrowser"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "YComponentBrowserTests",
"module_type" : "SwiftTarget",
"name" : "YComponentBrowserTests",
"path" : "Tests/YComponentBrowserTests",
"sources" : [
"CatalogFactoryTest.swift",
"ClassificationScene/ClassificationDataSourceTests.swift",
"ClassificationScene/ClassificationViewControllerTest.swift",
"Extensions/XCTestCase+MemoryLeakTracking.swift",
"Extensions/XCTestCase+makeCoder.swift",
"Models/Categories/CatalogCategoryTest.swift",
"Models/Categories/CategoriesTest.swift",
"Models/Destinations/CatalogDestinationTests.swift",
"Models/Destinations/SubcategoryDestinationTests.swift",
"Protocols/IdentifiableProtocolTest.swift",
"UI Components/Generic Cells/GenericCollectionViewCellTest.swift",
"UI Components/Generic Cells/GenericTableViewCellTest.swift",
"UI Components/Generic Controllers/GenericCollectionViewControllerTest.swift",
"UI Components/Generic Controllers/GenericTableViewControllerTest.swift",
"UI Components/Generic Views/CatalogDisplayViewTest.swift",
"UI Components/Generic Views/ColorViewTest.swift",
"UI Components/Generic Views/FontViewTest.swift",
"UI Components/Generic Views/IconViewTest.swift"
],
"target_dependencies" : [
"YComponentBrowser"
],
"type" : "test"
},
{
"c99name" : "YComponentBrowser",
"module_type" : "SwiftTarget",
"name" : "YComponentBrowser",
"path" : "Sources/YComponentBrowser",
"product_memberships" : [
"YComponentBrowser"
],
"sources" : [
"CatalogFactory.swift",
"ClassificationScene/ClassificationDataSource.swift",
"ClassificationScene/ClassificationViewController.swift",
"Models/Categories/CatalogCategory.swift",
"Models/Categories/ColorCategory.swift",
"Models/Categories/ComponentCategory.swift",
"Models/Categories/CustomCategory.swift",
"Models/Categories/FontCategory.swift",
"Models/Categories/IconCategory.swift",
"Models/Destinations/CatalogDetailDestination.swift",
"Models/Destinations/SubcategoryDetailDestination.swift",
"Protocols/CatalogDataSource.swift",
"Protocols/Classification.swift",
"Protocols/Destination.swift",
"Protocols/Highlightable.swift",
"Protocols/Identifiable.swift",
"Protocols/Populatable.swift",
"Protocols/Reusable.swift",
"Protocols/Selectable.swift",
"UI Components/Generic Cells/GenericCollectionViewCell.swift",
"UI Components/Generic Cells/GenericTableViewCell.swift",
"UI Components/Generic Controllers/GenericCollectionViewController.swift",
"UI Components/Generic Controllers/GenericTableViewController.swift",
"UI Components/Generic Views/CatalogDisplayView.swift",
"UI Components/Generic Views/ColorView.swift",
"UI Components/Generic Views/ContentView.swift",
"UI Components/Generic Views/FontView.swift",
"UI Components/Generic Views/IconView.swift"
],
"type" : "library"
}
],
"tools_version" : "5.5"
}
✅ Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path: $PWD/.docs/codeandtheory/ycomponentbrowser/1.0.2
Repository: codeandtheory/YComponentBrowser
Swift version used: 6.1
Target: YComponentBrowser
Command line invocation:
/Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath /Users/admin/builder/spi-builder-workspace/.derivedData docbuild "OTHER_DOCC_FLAGS=--emit-digest --source-service github --source-service-base-url https://github.com/codeandtheory/YComponentBrowser/blob/1.0.2 --checkout-path /Users/admin/builder/spi-builder-workspace" -scheme YComponentBrowser -destination generic/platform=iOS
Build settings from command line:
OTHER_DOCC_FLAGS = --emit-digest --source-service github --source-service-base-url https://github.com/codeandtheory/YComponentBrowser/blob/1.0.2 --checkout-path /Users/admin/builder/spi-builder-workspace
Resolve Package Graph
Fetching from https://github.com/swiftlang/swift-docc-plugin (cached)
Fetching from https://github.com/swiftlang/swift-docc-symbolkit (cached)
Creating working copy of package ‘swift-docc-plugin’
Checking out 1.4.3 of package ‘swift-docc-plugin’
Creating working copy of package ‘swift-docc-symbolkit’
Checking out 1.0.0 of package ‘swift-docc-symbolkit’
Resolve Package Graph
Resolved source packages:
YComponentBrowser: /Users/admin/builder/spi-builder-workspace
SwiftDocCPlugin: https://github.com/swiftlang/swift-docc-plugin @ 1.4.3
SymbolKit: https://github.com/swiftlang/swift-docc-symbolkit @ 1.0.0
ComputePackagePrebuildTargetDependencyGraph
Prepare packages
CreateBuildRequest
SendProjectDescription
CreateBuildOperation
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (3 targets)
Target 'YComponentBrowserTests' in project 'YComponentBrowser'
➜ Explicit dependency on target 'YComponentBrowser' in project 'YComponentBrowser'
Target 'YComponentBrowser' in project 'YComponentBrowser'
➜ Explicit dependency on target 'YComponentBrowser' in project 'YComponentBrowser'
Target 'YComponentBrowser' in project 'YComponentBrowser' (no dependencies)
GatherProvisioningInputs
CreateBuildDescription
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -v -E -dM -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -x c -c /dev/null
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc --version
ReadFileContents /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/share/docc/features.json
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld -version_details
Build description signature: 1b9c3e324796f962693095e4e0842df0
Build description path: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCBuildData/1b9c3e324796f962693095e4e0842df0.xcbuilddata
ClangStatCache /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -o /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache
CreateBuildDirectory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/symbol-graph/swift/arm64-apple-ios (in target 'YComponentBrowser' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace
builtin-create-build-directory /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/symbol-graph/swift/arm64-apple-ios
SwiftDriver YComponentBrowser normal arm64 com.apple.xcode.tools.swift.compiler (in target 'YComponentBrowser' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name YComponentBrowser -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios14.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-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser-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-iphoneos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser.swiftmodule -emit-symbol-graph -emit-symbol-graph-dir /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/symbol-graph/swift/arm64-apple-ios -emit-extension-block-symbols -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64 Compiling\ CustomCategory.swift,\ FontCategory.swift,\ IconCategory.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 (in target 'YComponentBrowser' from project 'YComponentBrowser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/CustomCategory.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/FontCategory.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/IconCategory.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ CatalogCategory.swift,\ ColorCategory.swift,\ ComponentCategory.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 (in target 'YComponentBrowser' from project 'YComponentBrowser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/CatalogCategory.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/ColorCategory.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Categories/ComponentCategory.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ Identifiable.swift,\ Populatable.swift,\ Reusable.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 (in target 'YComponentBrowser' from project 'YComponentBrowser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Identifiable.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Populatable.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Reusable.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ CatalogDetailDestination.swift,\ SubcategoryDetailDestination.swift,\ CatalogDataSource.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 (in target 'YComponentBrowser' from project 'YComponentBrowser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Destinations/CatalogDetailDestination.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Models/Destinations/SubcategoryDetailDestination.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/CatalogDataSource.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ CatalogFactory.swift,\ ClassificationDataSource.swift,\ ClassificationViewController.swift /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 (in target 'YComponentBrowser' from project 'YComponentBrowser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/CatalogFactory.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationDataSource.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationViewController.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ ColorView.swift,\ ContentView.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 (in target 'YComponentBrowser' from project 'YComponentBrowser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/ColorView.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/ContentView.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ GenericCollectionViewController.swift,\ GenericTableViewController.swift,\ CatalogDisplayView.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 (in target 'YComponentBrowser' from project 'YComponentBrowser')
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/.swiftpm/xcode
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/.swiftpm/xcode
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/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ Selectable.swift,\ GenericCollectionViewCell.swift,\ GenericTableViewCell.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 (in target 'YComponentBrowser' from project 'YComponentBrowser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Selectable.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Cells/GenericCollectionViewCell.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Cells/GenericTableViewCell.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ Classification.swift,\ Destination.swift,\ Highlightable.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 (in target 'YComponentBrowser' from project 'YComponentBrowser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Classification.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Destination.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/Protocols/Highlightable.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftEmitModule normal arm64 Emitting\ module\ for\ YComponentBrowser (in target 'YComponentBrowser' from project 'YComponentBrowser')
EmitSwiftModule normal arm64 (in target 'YComponentBrowser' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ FontView.swift,\ IconView.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 (in target 'YComponentBrowser' from project 'YComponentBrowser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/FontView.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI\ Components/Generic\ Views/IconView.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling CatalogDetailDestination.swift, SubcategoryDetailDestination.swift, CatalogDataSource.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
SwiftDriverJobDiscovery normal arm64 Compiling CatalogCategory.swift, ColorCategory.swift, ComponentCategory.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
SwiftDriverJobDiscovery normal arm64 Compiling Identifiable.swift, Populatable.swift, Reusable.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
SwiftDriverJobDiscovery normal arm64 Compiling CustomCategory.swift, FontCategory.swift, IconCategory.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
SwiftDriverJobDiscovery normal arm64 Compiling Classification.swift, Destination.swift, Highlightable.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
SwiftDriverJobDiscovery normal arm64 Compiling ColorView.swift, ContentView.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
SwiftDriverJobDiscovery normal arm64 Compiling Selectable.swift, GenericCollectionViewCell.swift, GenericTableViewCell.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
SwiftDriverJobDiscovery normal arm64 Compiling CatalogFactory.swift, ClassificationDataSource.swift, ClassificationViewController.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
SwiftDriverJobDiscovery normal arm64 Emitting module for YComponentBrowser (in target 'YComponentBrowser' from project 'YComponentBrowser')
SwiftDriver\ Compilation\ Requirements YComponentBrowser normal arm64 com.apple.xcode.tools.swift.compiler (in target 'YComponentBrowser' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name YComponentBrowser -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios14.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-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser-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-iphoneos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser.swiftmodule -emit-symbol-graph -emit-symbol-graph-dir /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/symbol-graph/swift/arm64-apple-ios -emit-extension-block-symbols -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
CompileDocumentation (in target 'YComponentBrowser' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/docc convert --emit-lmdb-index --fallback-display-name YComponentBrowser --fallback-bundle-identifier spi-builder-workspace.YComponentBrowser --output-dir /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowser.doccarchive --ide-console-output --diagnostics-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/YComponentBrowser-diagnostics.json --emit-digest --source-service github --source-service-base-url https://github.com/codeandtheory/YComponentBrowser/blob/1.0.2 --checkout-path /Users/admin/builder/spi-builder-workspace --additional-symbol-graph-dir /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/symbol-graph
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowser.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser.swiftmodule (in target 'YComponentBrowser' 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-iphoneos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowser.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowser.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser.abi.json (in target 'YComponentBrowser' 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-iphoneos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowser.swiftmodule/arm64-apple-ios.abi.json
SwiftDriver YComponentBrowserTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name YComponentBrowserTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios14.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-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/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-iphoneos/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-iphoneos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64 Compiling\ CatalogFactoryTest.swift,\ ClassificationDataSourceTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/CatalogFactoryTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/CatalogFactoryTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationDataSourceTests.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ SubcategoryDestinationTests.swift,\ IdentifiableProtocolTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Destinations/SubcategoryDestinationTests.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Protocols/IdentifiableProtocolTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Models/Destinations/SubcategoryDestinationTests.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/Protocols/IdentifiableProtocolTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ GenericCollectionViewCellTest.swift,\ GenericTableViewCellTest.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 (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Cells/GenericCollectionViewCellTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Cells/GenericTableViewCellTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ CategoriesTest.swift,\ CatalogDestinationTests.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 (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
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/.swiftpm/xcode
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/.swiftpm/xcode
SwiftEmitModule normal arm64 Emitting\ module\ for\ YComponentBrowserTests (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
EmitSwiftModule normal arm64 (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ GenericCollectionViewControllerTest.swift,\ GenericTableViewControllerTest.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 (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Controllers/GenericCollectionViewControllerTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Controllers/GenericTableViewControllerTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ CatalogDisplayViewTest.swift,\ ColorViewTest.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 (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/CatalogDisplayViewTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/ColorViewTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ IconViewTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/IconViewTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/IconViewTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling GenericCollectionViewController.swift, GenericTableViewController.swift, CatalogDisplayView.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
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')
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/.swiftpm/xcode
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/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling FontView.swift, IconView.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
SwiftCompile normal arm64 Compiling\ FontViewTest.swift /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/FontViewTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI\ Components/Generic\ Views/FontViewTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
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/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name YComponentBrowserTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios14.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-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/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-iphoneos/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-iphoneos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling IconViewTest.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')
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/.swiftpm/xcode
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/.swiftpm/xcode
SwiftDriver\ Compilation YComponentBrowser normal arm64 com.apple.xcode.tools.swift.compiler (in target 'YComponentBrowser' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name YComponentBrowser -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios14.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-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser-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-iphoneos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser.swiftmodule -emit-symbol-graph -emit-symbol-graph-dir /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/symbol-graph/swift/arm64-apple-ios -emit-extension-block-symbols -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/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-iphoneos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.swiftmodule/arm64-apple-ios.abi.json
SwiftDriverJobDiscovery normal arm64 Compiling CategoriesTest.swift, CatalogDestinationTests.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftDriverJobDiscovery normal arm64 Compiling CatalogFactoryTest.swift, ClassificationDataSourceTests.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftDriverJobDiscovery normal arm64 Compiling GenericCollectionViewCellTest.swift, GenericTableViewCellTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftDriverJobDiscovery normal arm64 Compiling SubcategoryDestinationTests.swift, IdentifiableProtocolTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftDriverJobDiscovery normal arm64 Compiling CatalogDisplayViewTest.swift, ColorViewTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftDriverJobDiscovery normal arm64 Compiling ClassificationViewControllerTest.swift, XCTestCase+MemoryLeakTracking.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/empty-YComponentBrowserTests.plist (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace
builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/empty-YComponentBrowserTests.plist -producttype com.apple.product-type.bundle.unit-test -expandbuildsettings -format binary -platform iphoneos -requiredArchitecture arm64 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest/Info.plist
SwiftDriverJobDiscovery normal arm64 Compiling GenericCollectionViewControllerTest.swift, GenericTableViewControllerTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftDriverJobDiscovery normal arm64 Compiling FontViewTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftDriverJobDiscovery normal arm64 Compiling XCTestCase+makeCoder.swift, CatalogCategoryTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftDriver\ Compilation YComponentBrowserTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name YComponentBrowserTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -DXcode -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios14.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-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/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-iphoneos/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-iphoneos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest/YComponentBrowserTests normal (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios14.0 -bundle -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.LinkFileList -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/../Frameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests_dependency_info.dat -fobjc-link-runtime -fprofile-instr-generate -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.swiftmodule -Wl,-no_warn_duplicate_libraries -framework XCTest -lXCTestSwiftSupport -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest/YComponentBrowserTests -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowser.build/Objects-normal/arm64/YComponentBrowser.swiftmodule
ExtractAppIntentsMetadata (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name YComponentBrowserTests --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 14.0 --bundle-identifier spi-builder-workspace.YComponentBrowserTests --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest --target-triple arm64-apple-ios14.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest/YComponentBrowserTests --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/YComponentBrowserTests.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/YComponentBrowserTests.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/Objects-normal/arm64/YComponentBrowserTests.SwiftConstValuesFileList --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-27 15:05:00.805 appintentsmetadataprocessor[1000:5513] Starting appintentsmetadataprocessor export
2025-04-27 15:05:00.807 appintentsmetadataprocessor[1000:5513] warning: Metadata extraction skipped. No AppIntents.framework dependency found.
CopySwiftLibs /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftStdLibTool --copy --verbose --scan-executable /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest/YComponentBrowserTests --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest/Frameworks --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest/PlugIns --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest/SystemExtensions --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest/Extensions --platform iphoneos --toolchain /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --destination /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest/Frameworks --strip-bitcode --scan-executable /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/libXCTestSwiftSupport.dylib --strip-bitcode-tool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip --emit-dependency-info /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/YComponentBrowser.build/Debug-iphoneos/YComponentBrowserTests.build/SwiftStdLibToolInputDependencies.dep --filter-for-swift-os --back-deploy-swift-concurrency
Ignoring --strip-bitcode because --sign was not passed
libswift_Concurrency.dylib is up to date at /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest/Frameworks/libswift_Concurrency.dylib
GenerateDSYMFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest.dSYM /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest/YComponentBrowserTests (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest/YComponentBrowserTests -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowserTests.xctest.dSYM
** BUILD DOCUMENTATION SUCCEEDED **
/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/YComponentBrowser.doccarchive
455
4 /Users/admin/builder/spi-builder-workspace/.docs/codeandtheory/ycomponentbrowser/1.0.2
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/codeandtheory/ycomponentbrowser/1.0.2
File count: 455
Doc size: 4.0MB
Preparing doc bundle ...
Uploading prod-codeandtheory-ycomponentbrowser-1.0.2-54300828.zip to s3://spi-docs-inbox/prod-codeandtheory-ycomponentbrowser-1.0.2-54300828.zip
Copying... [16%]
Copying... [24%]
Copying... [32%]
Copying... [48%]
Copying... [56%]
Copying... [64%]
Copying... [72%]
Copying... [88%]
Copying... [95%]
Copying... [100%]
Done.