Build Information
Successful build of DHDeclarable, reference 0.0.9 (a490dc
), with Swift 6.1 for iOS using Xcode 16.3 on 27 Apr 2025 02:28:02 UTC.
Swift 6 data race errors: 5
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme DHDeclarable -destination generic/platform=iOS
Build Log
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:19:34: warning: main actor-isolated property 'spacing' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(stack.spacing, 0)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:193:30: note: property declared here
@property(nonatomic) CGFloat spacing;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:20:34: warning: main actor-isolated property 'alignment' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(stack.alignment, .fill)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:176:43: note: property declared here
@property(nonatomic) UIStackViewAlignment alignment;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:21:34: warning: main actor-isolated property 'tag' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(stack.tag, 0)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:153:64: note: property declared here
@property(nonatomic) NSInteger tag; // default is 0
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:25: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 stack = DHDStack { [
^
/Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDStack/DHDStack.swift:21:28: note: calls to initializer 'init(_:)' from outside of its actor context are implicitly asynchronous
public convenience init(_ byAddingArrangedSubviews: @escaping () -> [UIView?]) {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:24:14: note: add '@MainActor' to make instance method 'testDHDStackConvenienceInit()' part of global actor 'MainActor'
func testDHDStackConvenienceInit() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:26:17: warning: call to main actor-isolated initializer 'init(_:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
DHDLabel("1"),
^
/Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDLabel/DHDLabel.swift:58:28: note: calls to initializer 'init(_:)' from outside of its actor context are implicitly asynchronous
public convenience init(_ text: String?) {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:27:17: warning: call to main actor-isolated initializer 'init(_:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
DHDLabel("2"),
^
/Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDLabel/DHDLabel.swift:58:28: note: calls to initializer 'init(_:)' from outside of its actor context are implicitly asynchronous
public convenience init(_ text: String?) {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:29:17: warning: call to main actor-isolated initializer 'init(_:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
DHDLabel("3"),
^
/Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDLabel/DHDLabel.swift:58:28: note: calls to initializer 'init(_:)' from outside of its actor context are implicitly asynchronous
public convenience init(_ text: String?) {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:31:34: warning: main actor-isolated property 'arrangedSubviews' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(stack.arrangedSubviews.count, 3)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:139:64: note: property declared here
@property(nonatomic,readonly,copy) NSArray<__kindof UIView *> *arrangedSubviews;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:32:34: warning: main actor-isolated property 'axis' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(stack.axis, .horizontal)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:167:45: note: property declared here
@property(nonatomic) UILayoutConstraintAxis axis;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:33:34: warning: main actor-isolated property 'distribution' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(stack.distribution, .fill)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:171:46: note: property declared here
@property(nonatomic) UIStackViewDistribution distribution;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:34:34: warning: main actor-isolated property 'spacing' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(stack.spacing, 0)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:193:30: note: property declared here
@property(nonatomic) CGFloat spacing;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:35:34: warning: main actor-isolated property 'alignment' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(stack.alignment, .fill)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:176:43: note: property declared here
@property(nonatomic) UIStackViewAlignment alignment;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:36:34: warning: main actor-isolated property 'tag' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(stack.tag, 0)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:153:64: note: property declared here
@property(nonatomic) NSInteger tag; // default is 0
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:40: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 stack = DHDStack()
^
/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/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:39:14: note: add '@MainActor' to make instance method 'testDHDStackSetup()' part of global actor 'MainActor'
func testDHDStackSetup() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:41:19: warning: call to main actor-isolated instance method 'setup(distribution:spacing:alignment:tag:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
stack.setup(distribution: .equalCentering, spacing: 2, alignment: .leading, tag: 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDStack/DHDStack.swift:27:21: note: calls to instance method 'setup(distribution:spacing:alignment:tag:)' from outside of its actor context are implicitly asynchronous
public func setup(distribution: Distribution = .fill, spacing: CGFloat = 0, alignment: Alignment? = nil, tag: Int? = nil) {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:39:14: note: add '@MainActor' to make instance method 'testDHDStackSetup()' part of global actor 'MainActor'
func testDHDStackSetup() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:42:34: warning: main actor-isolated property 'axis' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(stack.axis, .horizontal)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:167:45: note: property declared here
@property(nonatomic) UILayoutConstraintAxis axis;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:43:34: warning: main actor-isolated property 'distribution' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(stack.distribution, .equalCentering)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:171:46: note: property declared here
@property(nonatomic) UIStackViewDistribution distribution;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:44:34: warning: main actor-isolated property 'spacing' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(stack.spacing, 2)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:193:30: note: property declared here
@property(nonatomic) CGFloat spacing;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:45:34: warning: main actor-isolated property 'alignment' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(stack.alignment, .leading)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:176:43: note: property declared here
@property(nonatomic) UIStackViewAlignment alignment;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:46:34: warning: main actor-isolated property 'tag' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(stack.tag, 2)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:153:64: note: property declared here
@property(nonatomic) NSInteger tag; // default is 0
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:52: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 hStack = DHDHStack()
^
/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/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:51:14: note: add '@MainActor' to make instance method 'testDHDHStackInit()' part of global actor 'MainActor'
func testDHDHStackInit() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:53:35: warning: main actor-isolated property 'axis' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(hStack.axis, .horizontal)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:167:45: note: property declared here
@property(nonatomic) UILayoutConstraintAxis axis;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:54:35: warning: main actor-isolated property 'distribution' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(hStack.distribution, .fill)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:171:46: note: property declared here
@property(nonatomic) UIStackViewDistribution distribution;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:55:35: warning: main actor-isolated property 'spacing' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(hStack.spacing, 0)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:193:30: note: property declared here
@property(nonatomic) CGFloat spacing;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:56:35: warning: main actor-isolated property 'alignment' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(hStack.alignment, .fill)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:176:43: note: property declared here
@property(nonatomic) UIStackViewAlignment alignment;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:57:35: warning: main actor-isolated property 'tag' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(hStack.tag, 0)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:153:64: note: property declared here
@property(nonatomic) NSInteger tag; // default is 0
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:61:26: warning: call to main actor-isolated initializer 'init(distribution:spacing:alignment:tag:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let hStack = DHDHStack(distribution: .equalCentering, spacing: 2, alignment: .leading, tag: 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDStack/DHDStack.swift:15:28: note: calls to initializer 'init(distribution:spacing:alignment:tag:)' from outside of its actor context are implicitly asynchronous
public convenience init(distribution: Distribution = .fill, spacing: CGFloat = 0, alignment: Alignment? = nil, tag: Int? = nil) {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:60:14: note: add '@MainActor' to make instance method 'testDHDHStackConvenienceInit()' part of global actor 'MainActor'
func testDHDHStackConvenienceInit() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:62:35: warning: main actor-isolated property 'axis' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(hStack.axis, .horizontal)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:167:45: note: property declared here
@property(nonatomic) UILayoutConstraintAxis axis;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:63:35: warning: main actor-isolated property 'distribution' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(hStack.distribution, .equalCentering)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:171:46: note: property declared here
@property(nonatomic) UIStackViewDistribution distribution;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:64:35: warning: main actor-isolated property 'spacing' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(hStack.spacing, 2)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:193:30: note: property declared here
@property(nonatomic) CGFloat spacing;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:65:35: warning: main actor-isolated property 'alignment' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(hStack.alignment, .leading)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:176:43: note: property declared here
@property(nonatomic) UIStackViewAlignment alignment;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:66:35: warning: main actor-isolated property 'tag' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(hStack.tag, 2)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:153:64: note: property declared here
@property(nonatomic) NSInteger tag; // default is 0
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:72:38: warning: call to main actor-isolated instance method 'declaredWithVerticalAxis()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let vStack = DHDVStack().declaredWithVerticalAxis()
^
/Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDStack/DHDVStack.swift:24:21: note: calls to instance method 'declaredWithVerticalAxis()' from outside of its actor context are implicitly asynchronous
public func declaredWithVerticalAxis() -> Self {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:71:14: note: add '@MainActor' to make instance method 'testDHDVStackInit()' part of global actor 'MainActor'
func testDHDVStackInit() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:72: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 vStack = DHDVStack().declaredWithVerticalAxis()
^
/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/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:71:14: note: add '@MainActor' to make instance method 'testDHDVStackInit()' part of global actor 'MainActor'
func testDHDVStackInit() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:73:35: warning: main actor-isolated property 'axis' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(vStack.axis, .vertical)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:167:45: note: property declared here
@property(nonatomic) UILayoutConstraintAxis axis;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:74:35: warning: main actor-isolated property 'distribution' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(vStack.distribution, .fill)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:171:46: note: property declared here
@property(nonatomic) UIStackViewDistribution distribution;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:75:35: warning: main actor-isolated property 'spacing' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(vStack.spacing, 0)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:193:30: note: property declared here
@property(nonatomic) CGFloat spacing;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:76:35: warning: main actor-isolated property 'alignment' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(vStack.alignment, .fill)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:176:43: note: property declared here
@property(nonatomic) UIStackViewAlignment alignment;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:77:35: warning: main actor-isolated property 'tag' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(vStack.tag, 0)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:153:64: note: property declared here
@property(nonatomic) NSInteger tag; // default is 0
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:81:26: warning: call to main actor-isolated initializer 'init(distribution:spacing:alignment:tag:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let vStack = DHDVStack(distribution: .equalCentering, spacing: 2, alignment: .leading, tag: 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDStack/DHDStack.swift:15:28: note: calls to initializer 'init(distribution:spacing:alignment:tag:)' from outside of its actor context are implicitly asynchronous
public convenience init(distribution: Distribution = .fill, spacing: CGFloat = 0, alignment: Alignment? = nil, tag: Int? = nil) {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:80:14: note: add '@MainActor' to make instance method 'testDHDVStackConvenienceInit()' part of global actor 'MainActor'
func testDHDVStackConvenienceInit() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:82:35: warning: main actor-isolated property 'axis' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(vStack.axis, .vertical)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:167:45: note: property declared here
@property(nonatomic) UILayoutConstraintAxis axis;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:83:35: warning: main actor-isolated property 'distribution' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(vStack.distribution, .equalCentering)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:171:46: note: property declared here
@property(nonatomic) UIStackViewDistribution distribution;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:84:35: warning: main actor-isolated property 'spacing' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(vStack.spacing, 2)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:193:30: note: property declared here
@property(nonatomic) CGFloat spacing;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:85:35: warning: main actor-isolated property 'alignment' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(vStack.alignment, .leading)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIStackView.h:176:43: note: property declared here
@property(nonatomic) UIStackViewAlignment alignment;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift:86:35: warning: main actor-isolated property 'tag' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(vStack.tag, 2)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:153:64: note: property declared here
@property(nonatomic) NSInteger tag; // default is 0
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:18:37: 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 nilViewController = DHDViewController(coder: NSCoder())
^
/Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDViewController/DHDViewController.swift:16:25: note: calls to initializer 'init(coder:)' from outside of its actor context are implicitly asynchronous
public required init?(coder: NSCoder) {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:17:14: note: add '@MainActor' to make instance method 'testInit()' part of global actor 'MainActor'
func testInit() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:23:34: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let viewController = 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/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:22:39: note: add '@MainActor' to make instance method 'testSystemBackgroundFromTraitCollection()' part of global actor 'MainActor'
@available(iOS 13.0, *) func testSystemBackgroundFromTraitCollection() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:24:54: warning: call to main actor-isolated static method 'systemBackground(from:useSystemBackgroundIfAvailable:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let systemBackground = DHDViewController.systemBackground(from: viewController.traitCollection)
^
/Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDViewController/DHDViewController.swift:100:21: note: calls to static method 'systemBackground(from:useSystemBackgroundIfAvailable:)' from outside of its actor context are implicitly asynchronous
static func systemBackground(from traitCollection: UITraitCollection, useSystemBackgroundIfAvailable: Bool = true) -> UIColor {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:22:39: note: add '@MainActor' to make instance method 'testSystemBackgroundFromTraitCollection()' part of global actor 'MainActor'
@available(iOS 13.0, *) func testSystemBackgroundFromTraitCollection() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:24:92: warning: main actor-isolated property 'traitCollection' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let systemBackground = DHDViewController.systemBackground(from: viewController.traitCollection)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h:170:52: note: property declared here
@property (nonatomic, readonly) UITraitCollection *traitCollection API_AVAILABLE(ios(8.0));
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:22:39: note: add '@MainActor' to make instance method 'testSystemBackgroundFromTraitCollection()' part of global actor 'MainActor'
@available(iOS 13.0, *) func testSystemBackgroundFromTraitCollection() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:30:34: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let viewController = 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/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:29:39: note: add '@MainActor' to make instance method 'testSystemBackgroundFromTraitCollectionLight()' part of global actor 'MainActor'
@available(iOS 13.0, *) func testSystemBackgroundFromTraitCollectionLight() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:31:28: warning: main actor-isolated property 'overrideUserInterfaceStyle' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
viewController.overrideUserInterfaceStyle = .light
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:346:44: note: mutation of this property is only permitted within the actor
@property (nonatomic) UIUserInterfaceStyle overrideUserInterfaceStyle API_AVAILABLE(tvos(13.0), ios(13.0)) API_UNAVAILABLE(watchos); // Defaults to UIUserInterfaceStyleUnspecified
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:29:39: note: add '@MainActor' to make instance method 'testSystemBackgroundFromTraitCollectionLight()' part of global actor 'MainActor'
@available(iOS 13.0, *) func testSystemBackgroundFromTraitCollectionLight() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:32:54: warning: call to main actor-isolated static method 'systemBackground(from:useSystemBackgroundIfAvailable:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let systemBackground = DHDViewController.systemBackground(from: viewController.traitCollection, useSystemBackgroundIfAvailable: false)
^
/Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDViewController/DHDViewController.swift:100:21: note: calls to static method 'systemBackground(from:useSystemBackgroundIfAvailable:)' from outside of its actor context are implicitly asynchronous
static func systemBackground(from traitCollection: UITraitCollection, useSystemBackgroundIfAvailable: Bool = true) -> UIColor {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:29:39: note: add '@MainActor' to make instance method 'testSystemBackgroundFromTraitCollectionLight()' part of global actor 'MainActor'
@available(iOS 13.0, *) func testSystemBackgroundFromTraitCollectionLight() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:32:92: warning: main actor-isolated property 'traitCollection' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let systemBackground = DHDViewController.systemBackground(from: viewController.traitCollection, useSystemBackgroundIfAvailable: false)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h:170:52: note: property declared here
@property (nonatomic, readonly) UITraitCollection *traitCollection API_AVAILABLE(ios(8.0));
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:29:39: note: add '@MainActor' to make instance method 'testSystemBackgroundFromTraitCollectionLight()' part of global actor 'MainActor'
@available(iOS 13.0, *) func testSystemBackgroundFromTraitCollectionLight() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:37:34: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let viewController = 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/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:36:39: note: add '@MainActor' to make instance method 'testSystemBackgroundFromTraitCollectionDark()' part of global actor 'MainActor'
@available(iOS 13.0, *) func testSystemBackgroundFromTraitCollectionDark() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:38:28: warning: main actor-isolated property 'overrideUserInterfaceStyle' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
viewController.overrideUserInterfaceStyle = .dark
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:346:44: note: mutation of this property is only permitted within the actor
@property (nonatomic) UIUserInterfaceStyle overrideUserInterfaceStyle API_AVAILABLE(tvos(13.0), ios(13.0)) API_UNAVAILABLE(watchos); // Defaults to UIUserInterfaceStyleUnspecified
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:36:39: note: add '@MainActor' to make instance method 'testSystemBackgroundFromTraitCollectionDark()' part of global actor 'MainActor'
@available(iOS 13.0, *) func testSystemBackgroundFromTraitCollectionDark() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:39:54: warning: call to main actor-isolated static method 'systemBackground(from:useSystemBackgroundIfAvailable:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let systemBackground = DHDViewController.systemBackground(from: viewController.traitCollection, useSystemBackgroundIfAvailable: false)
^
/Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDViewController/DHDViewController.swift:100:21: note: calls to static method 'systemBackground(from:useSystemBackgroundIfAvailable:)' from outside of its actor context are implicitly asynchronous
static func systemBackground(from traitCollection: UITraitCollection, useSystemBackgroundIfAvailable: Bool = true) -> UIColor {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:36:39: note: add '@MainActor' to make instance method 'testSystemBackgroundFromTraitCollectionDark()' part of global actor 'MainActor'
@available(iOS 13.0, *) func testSystemBackgroundFromTraitCollectionDark() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:39:92: warning: main actor-isolated property 'traitCollection' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let systemBackground = DHDViewController.systemBackground(from: viewController.traitCollection, useSystemBackgroundIfAvailable: false)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h:170:52: note: property declared here
@property (nonatomic, readonly) UITraitCollection *traitCollection API_AVAILABLE(ios(8.0));
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:36:39: note: add '@MainActor' to make instance method 'testSystemBackgroundFromTraitCollectionDark()' part of global actor 'MainActor'
@available(iOS 13.0, *) func testSystemBackgroundFromTraitCollectionDark() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:44:34: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let viewController = DHDViewController()
^
/Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDViewController/DHDViewController.swift:11:16: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
public init() {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:43:14: note: add '@MainActor' to make instance method 'testViewTag()' part of global actor 'MainActor'
func testViewTag() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:45:42: warning: main actor-isolated property 'viewTag' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let viewTag = viewController.viewTag
^
/Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDViewController/DHDViewController.swift:44:20: note: property declared here
public let viewTag = Int.random(in: Int.min ... Int.max)
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:43:14: note: add '@MainActor' to make instance method 'testViewTag()' part of global actor 'MainActor'
func testViewTag() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:51:34: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let viewController = DHDViewController()
^
/Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDViewController/DHDViewController.swift:11:16: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
public init() {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:50:14: note: add '@MainActor' to make instance method 'testInitialPadding()' part of global actor 'MainActor'
func testInitialPadding() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:52:43: warning: main actor-isolated property 'horizontalPadding' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(viewController.horizontalPadding, 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDViewController/DHDViewController.swift:28:18: note: property declared here
open var horizontalPadding: CGFloat { 0 }
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:53:43: warning: main actor-isolated property 'verticalPadding' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(viewController.verticalPadding, 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDViewController/DHDViewController.swift:25:18: note: property declared here
open var verticalPadding: CGFloat { 0 }
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:57:34: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let viewController = DHDViewController()
^
/Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDViewController/DHDViewController.swift:11:16: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
public init() {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:56:14: note: add '@MainActor' to make instance method 'testInitialRenderingMode()' part of global actor 'MainActor'
func testInitialRenderingMode() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:58:43: warning: main actor-isolated property 'renderingMode' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(viewController.renderingMode, .pin)
^
/Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDViewController/DHDViewController.swift:34:18: note: property declared here
open var renderingMode: DHDViewControllerContentRenderingMode { .pin }
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:62:34: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let viewController = DHDViewController()
^
/Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDViewController/DHDViewController.swift:11:16: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
public init() {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:61:14: note: add '@MainActor' to make instance method 'testInitialBackgroundColor()' part of global actor 'MainActor'
func testInitialBackgroundColor() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:63:41: warning: main actor-isolated property 'backgroundColor' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertNil(viewController.backgroundColor)
^
/Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDViewController/DHDViewController.swift:38:18: note: property declared here
open var backgroundColor: UIColor? { nil }
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.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
let viewController = DHDViewController()
^
/Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDViewController/DHDViewController.swift:11:16: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
public init() {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:66:14: note: add '@MainActor' to make instance method 'testInitialTitle()' part of global actor 'MainActor'
func testInitialTitle() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:68:41: warning: main actor-isolated property 'titled' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertNil(viewController.titled)
^
/Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDViewController/DHDViewController.swift:31:18: note: property declared here
open var titled: String? { nil }
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:72:34: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let viewController = TestPinViewController()
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:102:64: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
private class TestPinViewController: DHDViewController {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:102:64: note: main actor isolation inferred from inheritance from class 'DHDViewController'
private class TestPinViewController: DHDViewController {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:71:14: note: add '@MainActor' to make instance method 'testPinReloadView()' part of global actor 'MainActor'
func testPinReloadView() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:73:28: warning: call to main actor-isolated instance method 'reloadView()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
viewController.reloadView()
^
/Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDViewController/DHDViewController.swift:61:40: note: calls to instance method 'reloadView()' from outside of its actor context are implicitly asynchronous
@discardableResult public func reloadView() -> UIView {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:71:14: note: add '@MainActor' to make instance method 'testPinReloadView()' part of global actor 'MainActor'
func testPinReloadView() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:74:43: warning: main actor-isolated property 'title' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(viewController.title, "Test Pin")
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:195:47: note: property declared here
@property(nullable, nonatomic,copy) NSString *title; // Localized title for use by a parent controller.
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:75:63: warning: main actor-isolated property 'text' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual((viewController.body as? UILabel)?.text, "Test Pinned Label")
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:35:59: note: property declared here
@property(nullable, nonatomic,copy) NSString *text; // default is nil
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:75:44: warning: main actor-isolated property 'body' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual((viewController.body as? UILabel)?.text, "Test Pinned Label")
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:105:26: note: property declared here
override var body: UIView {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:79:34: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let viewController = TestCenterViewController()
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:116:67: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
private class TestCenterViewController: DHDViewController {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:116:67: note: main actor isolation inferred from inheritance from class 'DHDViewController'
private class TestCenterViewController: DHDViewController {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:78:14: note: add '@MainActor' to make instance method 'testCenterReloadView()' part of global actor 'MainActor'
func testCenterReloadView() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:80:28: warning: call to main actor-isolated instance method 'reloadView()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
viewController.reloadView()
^
/Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDViewController/DHDViewController.swift:61:40: note: calls to instance method 'reloadView()' from outside of its actor context are implicitly asynchronous
@discardableResult public func reloadView() -> UIView {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:78:14: note: add '@MainActor' to make instance method 'testCenterReloadView()' part of global actor 'MainActor'
func testCenterReloadView() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:81:43: warning: main actor-isolated property 'title' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(viewController.title, "Test Center")
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:195:47: note: property declared here
@property(nullable, nonatomic,copy) NSString *title; // Localized title for use by a parent controller.
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:82:63: warning: main actor-isolated property 'text' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual((viewController.body as? UILabel)?.text, "Test Centered Label")
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UILabel.h:35:59: note: property declared here
@property(nullable, nonatomic,copy) NSString *text; // default is nil
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:82:44: warning: main actor-isolated property 'body' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual((viewController.body as? UILabel)?.text, "Test Centered Label")
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:120:26: note: property declared here
override var body: UIView {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:86:34: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let viewController = DHDViewController()
^
/Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDViewController/DHDViewController.swift:11:16: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
public init() {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:85:14: note: add '@MainActor' to make instance method 'testSystemBackground()' part of global actor 'MainActor'
func testSystemBackground() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:87:40: warning: main actor-isolated property 'systemBackground' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let color = viewController.systemBackground
^
/Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDViewController/DHDViewController.swift:94:13: note: property declared here
var systemBackground: UIColor {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:85:14: note: add '@MainActor' to make instance method 'testSystemBackground()' part of global actor 'MainActor'
func testSystemBackground() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:92:23: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let pin = TestPinViewController()
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:102:64: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
private class TestPinViewController: DHDViewController {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:102:64: note: main actor isolation inferred from inheritance from class 'DHDViewController'
private class TestPinViewController: DHDViewController {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:91:14: note: add '@MainActor' to make instance method 'testSetBody()' part of global actor 'MainActor'
func testSetBody() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:93:17: warning: main actor-isolated property 'body' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
pin.body = UIView().identified("pin")
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:105:26: note: mutation of this property is only permitted within the actor
override var body: UIView {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:91:14: note: add '@MainActor' to make instance method 'testSetBody()' part of global actor 'MainActor'
func testSetBody() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:93:33: warning: call to main actor-isolated instance method 'identified' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
pin.body = UIView().identified("pin")
^
/Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/UIKit/UIView/UIView+Style.swift:25:39: note: calls to instance method 'identified' from outside of its actor context are implicitly asynchronous
@objc @discardableResult func identified(_ value: String) -> Self {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:91:14: note: add '@MainActor' to make instance method 'testSetBody()' part of global actor 'MainActor'
func testSetBody() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:93:24: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
pin.body = UIView().identified("pin")
^
/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/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:91:14: note: add '@MainActor' to make instance method 'testSetBody()' part of global actor 'MainActor'
func testSetBody() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:94:37: warning: main actor-isolated property 'accessibilityIdentifier' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(pin.body.accessibilityIdentifier, nil) // Note that you shouldn't set the body
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h:25:48: note: property declared here
@property(nullable, nonatomic, copy) NSString *accessibilityIdentifier API_AVAILABLE(ios(5.0)) NS_SWIFT_UI_ACTOR;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:94:32: warning: main actor-isolated property 'body' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(pin.body.accessibilityIdentifier, nil) // Note that you shouldn't set the body
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:105:26: note: property declared here
override var body: UIView {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:96: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 center = TestCenterViewController()
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:116:67: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
private class TestCenterViewController: DHDViewController {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:116:67: note: main actor isolation inferred from inheritance from class 'DHDViewController'
private class TestCenterViewController: DHDViewController {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:91:14: note: add '@MainActor' to make instance method 'testSetBody()' part of global actor 'MainActor'
func testSetBody() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:97:20: warning: main actor-isolated property 'body' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
center.body = UIView().identified("center")
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:120:26: note: mutation of this property is only permitted within the actor
override var body: UIView {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:91:14: note: add '@MainActor' to make instance method 'testSetBody()' part of global actor 'MainActor'
func testSetBody() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:97:36: warning: call to main actor-isolated instance method 'identified' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
center.body = UIView().identified("center")
^
/Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/UIKit/UIView/UIView+Style.swift:25:39: note: calls to instance method 'identified' from outside of its actor context are implicitly asynchronous
@objc @discardableResult func identified(_ value: String) -> Self {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:91:14: note: add '@MainActor' to make instance method 'testSetBody()' part of global actor 'MainActor'
func testSetBody() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:97:27: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
center.body = UIView().identified("center")
^
/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/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:91:14: note: add '@MainActor' to make instance method 'testSetBody()' part of global actor 'MainActor'
func testSetBody() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:98:40: warning: main actor-isolated property 'accessibilityIdentifier' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(center.body.accessibilityIdentifier, nil) // Note that you shouldn't set the body
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h:25:48: note: property declared here
@property(nullable, nonatomic, copy) NSString *accessibilityIdentifier API_AVAILABLE(ios(5.0)) NS_SWIFT_UI_ACTOR;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:98:35: warning: main actor-isolated property 'body' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(center.body.accessibilityIdentifier, nil) // Note that you shouldn't set the body
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift:120:26: note: property declared here
override var body: UIView {
^
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewTests/DHDViewTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewTests/DHDViewTests.swift:16:34: warning: main actor-isolated class property 'spacer' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let spacer = DHDView.spacer
^
/Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDView/DHDView.swift:15:27: note: class property declared here
public static var spacer: DHDView {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewTests/DHDViewTests.swift:15:14: note: add '@MainActor' to make instance method 'testSpacer()' part of global actor 'MainActor'
func testSpacer() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewTests/DHDViewTests.swift:17:35: warning: main actor-isolated property 'accessibilityIdentifier' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(spacer.accessibilityIdentifier, DHDIdentifier.spacer)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h:25:48: note: property declared here
@property(nullable, nonatomic, copy) NSString *accessibilityIdentifier API_AVAILABLE(ios(5.0)) NS_SWIFT_UI_ACTOR;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewTests/DHDViewTests.swift:21:42: warning: call to main actor-isolated static method 'spacer(vertical:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let spacerVertical = DHDView.spacer(vertical: 10)
^
/Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDView/DHDView+spacer.swift:16:40: note: calls to static method 'spacer(vertical:)' from outside of its actor context are implicitly asynchronous
@discardableResult static func spacer(vertical height: CGFloat) -> DHDView {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewTests/DHDViewTests.swift:20:14: note: add '@MainActor' to make instance method 'testSpacerVertical()' part of global actor 'MainActor'
func testSpacerVertical() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewTests/DHDViewTests.swift:22:43: warning: main actor-isolated property 'accessibilityIdentifier' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(spacerVertical.accessibilityIdentifier, DHDIdentifier.spacer)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h:25:48: note: property declared here
@property(nullable, nonatomic, copy) NSString *accessibilityIdentifier API_AVAILABLE(ios(5.0)) NS_SWIFT_UI_ACTOR;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewTests/DHDViewTests.swift:23:62: warning: main actor-isolated property 'constant' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(spacerVertical.constraints.first?.constant, 10)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:178:19: note: property declared here
@property CGFloat constant;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewTests/DHDViewTests.swift:23:43: warning: main actor-isolated property 'constraints' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(spacerVertical.constraints.first?.constant, 10)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:428:71: note: property declared here
@property(nonatomic,readonly) NSArray<__kindof NSLayoutConstraint *> *constraints API_AVAILABLE(ios(6.0));
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewTests/DHDViewTests.swift:27:44: warning: call to main actor-isolated static method 'spacer(horizontal:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let spacerHorizontal = DHDView.spacer(horizontal: 20)
^
/Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDView/DHDView+spacer.swift:26:40: note: calls to static method 'spacer(horizontal:)' from outside of its actor context are implicitly asynchronous
@discardableResult static func spacer(horizontal width: CGFloat) -> DHDView {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewTests/DHDViewTests.swift:26:14: note: add '@MainActor' to make instance method 'testSpacerHorizontal()' part of global actor 'MainActor'
func testSpacerHorizontal() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewTests/DHDViewTests.swift:28:45: warning: main actor-isolated property 'accessibilityIdentifier' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(spacerHorizontal.accessibilityIdentifier, DHDIdentifier.spacer)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h:25:48: note: property declared here
@property(nullable, nonatomic, copy) NSString *accessibilityIdentifier API_AVAILABLE(ios(5.0)) NS_SWIFT_UI_ACTOR;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewTests/DHDViewTests.swift:29:64: warning: main actor-isolated property 'constant' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(spacerHorizontal.constraints.first?.constant, 20)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/NSLayoutConstraint.h:178:19: note: property declared here
@property CGFloat constant;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewTests/DHDViewTests.swift:29:45: warning: main actor-isolated property 'constraints' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(spacerHorizontal.constraints.first?.constant, 20)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:428:71: note: property declared here
@property(nonatomic,readonly) NSArray<__kindof NSLayoutConstraint *> *constraints API_AVAILABLE(ios(6.0));
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewTests/DHDViewTests.swift:35:35: warning: main actor-isolated class property 'divider' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
let divider = DHDView.divider
^
/Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDView/DHDView.swift:24:27: note: class property declared here
public static var divider: DHDView {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewTests/DHDViewTests.swift:34:14: note: add '@MainActor' to make instance method 'testDivider()' part of global actor 'MainActor'
func testDivider() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewTests/DHDViewTests.swift:36:36: warning: main actor-isolated property 'accessibilityIdentifier' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(divider.accessibilityIdentifier, DHDIdentifier.divider)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h:25:48: note: property declared here
@property(nullable, nonatomic, copy) NSString *accessibilityIdentifier API_AVAILABLE(ios(5.0)) NS_SWIFT_UI_ACTOR;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewTests/DHDViewTests.swift:40:35: warning: call to main actor-isolated static method 'divider' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
let divider = DHDView.divider(.red)
^
/Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDView/DHDView+divider.swift:16:21: note: calls to static method 'divider' from outside of its actor context are implicitly asynchronous
static func divider(_ color: UIColor) -> DHDView {
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewTests/DHDViewTests.swift:39:14: note: add '@MainActor' to make instance method 'testDividerColor()' part of global actor 'MainActor'
func testDividerColor() {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewTests/DHDViewTests.swift:41:52: warning: main actor-isolated property 'backgroundColor' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(divider.subviews.first?.backgroundColor, .red)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:303:66: note: property declared here
@property(nullable, nonatomic,copy) UIColor *backgroundColor UI_APPEARANCE_SELECTOR; // default is nil. Can be useful with the appearance proxy on custom UIView subclasses.
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewTests/DHDViewTests.swift:41:36: warning: main actor-isolated property 'subviews' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(divider.subviews.first?.backgroundColor, .red)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:222:64: note: property declared here
@property(nonatomic,readonly,copy) NSArray<__kindof UIView *> *subviews;
^
/Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewTests/DHDViewTests.swift:42:36: warning: main actor-isolated property 'accessibilityIdentifier' can not be referenced from a nonisolated autoclosure; this is an error in the Swift 6 language mode
XCTAssertEqual(divider.accessibilityIdentifier, DHDIdentifier.divider)
^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/UIKit.framework/Headers/UIAccessibilityIdentification.h:25:48: note: property declared here
@property(nullable, nonatomic, copy) NSString *accessibilityIdentifier API_AVAILABLE(ios(5.0)) NS_SWIFT_UI_ACTOR;
^
SwiftDriverJobDiscovery normal arm64 Emitting module for DHDeclarableTests (in target 'DHDeclarableTests' from project 'DHDeclarable')
SwiftDriver\ Compilation\ Requirements DHDeclarableTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DHDeclarableTests' from project 'DHDeclarable')
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 DHDeclarableTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/Objects-normal/arm64/DHDeclarableTests.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-ios13.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/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/Objects-normal/arm64/DHDeclarableTests-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/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/Objects-normal/arm64/DHDeclarableTests.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/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/Objects-normal/arm64/DHDeclarableTests_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/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation DHDeclarable normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DHDeclarable' from project 'DHDeclarable')
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 DHDeclarable -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/Objects-normal/arm64/DHDeclarable.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-ios12.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/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/Objects-normal/arm64/DHDeclarable-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/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/Objects-normal/arm64/DHDeclarable.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/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/Objects-normal/arm64/DHDeclarable_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/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarable.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/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/Objects-normal/arm64/DHDeclarable-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling UIView+roundedTests.swift, UIView+tagTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
SwiftDriverJobDiscovery normal arm64 Compiling String+asLabelTests.swift, String+inQuotesTests.swift, UIKit+DHDStringRepresentableTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
** BUILD FAILED **
The following build commands failed:
SwiftCompile normal arm64 Compiling\ DHDTwoLabelRowComponentTests.swift,\ DHDLabelTests.swift,\ DHDScrollViewTests.swift /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHComponentTests/DHDTwoLabelRowComponentTests.swift /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDLabelTests/DHDLabelTests.swift /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDScrollViewTests/DHDScrollViewTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDScrollViewTests/DHDScrollViewTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
Building workspace spi-builder-workspace with scheme DHDeclarable
(3 failures)
Command line invocation:
/Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -resolvePackageDependencies
Resolve Package Graph
Resolved source packages:
ShellOut: https://github.com/JohnSundell/ShellOut.git @ 2.3.0
CollectionConcurrencyKit: https://github.com/JohnSundell/CollectionConcurrencyKit.git @ 0.2.0
SWXMLHash: https://github.com/drmohundro/SWXMLHash.git @ 7.0.2
SwiftLint: https://github.com/Realm/SwiftLint.git @ 0.59.1
SourceKitten: https://github.com/jpsim/SourceKitten.git @ 0.37.0
SwiftShell: https://github.com/kareman/SwiftShell @ 5.1.0
Komondor: https://github.com/shibapm/Komondor.git @ 1.1.4
Yams: https://github.com/jpsim/Yams @ 5.3.1
PackageConfig: https://github.com/shibapm/PackageConfig.git @ 1.1.3
Logger: https://github.com/shibapm/Logger @ 0.2.3
SwiftyTextTable: https://github.com/scottrhoyt/SwiftyTextTable.git @ 0.9.0
Rocket: https://github.com/f-meloni/Rocket @ 1.3.0
CryptoSwift: https://github.com/krzyzanowskim/CryptoSwift.git @ 1.8.4
swift-argument-parser: https://github.com/apple/swift-argument-parser.git @ 1.5.0
SwiftFormat: https://github.com/nicklockwood/SwiftFormat.git @ 0.55.5
DHDeclarable: /Users/admin/builder/spi-builder-workspace
swift-syntax: https://github.com/swiftlang/swift-syntax.git @ 601.0.0
resolved source packages: ShellOut, CollectionConcurrencyKit, SWXMLHash, SwiftLint, SourceKitten, SwiftShell, Komondor, Yams, PackageConfig, Logger, SwiftyTextTable, Rocket, CryptoSwift, swift-argument-parser, SwiftFormat, DHDeclarable, swift-syntax
{
"dependencies" : [
{
"identity" : "komondor",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/shibapm/Komondor.git"
}
],
"manifest_display_name" : "DHDeclarable",
"name" : "DHDeclarable",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "12.0"
}
],
"products" : [
{
"name" : "DHDeclarable",
"targets" : [
"DHDeclarable"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "DHDeclarableTests",
"module_type" : "SwiftTarget",
"name" : "DHDeclarableTests",
"path" : "Tests/DHDeclarableTests",
"sources" : [
"ClassTests/DHComponentTests/DHDTwoLabelRowComponentTests.swift",
"ClassTests/DHDLabelTests/DHDLabelTests.swift",
"ClassTests/DHDScrollViewTests/DHDScrollViewTests.swift",
"ClassTests/DHDStackTests/DHDStackTests.swift",
"ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift",
"ClassTests/DHDViewTests/DHDViewTests.swift",
"DHDeclarable+ValueTypeTests.swift",
"DHDeclarable+declaredIfTests.swift",
"ExtensionTests/Collection+optionalTests.swift",
"ExtensionTests/StringTests/String+asLabelTests.swift",
"ExtensionTests/StringTests/String+inQuotesTests.swift",
"ExtensionTests/UIKitTests/UIKit+DHDStringRepresentableTests.swift",
"ExtensionTests/UIKitTests/UILabelTests/UILabel+StyleTests.swift",
"ExtensionTests/UIKitTests/UIStackViewTests/UIStackView+AxisTests.swift",
"ExtensionTests/UIKitTests/UIStackViewTests/UIStackView+LayoutTests.swift",
"ExtensionTests/UIKitTests/UIStackViewTests/UIStackView+RecursiveTests.swift",
"ExtensionTests/UIKitTests/UIStackViewTests/UIStackView+arrangedSubviewAtIndexTests.swift",
"ExtensionTests/UIKitTests/UIStackViewTests/UIStackView+hierarchyTests.swift",
"ExtensionTests/UIKitTests/UIStackViewTests/UIStackView+removeAllArrangedSubviewsTests.swift",
"ExtensionTests/UIKitTests/UIViewControllerTests/UIViewController+asTests.swift",
"ExtensionTests/UIKitTests/UIViewTests/UIView+StyleTests.swift",
"ExtensionTests/UIKitTests/UIViewTests/UIView+addDividerTests.swift",
"ExtensionTests/UIKitTests/UIViewTests/UIView+centerTests.swift",
"ExtensionTests/UIKitTests/UIViewTests/UIView+declaredWithRedLinesTests.swift",
"ExtensionTests/UIKitTests/UIViewTests/UIView+roundedTests.swift",
"ExtensionTests/UIKitTests/UIViewTests/UIView+tagTests.swift",
"PreviewTests/PreviewTests.swift",
"PropertyWrapperTests/ResettableLazyTests.swift"
],
"target_dependencies" : [
"DHDeclarable"
],
"type" : "test"
},
{
"c99name" : "DHDeclarable",
"module_type" : "SwiftTarget",
"name" : "DHDeclarable",
"path" : "Sources/DHDeclarable",
"product_memberships" : [
"DHDeclarable"
],
"sources" : [
"Classes/DHDComponent/BaseClasses/DHDComponentable.swift",
"Classes/DHDComponent/BaseClasses/DHDStackViewComponent.swift",
"Classes/DHDComponent/BaseClasses/DHDViewComponent.swift",
"Classes/DHDComponent/DHDTwoLabelRowComponent.swift",
"Classes/DHDLabel/DHDLabel.swift",
"Classes/DHDScrollView/DHDScrollView.swift",
"Classes/DHDStack/DHDHStack.swift",
"Classes/DHDStack/DHDStack.swift",
"Classes/DHDStack/DHDVStack.swift",
"Classes/DHDView/DHDView+divider.swift",
"Classes/DHDView/DHDView+spacer.swift",
"Classes/DHDView/DHDView.swift",
"Classes/DHDViewController/DHDViewController.swift",
"Classes/DHDViewController/DHDViewControllerContentRenderingMode.swift",
"Classes/DHDViewController/DHDViewControlling.swift",
"DHDIdentifier.swift",
"DHDeclarable.swift",
"Extensions/Collection+optional.swift",
"Extensions/String/String+asLabel.swift",
"Extensions/String/String+inQuotes.swift",
"Extensions/UIKit/UIKit+DHDStringRepresentable.swift",
"Extensions/UIKit/UILabel/UILabel+Style.swift",
"Extensions/UIKit/UIStackView/UIStackView+Layout.swift",
"Extensions/UIKit/UIStackView/UIStackView+Rrecursive.swift",
"Extensions/UIKit/UIStackView/UIStackView+arrangedSubviewAtIndex.swift",
"Extensions/UIKit/UIStackView/UIStackView+forEach.swift",
"Extensions/UIKit/UIStackView/UIStackView+removeAllArrangedSubviews.swift",
"Extensions/UIKit/UIView/UIView+Divider.swift",
"Extensions/UIKit/UIView/UIView+Style.swift",
"Extensions/UIKit/UIView/UIView+as.swift",
"Extensions/UIKit/UIView/UIView+center.swift",
"Extensions/UIKit/UIView/UIView+declaredWithRedLines.swift",
"Extensions/UIKit/UIView/UIView+pin.swift",
"Extensions/UIKit/UIView/UIView+rounded.swift",
"Extensions/UIKit/UIView/UIView+tag.swift",
"Extensions/UIKit/UIViewController/UIViewController+as.swift",
"Previews/UIView+Preview.swift",
"Previews/UIViewController+Preview.swift",
"PropertyWrappers/ResettableLazy.swift",
"Protocols/DHDStringRepresentable.swift"
],
"type" : "library"
}
],
"tools_version" : "5.0"
}
{
"workspace" : {
"name" : "spi-builder-workspace",
"schemes" : [
"DHDeclarable",
"SwiftShell"
]
}
}
{
"workspace" : {
"name" : "spi-builder-workspace",
"schemes" : [
"DHDeclarable",
"SwiftShell"
]
}
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme DHDeclarable -destination generic/platform=iOS
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 build -scheme DHDeclarable -destination generic/platform=iOS
Resolve Package Graph
Resolved source packages:
SwiftShell: https://github.com/kareman/SwiftShell @ 5.1.0
CollectionConcurrencyKit: https://github.com/JohnSundell/CollectionConcurrencyKit.git @ 0.2.0
swift-syntax: https://github.com/swiftlang/swift-syntax.git @ 601.0.0
SwiftLint: https://github.com/Realm/SwiftLint.git @ 0.59.1
swift-argument-parser: https://github.com/apple/swift-argument-parser.git @ 1.5.0
SourceKitten: https://github.com/jpsim/SourceKitten.git @ 0.37.0
Rocket: https://github.com/f-meloni/Rocket @ 1.3.0
PackageConfig: https://github.com/shibapm/PackageConfig.git @ 1.1.3
ShellOut: https://github.com/JohnSundell/ShellOut.git @ 2.3.0
CryptoSwift: https://github.com/krzyzanowskim/CryptoSwift.git @ 1.8.4
SwiftFormat: https://github.com/nicklockwood/SwiftFormat.git @ 0.55.5
SWXMLHash: https://github.com/drmohundro/SWXMLHash.git @ 7.0.2
SwiftyTextTable: https://github.com/scottrhoyt/SwiftyTextTable.git @ 0.9.0
Logger: https://github.com/shibapm/Logger @ 0.2.3
Yams: https://github.com/jpsim/Yams @ 5.3.1
DHDeclarable: /Users/admin/builder/spi-builder-workspace
Komondor: https://github.com/shibapm/Komondor.git @ 1.1.4
ComputePackagePrebuildTargetDependencyGraph
Prepare packages
CreateBuildRequest
SendProjectDescription
CreateBuildOperation
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (3 targets)
Target 'DHDeclarableTests' in project 'DHDeclarable'
➜ Explicit dependency on target 'DHDeclarable' in project 'DHDeclarable'
Target 'DHDeclarable' in project 'DHDeclarable'
➜ Explicit dependency on target 'DHDeclarable' in project 'DHDeclarable'
Target 'DHDeclarable' in project 'DHDeclarable' (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
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld -version_details
Build description signature: c5457dac599f541b38da46414d90cdf5
Build description path: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCBuildData/c5457dac599f541b38da46414d90cdf5.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
SwiftDriver DHDeclarable normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DHDeclarable' from project 'DHDeclarable')
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 DHDeclarable -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/Objects-normal/arm64/DHDeclarable.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-ios12.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/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/Objects-normal/arm64/DHDeclarable-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/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/Objects-normal/arm64/DHDeclarable.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/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/Objects-normal/arm64/DHDeclarable_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/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarable.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/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/Objects-normal/arm64/DHDeclarable-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64 Compiling\ DHDLabel.swift,\ DHDScrollView.swift,\ DHDHStack.swift,\ DHDStack.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDLabel/DHDLabel.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDScrollView/DHDScrollView.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDStack/DHDHStack.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDStack/DHDStack.swift (in target 'DHDeclarable' from project 'DHDeclarable')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDLabel/DHDLabel.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDScrollView/DHDScrollView.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDStack/DHDHStack.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDStack/DHDStack.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ DHDVStack.swift,\ DHDView+divider.swift,\ DHDView+spacer.swift,\ DHDView.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDStack/DHDVStack.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDView/DHDView+divider.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDView/DHDView+spacer.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDView/DHDView.swift (in target 'DHDeclarable' from project 'DHDeclarable')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDStack/DHDVStack.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDView/DHDView+divider.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDView/DHDView+spacer.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDView/DHDView.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ DHDViewController.swift,\ DHDViewControllerContentRenderingMode.swift,\ DHDViewControlling.swift,\ DHDIdentifier.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDViewController/DHDViewController.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDViewController/DHDViewControllerContentRenderingMode.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDViewController/DHDViewControlling.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/DHDIdentifier.swift (in target 'DHDeclarable' from project 'DHDeclarable')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDViewController/DHDViewController.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDViewController/DHDViewControllerContentRenderingMode.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDViewController/DHDViewControlling.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/DHDIdentifier.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ DHDeclarable.swift,\ Collection+optional.swift,\ String+asLabel.swift,\ String+inQuotes.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/DHDeclarable.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/Collection+optional.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/String/String+asLabel.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/String/String+inQuotes.swift (in target 'DHDeclarable' from project 'DHDeclarable')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/DHDeclarable.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/Collection+optional.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/String/String+asLabel.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/String/String+inQuotes.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ UIKit+DHDStringRepresentable.swift,\ UILabel+Style.swift,\ UIStackView+Layout.swift,\ UIStackView+Rrecursive.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/UIKit/UIKit+DHDStringRepresentable.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/UIKit/UILabel/UILabel+Style.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/UIKit/UIStackView/UIStackView+Layout.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/UIKit/UIStackView/UIStackView+Rrecursive.swift (in target 'DHDeclarable' from project 'DHDeclarable')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/UIKit/UIKit+DHDStringRepresentable.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/UIKit/UILabel/UILabel+Style.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/UIKit/UIStackView/UIStackView+Layout.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/UIKit/UIStackView/UIStackView+Rrecursive.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ UIStackView+arrangedSubviewAtIndex.swift,\ UIStackView+forEach.swift,\ UIStackView+removeAllArrangedSubviews.swift,\ UIView+Divider.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/UIKit/UIStackView/UIStackView+arrangedSubviewAtIndex.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/UIKit/UIStackView/UIStackView+forEach.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/UIKit/UIStackView/UIStackView+removeAllArrangedSubviews.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/UIKit/UIView/UIView+Divider.swift (in target 'DHDeclarable' from project 'DHDeclarable')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/UIKit/UIStackView/UIStackView+arrangedSubviewAtIndex.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/UIKit/UIStackView/UIStackView+forEach.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/UIKit/UIStackView/UIStackView+removeAllArrangedSubviews.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/UIKit/UIView/UIView+Divider.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ UIView+Style.swift,\ UIView+as.swift,\ UIView+center.swift,\ UIView+declaredWithRedLines.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/UIKit/UIView/UIView+Style.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/UIKit/UIView/UIView+as.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/UIKit/UIView/UIView+center.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/UIKit/UIView/UIView+declaredWithRedLines.swift (in target 'DHDeclarable' from project 'DHDeclarable')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/UIKit/UIView/UIView+Style.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/UIKit/UIView/UIView+as.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/UIKit/UIView/UIView+center.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/UIKit/UIView/UIView+declaredWithRedLines.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ UIView+pin.swift,\ UIView+rounded.swift,\ UIView+tag.swift,\ UIViewController+as.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/UIKit/UIView/UIView+pin.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/UIKit/UIView/UIView+rounded.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/UIKit/UIView/UIView+tag.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/UIKit/UIViewController/UIViewController+as.swift (in target 'DHDeclarable' from project 'DHDeclarable')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/UIKit/UIView/UIView+pin.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/UIKit/UIView/UIView+rounded.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/UIKit/UIView/UIView+tag.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Extensions/UIKit/UIViewController/UIViewController+as.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ UIView+Preview.swift,\ UIViewController+Preview.swift,\ ResettableLazy.swift,\ DHDStringRepresentable.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Previews/UIView+Preview.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Previews/UIViewController+Preview.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/PropertyWrappers/ResettableLazy.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Protocols/DHDStringRepresentable.swift (in target 'DHDeclarable' from project 'DHDeclarable')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Previews/UIView+Preview.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Previews/UIViewController+Preview.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/PropertyWrappers/ResettableLazy.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Protocols/DHDStringRepresentable.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftEmitModule normal arm64 Emitting\ module\ for\ DHDeclarable (in target 'DHDeclarable' from project 'DHDeclarable')
EmitSwiftModule normal arm64 (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ DHDComponentable.swift,\ DHDStackViewComponent.swift,\ DHDViewComponent.swift,\ DHDTwoLabelRowComponent.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDComponent/BaseClasses/DHDComponentable.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDComponent/BaseClasses/DHDStackViewComponent.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDComponent/BaseClasses/DHDViewComponent.swift /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDComponent/DHDTwoLabelRowComponent.swift (in target 'DHDeclarable' from project 'DHDeclarable')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDComponent/BaseClasses/DHDComponentable.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDComponent/BaseClasses/DHDStackViewComponent.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDComponent/BaseClasses/DHDViewComponent.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/DHDeclarable/Classes/DHDComponent/DHDTwoLabelRowComponent.swift (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling DHDeclarable.swift, Collection+optional.swift, String+asLabel.swift, String+inQuotes.swift (in target 'DHDeclarable' from project 'DHDeclarable')
SwiftDriverJobDiscovery normal arm64 Compiling UIView+Preview.swift, UIViewController+Preview.swift, ResettableLazy.swift, DHDStringRepresentable.swift (in target 'DHDeclarable' from project 'DHDeclarable')
SwiftDriverJobDiscovery normal arm64 Compiling UIView+pin.swift, UIView+rounded.swift, UIView+tag.swift, UIViewController+as.swift (in target 'DHDeclarable' from project 'DHDeclarable')
SwiftDriverJobDiscovery normal arm64 Compiling UIView+Style.swift, UIView+as.swift, UIView+center.swift, UIView+declaredWithRedLines.swift (in target 'DHDeclarable' from project 'DHDeclarable')
SwiftDriverJobDiscovery normal arm64 Compiling DHDVStack.swift, DHDView+divider.swift, DHDView+spacer.swift, DHDView.swift (in target 'DHDeclarable' from project 'DHDeclarable')
SwiftDriverJobDiscovery normal arm64 Compiling UIStackView+arrangedSubviewAtIndex.swift, UIStackView+forEach.swift, UIStackView+removeAllArrangedSubviews.swift, UIView+Divider.swift (in target 'DHDeclarable' from project 'DHDeclarable')
SwiftDriverJobDiscovery normal arm64 Emitting module for DHDeclarable (in target 'DHDeclarable' from project 'DHDeclarable')
SwiftDriver\ Compilation\ Requirements DHDeclarable normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DHDeclarable' from project 'DHDeclarable')
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 DHDeclarable -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/Objects-normal/arm64/DHDeclarable.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-ios12.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/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/Objects-normal/arm64/DHDeclarable-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/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/Objects-normal/arm64/DHDeclarable.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/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/Objects-normal/arm64/DHDeclarable_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/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarable.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/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/Objects-normal/arm64/DHDeclarable-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarable.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/Objects-normal/arm64/DHDeclarable.swiftmodule (in target 'DHDeclarable' from project 'DHDeclarable')
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/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/Objects-normal/arm64/DHDeclarable.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarable.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarable.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/Objects-normal/arm64/DHDeclarable.abi.json (in target 'DHDeclarable' from project 'DHDeclarable')
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/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/Objects-normal/arm64/DHDeclarable.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarable.swiftmodule/arm64-apple-ios.abi.json
SwiftDriver DHDeclarableTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DHDeclarableTests' from project 'DHDeclarable')
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 DHDeclarableTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/Objects-normal/arm64/DHDeclarableTests.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-ios13.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/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/Objects-normal/arm64/DHDeclarableTests-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/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/Objects-normal/arm64/DHDeclarableTests.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/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/Objects-normal/arm64/DHDeclarableTests_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/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.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 DHDViewController.swift, DHDViewControllerContentRenderingMode.swift, DHDViewControlling.swift, DHDIdentifier.swift (in target 'DHDeclarable' from project 'DHDeclarable')
SwiftCompile normal arm64 Compiling\ DHDStackTests.swift,\ DHDViewControllerTests.swift,\ DHDViewTests.swift /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewTests/DHDViewTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDStackTests/DHDStackTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDViewTests/DHDViewTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ DHDTwoLabelRowComponentTests.swift,\ DHDLabelTests.swift,\ DHDScrollViewTests.swift /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHComponentTests/DHDTwoLabelRowComponentTests.swift /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDLabelTests/DHDLabelTests.swift /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDScrollViewTests/DHDScrollViewTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHComponentTests/DHDTwoLabelRowComponentTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDLabelTests/DHDLabelTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ClassTests/DHDScrollViewTests/DHDScrollViewTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ PreviewTests.swift,\ ResettableLazyTests.swift /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/PreviewTests/PreviewTests.swift /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/PropertyWrapperTests/ResettableLazyTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/PreviewTests/PreviewTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/PropertyWrapperTests/ResettableLazyTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ UIView+roundedTests.swift,\ UIView+tagTests.swift /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/UIKitTests/UIViewTests/UIView+roundedTests.swift /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/UIKitTests/UIViewTests/UIView+tagTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/UIKitTests/UIViewTests/UIView+roundedTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/UIKitTests/UIViewTests/UIView+tagTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ UIView+addDividerTests.swift,\ UIView+centerTests.swift,\ UIView+declaredWithRedLinesTests.swift /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/UIKitTests/UIViewTests/UIView+addDividerTests.swift /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/UIKitTests/UIViewTests/UIView+centerTests.swift /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/UIKitTests/UIViewTests/UIView+declaredWithRedLinesTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/UIKitTests/UIViewTests/UIView+addDividerTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/UIKitTests/UIViewTests/UIView+centerTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/UIKitTests/UIViewTests/UIView+declaredWithRedLinesTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftEmitModule normal arm64 Emitting\ module\ for\ DHDeclarableTests (in target 'DHDeclarableTests' from project 'DHDeclarable')
EmitSwiftModule normal arm64 (in target 'DHDeclarableTests' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ String+asLabelTests.swift,\ String+inQuotesTests.swift,\ UIKit+DHDStringRepresentableTests.swift /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/StringTests/String+asLabelTests.swift /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/StringTests/String+inQuotesTests.swift /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/UIKitTests/UIKit+DHDStringRepresentableTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/StringTests/String+asLabelTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/StringTests/String+inQuotesTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/UIKitTests/UIKit+DHDStringRepresentableTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ UIStackView+removeAllArrangedSubviewsTests.swift,\ UIViewController+asTests.swift,\ UIView+StyleTests.swift /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/UIKitTests/UIStackViewTests/UIStackView+removeAllArrangedSubviewsTests.swift /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/UIKitTests/UIViewControllerTests/UIViewController+asTests.swift /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/UIKitTests/UIViewTests/UIView+StyleTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/UIKitTests/UIStackViewTests/UIStackView+removeAllArrangedSubviewsTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/UIKitTests/UIViewControllerTests/UIViewController+asTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/UIKitTests/UIViewTests/UIView+StyleTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling UIKit+DHDStringRepresentable.swift, UILabel+Style.swift, UIStackView+Layout.swift, UIStackView+Rrecursive.swift (in target 'DHDeclarable' from project 'DHDeclarable')
SwiftCompile normal arm64 Compiling\ DHDeclarable+ValueTypeTests.swift,\ DHDeclarable+declaredIfTests.swift,\ Collection+optionalTests.swift /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/DHDeclarable+ValueTypeTests.swift /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/DHDeclarable+declaredIfTests.swift /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/Collection+optionalTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/DHDeclarable+ValueTypeTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/DHDeclarable+declaredIfTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/Collection+optionalTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling DHDLabel.swift, DHDScrollView.swift, DHDHStack.swift, DHDStack.swift (in target 'DHDeclarable' from project 'DHDeclarable')
SwiftCompile normal arm64 Compiling\ UILabel+StyleTests.swift,\ UIStackView+AxisTests.swift,\ UIStackView+LayoutTests.swift /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/UIKitTests/UILabelTests/UILabel+StyleTests.swift /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/UIKitTests/UIStackViewTests/UIStackView+AxisTests.swift /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/UIKitTests/UIStackViewTests/UIStackView+LayoutTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/UIKitTests/UILabelTests/UILabel+StyleTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/UIKitTests/UIStackViewTests/UIStackView+AxisTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/UIKitTests/UIStackViewTests/UIStackView+LayoutTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling DHDComponentable.swift, DHDStackViewComponent.swift, DHDViewComponent.swift, DHDTwoLabelRowComponent.swift (in target 'DHDeclarable' from project 'DHDeclarable')
SwiftCompile normal arm64 Compiling\ UIStackView+RecursiveTests.swift,\ UIStackView+arrangedSubviewAtIndexTests.swift,\ UIStackView+hierarchyTests.swift /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/UIKitTests/UIStackViewTests/UIStackView+RecursiveTests.swift /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/UIKitTests/UIStackViewTests/UIStackView+arrangedSubviewAtIndexTests.swift /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/UIKitTests/UIStackViewTests/UIStackView+hierarchyTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/UIKitTests/UIStackViewTests/UIStackView+RecursiveTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/UIKitTests/UIStackViewTests/UIStackView+arrangedSubviewAtIndexTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/DHDeclarableTests/ExtensionTests/UIKitTests/UIStackViewTests/UIStackView+hierarchyTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling UIView+roundedTests.swift, UIView+tagTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
SwiftDriverJobDiscovery normal arm64 Compiling PreviewTests.swift, ResettableLazyTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
SwiftDriver\ Compilation DHDeclarable normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DHDeclarable' from project 'DHDeclarable')
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 DHDeclarable -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/Objects-normal/arm64/DHDeclarable.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-ios12.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/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/Objects-normal/arm64/DHDeclarable-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/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/Objects-normal/arm64/DHDeclarable.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/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/Objects-normal/arm64/DHDeclarable_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/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarable.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/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/Objects-normal/arm64/DHDeclarable-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarable.o normal (in target 'DHDeclarable' from project 'DHDeclarable')
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-ios12.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/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/Objects-normal/arm64/DHDeclarable.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/Objects-normal/arm64/DHDeclarable_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/Objects-normal/arm64/DHDeclarable_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/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/Objects-normal/arm64/DHDeclarable.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarable.o
SwiftDriverJobDiscovery normal arm64 Compiling String+asLabelTests.swift, String+inQuotesTests.swift, UIKit+DHDStringRepresentableTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
SwiftDriverJobDiscovery normal arm64 Emitting module for DHDeclarableTests (in target 'DHDeclarableTests' from project 'DHDeclarable')
SwiftDriver\ Compilation\ Requirements DHDeclarableTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DHDeclarableTests' from project 'DHDeclarable')
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 DHDeclarableTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/Objects-normal/arm64/DHDeclarableTests.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-ios13.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/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/Objects-normal/arm64/DHDeclarableTests-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/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/Objects-normal/arm64/DHDeclarableTests.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/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/Objects-normal/arm64/DHDeclarableTests_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/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.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/DHDeclarableTests.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/Objects-normal/arm64/DHDeclarableTests.swiftmodule (in target 'DHDeclarableTests' from project 'DHDeclarable')
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/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/Objects-normal/arm64/DHDeclarableTests.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarableTests.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarableTests.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/Objects-normal/arm64/DHDeclarableTests.swiftdoc (in target 'DHDeclarableTests' from project 'DHDeclarable')
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/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/Objects-normal/arm64/DHDeclarableTests.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarableTests.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarableTests.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/Objects-normal/arm64/DHDeclarableTests.abi.json (in target 'DHDeclarableTests' from project 'DHDeclarable')
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/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/Objects-normal/arm64/DHDeclarableTests.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarableTests.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarableTests.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/Objects-normal/arm64/DHDeclarableTests.swiftsourceinfo (in target 'DHDeclarableTests' from project 'DHDeclarable')
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/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/Objects-normal/arm64/DHDeclarableTests.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarableTests.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling UIView+addDividerTests.swift, UIView+centerTests.swift, UIView+declaredWithRedLinesTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
SwiftDriverJobDiscovery normal arm64 Compiling UIStackView+removeAllArrangedSubviewsTests.swift, UIViewController+asTests.swift, UIView+StyleTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
ExtractAppIntentsMetadata (in target 'DHDeclarable' from project 'DHDeclarable')
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 DHDeclarable --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 12.0 --bundle-identifier spi-builder-workspace.DHDeclarable --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarable.appintents --target-triple arm64-apple-ios12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarable.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/Objects-normal/arm64/DHDeclarable_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/Objects-normal/arm64/DHDeclarable.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/DHDeclarable.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/DHDeclarable.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/Objects-normal/arm64/DHDeclarable.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-26 19:28:00.694 appintentsmetadataprocessor[1614:8661] Starting appintentsmetadataprocessor export
2025-04-26 19:28:00.736 appintentsmetadataprocessor[1614:8661] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling DHDeclarable+ValueTypeTests.swift, DHDeclarable+declaredIfTests.swift, Collection+optionalTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
SwiftDriverJobDiscovery normal arm64 Compiling DHDStackTests.swift, DHDViewControllerTests.swift, DHDViewTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
SwiftDriverJobDiscovery normal arm64 Compiling DHDTwoLabelRowComponentTests.swift, DHDLabelTests.swift, DHDScrollViewTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarable.o (in target 'DHDeclarable' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarable.o
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarableTests.xctest/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/empty-DHDeclarableTests.plist (in target 'DHDeclarableTests' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace
builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/empty-DHDeclarableTests.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/DHDeclarableTests.xctest/Info.plist
SwiftDriverJobDiscovery normal arm64 Compiling UILabel+StyleTests.swift, UIStackView+AxisTests.swift, UIStackView+LayoutTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
SwiftDriverJobDiscovery normal arm64 Compiling UIStackView+RecursiveTests.swift, UIStackView+arrangedSubviewAtIndexTests.swift, UIStackView+hierarchyTests.swift (in target 'DHDeclarableTests' from project 'DHDeclarable')
SwiftDriver\ Compilation DHDeclarableTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'DHDeclarableTests' from project 'DHDeclarable')
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 DHDeclarableTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/Objects-normal/arm64/DHDeclarableTests.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-ios13.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/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/Objects-normal/arm64/DHDeclarableTests-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/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/Objects-normal/arm64/DHDeclarableTests.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/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/Objects-normal/arm64/DHDeclarableTests_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/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.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/DHDeclarableTests.xctest/DHDeclarableTests normal (in target 'DHDeclarableTests' from project 'DHDeclarable')
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-ios13.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/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/Objects-normal/arm64/DHDeclarableTests.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/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/Objects-normal/arm64/DHDeclarableTests_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/Objects-normal/arm64/DHDeclarableTests_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/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/Objects-normal/arm64/DHDeclarableTests.swiftmodule -Wl,-no_warn_duplicate_libraries -framework XCTest -lXCTestSwiftSupport -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarableTests.xctest/DHDeclarableTests -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarable.build/Objects-normal/arm64/DHDeclarable.swiftmodule
CopySwiftLibs /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarableTests.xctest (in target 'DHDeclarableTests' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftStdLibTool --copy --verbose --scan-executable /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarableTests.xctest/DHDeclarableTests --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarableTests.xctest/Frameworks --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarableTests.xctest/PlugIns --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarableTests.xctest/SystemExtensions --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarableTests.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/DHDeclarableTests.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/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.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/DHDeclarableTests.xctest/Frameworks/libswift_Concurrency.dylib
ExtractAppIntentsMetadata (in target 'DHDeclarableTests' from project 'DHDeclarable')
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 DHDeclarableTests --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 13.0 --bundle-identifier spi-builder-workspace.DHDeclarableTests --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarableTests.xctest --target-triple arm64-apple-ios13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarableTests.xctest/DHDeclarableTests --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/Objects-normal/arm64/DHDeclarableTests_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/Objects-normal/arm64/DHDeclarableTests.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/DHDeclarableTests.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/DHDeclarableTests.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/Objects-normal/arm64/DHDeclarableTests.SwiftConstValuesFileList --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-26 19:28:01.130 appintentsmetadataprocessor[1617:8697] Starting appintentsmetadataprocessor export
2025-04-26 19:28:01.133 appintentsmetadataprocessor[1617:8697] warning: Metadata extraction skipped. No AppIntents.framework dependency found.
GenerateDSYMFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarableTests.xctest.dSYM /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarableTests.xctest/DHDeclarableTests (in target 'DHDeclarableTests' from project 'DHDeclarable')
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/DHDeclarableTests.xctest/DHDeclarableTests -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarableTests.xctest.dSYM
AppIntentsSSUTraining (in target 'DHDeclarableTests' from project 'DHDeclarable')
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/DHDeclarableTests.xctest/Info.plist --temp-dir-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/ssu --bundle-id spi-builder-workspace.DHDeclarableTests --product-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarableTests.xctest --extracted-metadata-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarableTests.xctest/Metadata.appintents --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DHDeclarable.build/Debug-iphoneos/DHDeclarableTests.build/DHDeclarableTests.DependencyMetadataFileList --archive-ssu-assets
2025-04-26 19:28:01.161 appintentsnltrainingprocessor[1619:8699] Parsing options for appintentsnltrainingprocessor
2025-04-26 19:28:01.162 appintentsnltrainingprocessor[1619:8699] No AppShortcuts found - Skipping.
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarableTests.xctest (in target 'DHDeclarableTests' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarableTests.xctest
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarableTests.xctest (in target 'DHDeclarableTests' from project 'DHDeclarable')
cd /Users/admin/builder/spi-builder-workspace
/usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/DHDeclarableTests.xctest
** BUILD SUCCEEDED **
Build complete.
{
"dependencies" : [
{
"identity" : "komondor",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/shibapm/Komondor.git"
}
],
"manifest_display_name" : "DHDeclarable",
"name" : "DHDeclarable",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "12.0"
}
],
"products" : [
{
"name" : "DHDeclarable",
"targets" : [
"DHDeclarable"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "DHDeclarableTests",
"module_type" : "SwiftTarget",
"name" : "DHDeclarableTests",
"path" : "Tests/DHDeclarableTests",
"sources" : [
"ClassTests/DHComponentTests/DHDTwoLabelRowComponentTests.swift",
"ClassTests/DHDLabelTests/DHDLabelTests.swift",
"ClassTests/DHDScrollViewTests/DHDScrollViewTests.swift",
"ClassTests/DHDStackTests/DHDStackTests.swift",
"ClassTests/DHDViewControllerTests/DHDViewControllerTests.swift",
"ClassTests/DHDViewTests/DHDViewTests.swift",
"DHDeclarable+ValueTypeTests.swift",
"DHDeclarable+declaredIfTests.swift",
"ExtensionTests/Collection+optionalTests.swift",
"ExtensionTests/StringTests/String+asLabelTests.swift",
"ExtensionTests/StringTests/String+inQuotesTests.swift",
"ExtensionTests/UIKitTests/UIKit+DHDStringRepresentableTests.swift",
"ExtensionTests/UIKitTests/UILabelTests/UILabel+StyleTests.swift",
"ExtensionTests/UIKitTests/UIStackViewTests/UIStackView+AxisTests.swift",
"ExtensionTests/UIKitTests/UIStackViewTests/UIStackView+LayoutTests.swift",
"ExtensionTests/UIKitTests/UIStackViewTests/UIStackView+RecursiveTests.swift",
"ExtensionTests/UIKitTests/UIStackViewTests/UIStackView+arrangedSubviewAtIndexTests.swift",
"ExtensionTests/UIKitTests/UIStackViewTests/UIStackView+hierarchyTests.swift",
"ExtensionTests/UIKitTests/UIStackViewTests/UIStackView+removeAllArrangedSubviewsTests.swift",
"ExtensionTests/UIKitTests/UIViewControllerTests/UIViewController+asTests.swift",
"ExtensionTests/UIKitTests/UIViewTests/UIView+StyleTests.swift",
"ExtensionTests/UIKitTests/UIViewTests/UIView+addDividerTests.swift",
"ExtensionTests/UIKitTests/UIViewTests/UIView+centerTests.swift",
"ExtensionTests/UIKitTests/UIViewTests/UIView+declaredWithRedLinesTests.swift",
"ExtensionTests/UIKitTests/UIViewTests/UIView+roundedTests.swift",
"ExtensionTests/UIKitTests/UIViewTests/UIView+tagTests.swift",
"PreviewTests/PreviewTests.swift",
"PropertyWrapperTests/ResettableLazyTests.swift"
],
"target_dependencies" : [
"DHDeclarable"
],
"type" : "test"
},
{
"c99name" : "DHDeclarable",
"module_type" : "SwiftTarget",
"name" : "DHDeclarable",
"path" : "Sources/DHDeclarable",
"product_memberships" : [
"DHDeclarable"
],
"sources" : [
"Classes/DHDComponent/BaseClasses/DHDComponentable.swift",
"Classes/DHDComponent/BaseClasses/DHDStackViewComponent.swift",
"Classes/DHDComponent/BaseClasses/DHDViewComponent.swift",
"Classes/DHDComponent/DHDTwoLabelRowComponent.swift",
"Classes/DHDLabel/DHDLabel.swift",
"Classes/DHDScrollView/DHDScrollView.swift",
"Classes/DHDStack/DHDHStack.swift",
"Classes/DHDStack/DHDStack.swift",
"Classes/DHDStack/DHDVStack.swift",
"Classes/DHDView/DHDView+divider.swift",
"Classes/DHDView/DHDView+spacer.swift",
"Classes/DHDView/DHDView.swift",
"Classes/DHDViewController/DHDViewController.swift",
"Classes/DHDViewController/DHDViewControllerContentRenderingMode.swift",
"Classes/DHDViewController/DHDViewControlling.swift",
"DHDIdentifier.swift",
"DHDeclarable.swift",
"Extensions/Collection+optional.swift",
"Extensions/String/String+asLabel.swift",
"Extensions/String/String+inQuotes.swift",
"Extensions/UIKit/UIKit+DHDStringRepresentable.swift",
"Extensions/UIKit/UILabel/UILabel+Style.swift",
"Extensions/UIKit/UIStackView/UIStackView+Layout.swift",
"Extensions/UIKit/UIStackView/UIStackView+Rrecursive.swift",
"Extensions/UIKit/UIStackView/UIStackView+arrangedSubviewAtIndex.swift",
"Extensions/UIKit/UIStackView/UIStackView+forEach.swift",
"Extensions/UIKit/UIStackView/UIStackView+removeAllArrangedSubviews.swift",
"Extensions/UIKit/UIView/UIView+Divider.swift",
"Extensions/UIKit/UIView/UIView+Style.swift",
"Extensions/UIKit/UIView/UIView+as.swift",
"Extensions/UIKit/UIView/UIView+center.swift",
"Extensions/UIKit/UIView/UIView+declaredWithRedLines.swift",
"Extensions/UIKit/UIView/UIView+pin.swift",
"Extensions/UIKit/UIView/UIView+rounded.swift",
"Extensions/UIKit/UIView/UIView+tag.swift",
"Extensions/UIKit/UIViewController/UIViewController+as.swift",
"Previews/UIView+Preview.swift",
"Previews/UIViewController+Preview.swift",
"PropertyWrappers/ResettableLazy.swift",
"Protocols/DHDStringRepresentable.swift"
],
"type" : "library"
}
],
"tools_version" : "5.0"
}
Done.