Build Information
Successful build of YComponentBrowser, reference main (c6328d
), with Swift 6.1 for iOS using Xcode 16.3 on 27 Apr 2025 22:04:14 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
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:11:10: note: add '@MainActor' to make instance method 'testInitWithCoder()' part of global actor 'MainActor'
func testInitWithCoder() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/ClassificationScene/ClassificationViewControllerTest.swift:17:26: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let 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/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:19:43: 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 classificationDataSourceOne = ClassificationDataSource(navigationTitle: "title", classification:
^
/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/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:29:43: 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 classificationDataSourceTwo = ClassificationDataSource(navigationTitle: "title", classification:
^
/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/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:40:29: warning: call to main actor-isolated initializer 'init(datasource:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let controllerOne = ClassificationViewController(datasource: classificationDataSourceOne)
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationViewController.swift:15:12: note: calls to initializer 'init(datasource:)' from outside of its actor context are implicitly asynchronous
public init(datasource: DataSource) {
^
/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:41:30: warning: call to main actor-isolated initializer 'init(datasource:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let controllerTwo = ClassificationViewController(datasource: classificationDataSourceTwo)
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/ClassificationScene/ClassificationViewController.swift:15:12: note: calls to initializer 'init(datasource:)' from outside of its actor context are implicitly asynchronous
public init(datasource: DataSource) {
^
/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:44: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
controllerOne.tableView(controllerOne.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:44: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
controllerOne.tableView(controllerOne.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:45: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
controllerOne.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:45: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
controllerOne.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:46: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 = ((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/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:46: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 = ((controllerOne.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: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,
^~~~~~~~
SwiftDriverJobDiscovery normal arm64 Compiling ColorView.swift, ContentView.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
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 Selectable.swift, GenericCollectionViewCell.swift, GenericTableViewCell.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
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
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:15:42: 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.displayedView.isPopulated)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:68:9: note: property declared here
var isPopulated = false
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:15:28: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertFalse(sut.displayedView.isPopulated)
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericCollectionViewCell.swift:15:16: note: property declared here
public let displayedView: View = View(frame: .zero)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:16: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 Cells/GenericCollectionViewCell.swift:52: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 Cells/GenericCollectionViewCellTest.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 Cells/GenericCollectionViewCellTest.swift:17:41: 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.displayedView.isPopulated)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:68:9: note: property declared here
var isPopulated = false
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:17:27: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertTrue(sut.displayedView.isPopulated)
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericCollectionViewCell.swift:15:16: note: property declared here
public let displayedView: View = View(frame: .zero)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:23:42: 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.displayedView.isPrepared)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:67:9: note: property declared here
var isPrepared = false
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:23:28: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertFalse(sut.displayedView.isPrepared)
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericCollectionViewCell.swift:15:16: note: property declared here
public let displayedView: View = View(frame: .zero)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:24: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 Cells/GenericCollectionViewCell.swift:45:26: note: calls to instance method 'prepareForReuse()' from outside of its actor context are implicitly asynchronous
public override func prepareForReuse() {
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:20: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 Cells/GenericCollectionViewCellTest.swift:25:41: 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.displayedView.isPrepared)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:67:9: note: property declared here
var isPrepared = false
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:25:27: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertTrue(sut.displayedView.isPrepared)
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericCollectionViewCell.swift:15:16: note: property declared here
public let displayedView: View = View(frame: .zero)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:29: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 = GenericCollectionViewCell<DemoView>(coder: try makeCoder(for: makeSUT()))
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericCollectionViewCell.swift:42: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 Cells/GenericCollectionViewCellTest.swift:28: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 Cells/GenericCollectionViewCellTest.swift:36: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
XCTAssertNil(sut.displayedView.isHighlighted)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:69:9: note: property declared here
var isHighlighted: Bool?
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:36:26: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertNil(sut.displayedView.isHighlighted)
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericCollectionViewCell.swift:15:16: note: property declared here
public let displayedView: View = View(frame: .zero)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:37:13: warning: main actor-isolated property 'isHighlighted' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
sut.isHighlighted = true
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericCollectionViewCell.swift:27:25: note: mutation of this property is only permitted within the actor
public override var isHighlighted: Bool {
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.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 Cells/GenericCollectionViewCellTest.swift:38:42: 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.displayedView.isHighlighted, true)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:69:9: note: property declared here
var isHighlighted: Bool?
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:38:28: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(sut.displayedView.isHighlighted, true)
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericCollectionViewCell.swift:15:16: note: property declared here
public let displayedView: View = View(frame: .zero)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:39:13: warning: main actor-isolated property 'isHighlighted' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
sut.isHighlighted = false
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericCollectionViewCell.swift:27:25: note: mutation of this property is only permitted within the actor
public override var isHighlighted: Bool {
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.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 Cells/GenericCollectionViewCellTest.swift:40:42: 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.displayedView.isHighlighted, false)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:69:9: note: property declared here
var isHighlighted: Bool?
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:40:28: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(sut.displayedView.isHighlighted, false)
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericCollectionViewCell.swift:15:16: note: property declared here
public let displayedView: View = View(frame: .zero)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:46: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
XCTAssertNil(sut.displayedView.isSelected)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:70:9: note: property declared here
var isSelected: Bool?
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:46:26: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertNil(sut.displayedView.isSelected)
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericCollectionViewCell.swift:15:16: note: property declared here
public let displayedView: View = View(frame: .zero)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:47:13: warning: main actor-isolated property 'isSelected' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
sut.isSelected = true
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericCollectionViewCell.swift:18:25: note: mutation of this property is only permitted within the actor
public override var isSelected: Bool {
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.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 Cells/GenericCollectionViewCellTest.swift:48:42: 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.displayedView.isSelected, true)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:70:9: note: property declared here
var isSelected: Bool?
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:48:28: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(sut.displayedView.isSelected, true)
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericCollectionViewCell.swift:15:16: note: property declared here
public let displayedView: View = View(frame: .zero)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:49:13: warning: main actor-isolated property 'isSelected' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
sut.isSelected = false
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericCollectionViewCell.swift:18:25: note: mutation of this property is only permitted within the actor
public override var isSelected: Bool {
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.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 Cells/GenericCollectionViewCellTest.swift:50:42: 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.displayedView.isSelected, false)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:70:9: note: property declared here
var isSelected: Bool?
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:50:28: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(sut.displayedView.isSelected, false)
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericCollectionViewCell.swift:15:16: note: property declared here
public let displayedView: View = View(frame: .zero)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:56: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 = GenericCollectionViewCell<DemoView>()
^
/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 Cells/GenericCollectionViewCellTest.swift:55:10: note: add '@MainActor' to make instance method 'makeSUT(file:line:)' part of global actor 'MainActor'
func makeSUT(file: StaticString = #filePath, line: UInt = #line) -> GenericCollectionViewCell<DemoView> {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:29: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 = GenericCollectionViewCell<DemoView>(coder: try makeCoder(for: makeSUT()))
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericCollectionViewCellTest.swift:29: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 = GenericCollectionViewCell<DemoView>(coder: try makeCoder(for: makeSUT()))
^
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
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:74: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 Cells/GenericTableViewCellTest.swift:74: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 Cells/GenericTableViewCellTest.swift:73:21: note: add '@preconcurrency' to the 'Reusable' conformance to defer isolation checking to run time
extension DemoView: 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 Cells/GenericTableViewCellTest.swift:80: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 Cells/GenericTableViewCellTest.swift:80: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 Cells/GenericTableViewCellTest.swift:79:21: note: add '@preconcurrency' to the 'Populatable' conformance to defer isolation checking to run time
extension DemoView: 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 Cells/GenericTableViewCellTest.swift:86: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 Cells/GenericTableViewCellTest.swift:86: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 Cells/GenericTableViewCellTest.swift:85:21: note: add '@preconcurrency' to the 'Highlightable' conformance to defer isolation checking to run time
extension DemoView: 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 Cells/GenericTableViewCellTest.swift:92: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 Cells/GenericTableViewCellTest.swift:92: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 Cells/GenericTableViewCellTest.swift:91:21: note: add '@preconcurrency' to the 'Selectable' conformance to defer isolation checking to run time
extension DemoView: 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 Cells/GenericTableViewCellTest.swift:15:42: 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.displayedView.isPopulated)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:68:9: note: property declared here
var isPopulated = false
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:15:28: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertFalse(sut.displayedView.isPopulated)
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericTableViewCell.swift:15:16: note: property declared here
public let displayedView: View = View(frame: .zero)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:16: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 Cells/GenericTableViewCell.swift:50: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 Cells/GenericTableViewCellTest.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 Cells/GenericTableViewCellTest.swift:17:41: 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.displayedView.isPopulated)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:68:9: note: property declared here
var isPopulated = false
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:17:27: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertTrue(sut.displayedView.isPopulated)
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericTableViewCell.swift:15:16: note: property declared here
public let displayedView: View = View(frame: .zero)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:23:42: 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.displayedView.isPrepared)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:67:9: note: property declared here
var isPrepared = false
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:23:28: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertFalse(sut.displayedView.isPrepared)
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericTableViewCell.swift:15:16: note: property declared here
public let displayedView: View = View(frame: .zero)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:24: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 Cells/GenericTableViewCell.swift:43:26: note: calls to instance method 'prepareForReuse()' from outside of its actor context are implicitly asynchronous
public override func prepareForReuse() {
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:20: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 Cells/GenericTableViewCellTest.swift:25:41: 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.displayedView.isPrepared)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:67:9: note: property declared here
var isPrepared = false
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:25:27: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertTrue(sut.displayedView.isPrepared)
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericTableViewCell.swift:15:16: note: property declared here
public let displayedView: View = View(frame: .zero)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:29:48: 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 = GenericTableViewCell<DemoView>(coder: try makeCoder(for: makeSUT()))
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericTableViewCell.swift:24: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 Cells/GenericTableViewCellTest.swift:28: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 Cells/GenericTableViewCellTest.swift:36: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
XCTAssertNil(sut.displayedView.isHighlighted)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:69:9: note: property declared here
var isHighlighted: Bool?
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:36:26: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertNil(sut.displayedView.isHighlighted)
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericTableViewCell.swift:15:16: note: property declared here
public let displayedView: View = View(frame: .zero)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:37:13: warning: main actor-isolated property 'isHighlighted' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
sut.isHighlighted = true
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h:145:55: note: mutation of this property is only permitted within the actor
@property (nonatomic, getter=isHighlighted) BOOL highlighted; // set highlighted state (title, image, background). default is NO. animated is NO
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.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 Cells/GenericTableViewCellTest.swift:38:42: 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.displayedView.isHighlighted, true)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:69:9: note: property declared here
var isHighlighted: Bool?
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:38:28: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(sut.displayedView.isHighlighted, true)
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericTableViewCell.swift:15:16: note: property declared here
public let displayedView: View = View(frame: .zero)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:39:13: warning: main actor-isolated property 'isHighlighted' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
sut.isHighlighted = false
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITableViewCell.h:145:55: note: mutation of this property is only permitted within the actor
@property (nonatomic, getter=isHighlighted) BOOL highlighted; // set highlighted state (title, image, background). default is NO. animated is NO
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.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 Cells/GenericTableViewCellTest.swift:40:42: 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.displayedView.isHighlighted, false)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:69:9: note: property declared here
var isHighlighted: Bool?
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:40:28: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(sut.displayedView.isHighlighted, false)
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericTableViewCell.swift:15:16: note: property declared here
public let displayedView: View = View(frame: .zero)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:46: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
XCTAssertNil(sut.displayedView.isSelected)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:70:9: note: property declared here
var isSelected: Bool?
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:46:26: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertNil(sut.displayedView.isSelected)
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericTableViewCell.swift:15:16: note: property declared here
public let displayedView: View = View(frame: .zero)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:47:13: warning: main actor-isolated property 'isSelected' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
sut.isSelected = false
^
/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: mutation of this property is only permitted within the actor
@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 Cells/GenericTableViewCellTest.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 Cells/GenericTableViewCellTest.swift:48:42: 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.displayedView.isSelected, false)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:70:9: note: property declared here
var isSelected: Bool?
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:48:28: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(sut.displayedView.isSelected, false)
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericTableViewCell.swift:15:16: note: property declared here
public let displayedView: View = View(frame: .zero)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:49:13: warning: main actor-isolated property 'isSelected' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
sut.isSelected = true
^
/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: mutation of this property is only permitted within the actor
@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 Cells/GenericTableViewCellTest.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 Cells/GenericTableViewCellTest.swift:50:42: 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.displayedView.isSelected, true)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:70:9: note: property declared here
var isSelected: Bool?
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:50:28: warning: main actor-isolated property 'displayedView' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(sut.displayedView.isSelected, true)
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Cells/GenericTableViewCell.swift:15:16: note: property declared here
public let displayedView: View = View(frame: .zero)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:56:48: 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 = GenericTableViewCell<DemoView>()
^
/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 Cells/GenericTableViewCellTest.swift:55:10: note: add '@MainActor' to make instance method 'makeSUT(file:line:)' part of global actor 'MainActor'
func makeSUT(file: StaticString = #filePath, line: UInt = #line) -> GenericTableViewCell<DemoView> {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:29:48: warning: sending value of non-Sendable type 'NSCoder' risks causing data races; this is an error in the Swift 6 language mode
let sut = GenericTableViewCell<DemoView>(coder: try makeCoder(for: makeSUT()))
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Cells/GenericTableViewCellTest.swift:29:48: 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 = GenericTableViewCell<DemoView>(coder: try makeCoder(for: makeSUT()))
^
SwiftDriverJobDiscovery normal arm64 Compiling GenericCollectionViewController.swift, GenericTableViewController.swift, CatalogDisplayView.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
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/FontViewTest.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 = FontView(coder: try makeCoder(for: makeSUT()))
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/FontView.swift:39: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/FontViewTest.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/FontViewTest.swift:19:31: warning: main actor-isolated property 'font' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertNotEqual(sut.font, .boldSystemFont(ofSize: 20))
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:36:59: note: property declared here
@property(null_resettable, nonatomic,strong) UIFont *font UI_APPEARANCE_SELECTOR; // default is nil (system font 17 plain)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/FontViewTest.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: FontView.Model(font: .boldSystemFont(ofSize: 20)))
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/FontView.swift:52: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/FontViewTest.swift:16:10: note: add '@MainActor' to make instance method 'testPopulate()' part of global actor 'MainActor'
func testPopulate() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/FontViewTest.swift:21:28: warning: main actor-isolated property 'font' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(sut.font, .boldSystemFont(ofSize: 20))
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:36:59: note: property declared here
@property(null_resettable, nonatomic,strong) UIFont *font UI_APPEARANCE_SELECTOR; // default is nil (system font 17 plain)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/FontViewTest.swift:27: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/FontView.swift:62: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/FontViewTest.swift:24:10: note: add '@MainActor' to make instance method 'testReuable()' part of global actor 'MainActor'
func testReuable() throws {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/FontViewTest.swift:28:28: warning: main actor-isolated property 'font' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(sut.font, UIFont.systemFont(ofSize: 17))
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:36:59: note: property declared here
@property(null_resettable, nonatomic,strong) UIFont *font UI_APPEARANCE_SELECTOR; // default is nil (system font 17 plain)
^
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/FontViewTest.swift:34: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 = FontView(frame: .zero)
^
/Users/admin/builder/spi-builder-workspace/Sources/YComponentBrowser/UI Components/Generic Views/FontView.swift:33: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/FontViewTest.swift:33:10: note: add '@MainActor' to make instance method 'makeSUT(file:line:)' part of global actor 'MainActor'
func makeSUT(file: StaticString = #filePath, line: UInt = #line) -> FontView {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/FontViewTest.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 = FontView(coder: try makeCoder(for: makeSUT()))
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/YComponentBrowserTests/UI Components/Generic Views/FontViewTest.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 = FontView(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 IconViewTest.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 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')
SwiftDriverJobDiscovery normal arm64 Compiling SubcategoryDestinationTests.swift, IdentifiableProtocolTest.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.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.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.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 GenericCollectionViewControllerTest.swift, GenericTableViewControllerTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftDriverJobDiscovery normal arm64 Compiling ClassificationViewControllerTest.swift, XCTestCase+MemoryLeakTracking.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
SwiftDriverJobDiscovery normal arm64 Compiling FontViewTest.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:13.015 appintentsmetadataprocessor[729:4230] Starting appintentsmetadataprocessor export
2025-04-27 15:04:13.056 appintentsmetadataprocessor[729:4230] Extracted no relevant App Intents symbols, skipping writing output
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')
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
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
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
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
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:13.245 appintentsmetadataprocessor[732:4262] Starting appintentsmetadataprocessor export
2025-04-27 15:04:13.247 appintentsmetadataprocessor[732:4262] 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:13.275 appintentsnltrainingprocessor[734:4265] Parsing options for appintentsnltrainingprocessor
2025-04-27 15:04:13.276 appintentsnltrainingprocessor[734:4265] 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/main
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/main --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/main --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: d1fc316ca531dddec73b74dd52414ddf
Build description path: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCBuildData/d1fc316ca531dddec73b74dd52414ddf.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\ 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\ 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\ 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\ 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
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\ 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
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\ 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
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\ 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
SwiftDriverJobDiscovery normal arm64 Compiling CustomCategory.swift, FontCategory.swift, IconCategory.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 Classification.swift, Destination.swift, Highlightable.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
SwiftDriverJobDiscovery normal arm64 Compiling CatalogDetailDestination.swift, SubcategoryDetailDestination.swift, CatalogDataSource.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 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 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/main --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
SwiftDriverJobDiscovery normal arm64 Compiling CatalogFactory.swift, ClassificationDataSource.swift, ClassificationViewController.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
SwiftDriverJobDiscovery normal arm64 Compiling Identifiable.swift, Populatable.swift, Reusable.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
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
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
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\ 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
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
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\ 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\ 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\ 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 GenericCollectionViewController.swift, GenericTableViewController.swift, CatalogDisplayView.swift (in target 'YComponentBrowser' from project 'YComponentBrowser')
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\ 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
SwiftDriverJobDiscovery normal arm64 Compiling XCTestCase+makeCoder.swift, CatalogCategoryTest.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 -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
SwiftDriverJobDiscovery normal arm64 Compiling FontViewTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
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
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
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 IconViewTest.swift (in target 'YComponentBrowserTests' from project 'YComponentBrowser')
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 ClassificationViewControllerTest.swift, XCTestCase+MemoryLeakTracking.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 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 GenericCollectionViewControllerTest.swift, GenericTableViewControllerTest.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:04:38.603 appintentsmetadataprocessor[968:5473] Starting appintentsmetadataprocessor export
2025-04-27 15:04:38.605 appintentsmetadataprocessor[968:5473] 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/main
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/codeandtheory/ycomponentbrowser/main
File count: 455
Doc size: 4.0MB
Preparing doc bundle ...
Uploading prod-codeandtheory-ycomponentbrowser-main-35104ba1.zip to s3://spi-docs-inbox/prod-codeandtheory-ycomponentbrowser-main-35104ba1.zip
Copying... [16%]
Copying... [24%]
Copying... [32%]
Copying... [48%]
Copying... [56%]
Copying... [64%]
Copying... [72%]
Copying... [88%]
Copying... [96%]
Copying... [100%]
Done.