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

The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Failed to build XCTHealthKit with Swift 6.0 for macOS (Xcode) using Xcode 16.0.

Build Command

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

Build Log

                                           ^
XCTest.XCUIElementQuery:24:21: note: subscript declared here
    @MainActor open subscript(key: String) -> XCUIElement { get }
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:117:37: warning: main actor-isolated property 'buttons' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
                if healthApp.tables.buttons["Next"].waitForExistence(timeout: 5) {
                                    ^
XCTest.XCUIElementQuery:58:25: note: property declared here
    @NSCopying open var buttons: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:117:30: warning: main actor-isolated property 'tables' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
                if healthApp.tables.buttons["Next"].waitForExistence(timeout: 5) {
                             ^
XCTest.XCUIElement:58:25: note: property declared here
    @NSCopying open var tables: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:118:54: warning: call to main actor-isolated instance method 'tap()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                    healthApp.tables.buttons["Next"].tap()
                                                     ^
XCTest.XCUIElement:2:26: note: calls to instance method 'tap()' from outside of its actor context are implicitly asynchronous
    @MainActor open func tap()
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:118:45: warning: main actor-isolated subscript 'subscript(_:)' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
                    healthApp.tables.buttons["Next"].tap()
                                            ^
XCTest.XCUIElementQuery:24:21: note: subscript declared here
    @MainActor open subscript(key: String) -> XCUIElement { get }
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:118:38: warning: main actor-isolated property 'buttons' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
                    healthApp.tables.buttons["Next"].tap()
                                     ^
XCTest.XCUIElementQuery:58:25: note: property declared here
    @NSCopying open var buttons: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:118:31: warning: main actor-isolated property 'tables' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
                    healthApp.tables.buttons["Next"].tap()
                              ^
XCTest.XCUIElement:58:25: note: property declared here
    @NSCopying open var tables: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:122:55: warning: call to main actor-isolated instance method 'waitForExistence(timeout:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                if !healthApp.staticTexts["Continue"].waitForExistence(timeout: 60) {
                                                      ^
XCTest.XCUIElement:7:26: note: calls to instance method 'waitForExistence(timeout:)' from outside of its actor context are implicitly asynchronous
    @MainActor open func waitForExistence(timeout: TimeInterval) -> Bool
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:122:42: warning: main actor-isolated subscript 'subscript(_:)' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
                if !healthApp.staticTexts["Continue"].waitForExistence(timeout: 60) {
                                         ^
XCTest.XCUIElementQuery:24:21: note: subscript declared here
    @MainActor open subscript(key: String) -> XCUIElement { get }
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:122:31: warning: main actor-isolated property 'staticTexts' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
                if !healthApp.staticTexts["Continue"].waitForExistence(timeout: 60) {
                              ^
XCTest.XCUIElement:81:25: note: property declared here
    @NSCopying open var staticTexts: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:127:31: warning: call to main actor-isolated instance method 'terminate()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                    healthApp.terminate()
                              ^
XCTest.XCUIApplication:16:26: note: calls to instance method 'terminate()' from outside of its actor context are implicitly asynchronous
    @MainActor open func terminate()
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:128:31: warning: call to main actor-isolated instance method 'activate()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                    healthApp.activate()
                              ^
XCTest.XCUIApplication:15:26: note: calls to instance method 'activate()' from outside of its actor context are implicitly asynchronous
    @MainActor open func activate()
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:135:51: warning: main actor-isolated property 'firstMatch' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
            let trendsSwitch = healthApp.switches.firstMatch
                                                  ^
XCTest.XCUIElementQuery:133:14: note: property declared here
    open var firstMatch: XCUIElement { get }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:135:42: warning: main actor-isolated property 'switches' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
            let trendsSwitch = healthApp.switches.firstMatch
                                         ^
XCTest.XCUIElement:73:25: note: property declared here
    @NSCopying open var switches: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:136:29: warning: call to main actor-isolated instance method 'waitForExistence(timeout:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            if trendsSwitch.waitForExistence(timeout: 5) && trendsSwitch.isHittable {
                            ^
XCTest.XCUIElement:7:26: note: calls to instance method 'waitForExistence(timeout:)' from outside of its actor context are implicitly asynchronous
    @MainActor open func waitForExistence(timeout: TimeInterval) -> Bool
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:136:74: warning: main actor-isolated property 'isHittable' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
            if trendsSwitch.waitForExistence(timeout: 5) && trendsSwitch.isHittable {
                                                                         ^
XCTest.XCUIElement:10:14: note: property declared here
    open var isHittable: Bool { get }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:137:30: warning: call to main actor-isolated instance method 'tap()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                trendsSwitch.tap()
                             ^
XCTest.XCUIElement:2:26: note: calls to instance method 'tap()' from outside of its actor context are implicitly asynchronous
    @MainActor open func tap()
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:140:61: warning: call to main actor-isolated instance method 'waitForExistence(timeout:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            XCTAssertTrue(healthApp.staticTexts["Continue"].waitForExistence(timeout: 5))
                                                            ^
XCTest.XCUIElement:7:26: note: calls to instance method 'waitForExistence(timeout:)' from outside of its actor context are implicitly asynchronous
    @MainActor open func waitForExistence(timeout: TimeInterval) -> Bool
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:140:48: warning: main actor-isolated subscript 'subscript(_:)' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertTrue(healthApp.staticTexts["Continue"].waitForExistence(timeout: 5))
                                               ^
XCTest.XCUIElementQuery:24:21: note: subscript declared here
    @MainActor open subscript(key: String) -> XCUIElement { get }
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:140:37: warning: main actor-isolated property 'staticTexts' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertTrue(healthApp.staticTexts["Continue"].waitForExistence(timeout: 5))
                                    ^
XCTest.XCUIElement:81:25: note: property declared here
    @NSCopying open var staticTexts: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:141:47: warning: call to main actor-isolated instance method 'tap()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            healthApp.staticTexts["Continue"].tap()
                                              ^
XCTest.XCUIElement:2:26: note: calls to instance method 'tap()' from outside of its actor context are implicitly asynchronous
    @MainActor open func tap()
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:141:34: warning: main actor-isolated subscript 'subscript(_:)' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
            healthApp.staticTexts["Continue"].tap()
                                 ^
XCTest.XCUIElementQuery:24:21: note: subscript declared here
    @MainActor open subscript(key: String) -> XCUIElement { get }
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:141:23: warning: main actor-isolated property 'staticTexts' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
            healthApp.staticTexts["Continue"].tap()
                      ^
XCTest.XCUIElement:81:25: note: property declared here
    @NSCopying open var staticTexts: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
SwiftCompile normal arm64 Compiling\ HealthAppDataType.swift /Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/HealthAppDataType.swift (in target 'XCTHealthKit' from project 'XCTHealthKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/HealthAppDataType.swift /Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift /Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCUIApplication+HealthAccess.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/HealthAppDataType.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/HealthAppDataType.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/HealthAppDataType.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/HealthAppDataType.dia -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTHealthKit_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name XCTHealthKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/HealthAppDataType.o -index-unit-output-path /XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/HealthAppDataType.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/HealthAppDataType.swift (in target 'XCTHealthKit' from project 'XCTHealthKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/HealthAppDataType.swift /Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift /Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCUIApplication+HealthAccess.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/HealthAppDataType.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/HealthAppDataType.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/HealthAppDataType.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/HealthAppDataType.dia -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTHealthKit_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name XCTHealthKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/HealthAppDataType.o -index-unit-output-path /XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/HealthAppDataType.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftDriverJobDiscovery normal arm64 Emitting module for XCTHealthKit (in target 'XCTHealthKit' from project 'XCTHealthKit')
SwiftDriver\ Compilation\ Requirements XCTHealthKit normal arm64 com.apple.xcode.tools.swift.compiler (in target 'XCTHealthKit' from project 'XCTHealthKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name XCTHealthKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTHealthKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -target arm64-apple-macos10.13 -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 -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTHealthKit-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/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTHealthKit.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/XCTHealthKit.build/Debug/XCTHealthKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTHealthKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.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/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTHealthKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/XCTHealthKit-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTHealthKit-Swift.h (in target 'XCTHealthKit' from project 'XCTHealthKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTHealthKit-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps/XCTHealthKit-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/XCTHealthKit.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTHealthKit.abi.json (in target 'XCTHealthKit' from project 'XCTHealthKit')
    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/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTHealthKit.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/XCTHealthKit.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/XCTHealthKit.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTHealthKit.swiftdoc (in target 'XCTHealthKit' from project 'XCTHealthKit')
    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/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTHealthKit.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/XCTHealthKit.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/XCTHealthKit.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTHealthKit.swiftmodule (in target 'XCTHealthKit' from project 'XCTHealthKit')
    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/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTHealthKit.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/XCTHealthKit.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/XCTHealthKit.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTHealthKit.swiftsourceinfo (in target 'XCTHealthKit' from project 'XCTHealthKit')
    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/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTHealthKit.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/XCTHealthKit.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling XCUIApplication+HealthAccess.swift (in target 'XCTHealthKit' from project 'XCTHealthKit')
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'XCTHealthKit' from project 'XCTHealthKit')
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, id:0000FE00-8C151E3703BE51BE, name:My Mac }
{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:0000FE00-8C151E3703BE51BE, name:My Mac }
{ platform:macOS, arch:arm64, variant:DriverKit, id:0000FE00-8C151E3703BE51BE, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:0000FE00-8C151E3703BE51BE, name:My Mac }
{ platform:tvOS Simulator, id:8B1ABE64-0401-443E-812F-247A4FBB5BDB, OS:17.4, name:Apple TV }
{ platform:tvOS Simulator, id:1CFD7C1E-15D0-43C5-AF27-909F7506EEF8, OS:17.4, name:Apple TV 4K (3rd generation) }
{ platform:tvOS Simulator, id:2F8EA46A-629D-4072-B00C-F903D55C3177, OS:17.4, name:Apple TV 4K (3rd generation) (at 1080p) }
{ platform:visionOS Simulator, id:91219D42-BD52-4AED-96DD-B55E31EB00BB, OS:1.1, name:Apple Vision Pro }
{ platform:watchOS Simulator, id:DE04AC0A-986B-4FBA-9496-F35677425C97, OS:10.4, name:Apple Watch SE (40mm) (2nd generation) }
{ platform:watchOS Simulator, id:4BE5427F-5FC7-449C-B254-3F404CE79B2F, OS:10.4, name:Apple Watch SE (44mm) (2nd generation) }
{ platform:watchOS Simulator, id:B1E30F2A-196D-43FB-B903-C3CF777EDD8E, OS:10.4, name:Apple Watch Series 5 (40mm) }
{ platform:watchOS Simulator, id:2F36C8D1-FB3D-4D85-A931-07B6EFBD4E4F, OS:10.4, name:Apple Watch Series 5 (44mm) }
{ platform:watchOS Simulator, id:CF595720-5AAE-408E-8353-1C54D9068D3E, OS:10.4, name:Apple Watch Series 6 (40mm) }
{ platform:watchOS Simulator, id:8F6954D5-8415-4A06-8701-3C7F4ACB2488, OS:10.4, name:Apple Watch Series 6 (44mm) }
{ platform:watchOS Simulator, id:F60A3AB2-C846-4E63-9A50-5E6DBD6A2777, OS:10.4, name:Apple Watch Series 7 (41mm) }
{ platform:watchOS Simulator, id:F72F2121-983A-4C32-A0D4-0C7BA61073C9, OS:10.4, name:Apple Watch Series 7 (45mm) }
{ platform:watchOS Simulator, id:86A5CFD7-08C3-40A4-B2A6-2F3A8CB8BDA5, OS:10.4, name:Apple Watch Series 9 (41mm) }
{ platform:watchOS Simulator, id:B22A08B0-18B6-43BC-94F1-5C2F83724B73, OS:10.4, name:Apple Watch Series 9 (45mm) }
{ platform:watchOS Simulator, id:797FC64C-7930-4151-8822-6349FA58EFA0, OS:10.4, name:Apple Watch Ultra 2 (49mm) }
{ platform:iOS Simulator, id:80B3B926-14C6-407B-AD45-937DD9D118A2, OS:17.4, name:iPad (10th generation) }
{ platform:iOS Simulator, id:DCA453EF-4DA0-4BCB-9EDB-B627F480EC88, OS:17.4, name:iPad Air (5th generation) }
{ platform:iOS Simulator, id:1DD2445B-C99B-432E-99AB-F239A53F76A7, OS:17.4, name:iPad Pro (11-inch) (4th generation) }
{ platform:iOS Simulator, id:63A2100A-3ABC-479B-927E-0927E96A78B0, OS:17.4, name:iPad Pro (12.9-inch) (6th generation) }
{ platform:iOS Simulator, id:182006EF-3CD1-439B-B898-2FF003963B39, OS:17.4, name:iPad mini (6th generation) }
{ platform:iOS Simulator, id:E86EA00F-56E9-4BD5-BE25-B4AE5E09CD43, OS:17.4, name:iPhone 15 }
{ platform:iOS Simulator, id:724EDFB5-2285-4CCF-A274-5CEAC57CE7ED, OS:17.4, name:iPhone 15 Plus }
{ platform:iOS Simulator, id:FA8EB545-B4CA-4062-86F4-C39DEAD04F1E, OS:17.4, name:iPhone 15 Pro }
{ platform:iOS Simulator, id:4C84A4B0-ABA2-4072-B35C-2EF2B0D49AA7, OS:17.4, name:iPhone 15 Pro Max }
{ platform:iOS Simulator, id:82B3845C-C246-4FEC-B1FB-D4892A314D10, OS:17.4, name:iPhone SE (3rd generation) }
** BUILD FAILED **
The following build commands failed:
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift (in target 'XCTHealthKit' from project 'XCTHealthKit')
	SwiftCompile normal arm64 Compiling\ XCTestCase+HealthApp.swift /Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift (in target 'XCTHealthKit' from project 'XCTHealthKit')
(2 failures)
Command line invocation:
    /Applications/Xcode-15.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath /Users/admin/builder/spi-builder-workspace/.derivedData build -scheme XCTHealthKit -destination platform=macos,arch=arm64 "OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete"
User defaults from command line:
    IDEClonedSourcePackagesDirPathOverride = /Users/admin/builder/spi-builder-workspace/.dependencies
    IDEDerivedDataPathOverride = /Users/admin/builder/spi-builder-workspace/.derivedData
    IDEPackageSupportToolchainOverrideForManifestLoading = org.swift.600202405261a
    IDEPackageSupportUseBuiltinSCM = YES
Build settings from command line:
    OTHER_SWIFT_FLAGS = -stats-output-dir .stats -strict-concurrency=complete
    TOOLCHAINS = org.swift.600202405261a
Resolve Package Graph
Resolved source packages:
  XCTHealthKit: /Users/admin/builder/spi-builder-workspace
Prepare packages
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (2 targets)
    Target 'XCTHealthKit' in project 'XCTHealthKit'
        ➜ Explicit dependency on target 'XCTHealthKit' in project 'XCTHealthKit'
    Target 'XCTHealthKit' in project 'XCTHealthKit' (no dependencies)
GatherProvisioningInputs
CreateBuildDescription
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'.
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'XCTHealthKit' from project 'XCTHealthKit')
SwiftDriver XCTHealthKit normal arm64 com.apple.xcode.tools.swift.compiler (in target 'XCTHealthKit' from project 'XCTHealthKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-SwiftDriver -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swiftc -module-name XCTHealthKit -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTHealthKit.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -target arm64-apple-macos10.13 -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 -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTHealthKit-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/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTHealthKit.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/XCTHealthKit.build/Debug/XCTHealthKit.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTHealthKit_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.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/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTHealthKit-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64 Compiling\ HealthAppDataType.swift /Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/HealthAppDataType.swift (in target 'XCTHealthKit' from project 'XCTHealthKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/HealthAppDataType.swift /Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift /Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCUIApplication+HealthAccess.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/HealthAppDataType.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/HealthAppDataType.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/HealthAppDataType.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/HealthAppDataType.dia -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTHealthKit_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name XCTHealthKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/HealthAppDataType.o -index-unit-output-path /XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/HealthAppDataType.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/HealthAppDataType.swift (in target 'XCTHealthKit' from project 'XCTHealthKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c -primary-file /Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/HealthAppDataType.swift /Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift /Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCUIApplication+HealthAccess.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/HealthAppDataType.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/HealthAppDataType.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/HealthAppDataType.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/HealthAppDataType.dia -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTHealthKit_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name XCTHealthKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/HealthAppDataType.o -index-unit-output-path /XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/HealthAppDataType.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftEmitModule normal arm64 Emitting\ module\ for\ XCTHealthKit (in target 'XCTHealthKit' from project 'XCTHealthKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -emit-module -experimental-skip-non-inlinable-function-bodies-without-types /Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/HealthAppDataType.swift /Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift /Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCUIApplication+HealthAccess.swift -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTHealthKit_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name XCTHealthKit -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -emit-module-doc-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTHealthKit.swiftdoc -emit-module-source-info-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTHealthKit.swiftsourceinfo -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTHealthKit-Swift.h -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTHealthKit-master-emit-module.dia -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTHealthKit-master-emit-module.d -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTHealthKit.swiftmodule -emit-abi-descriptor-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTHealthKit.abi.json
SwiftCompile normal arm64 Compiling\ XCTestCase+HealthApp.swift /Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift (in target 'XCTHealthKit' from project 'XCTHealthKit')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftTaskExecution -- /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/HealthAppDataType.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift /Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCUIApplication+HealthAccess.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTestCase+HealthApp.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTestCase+HealthApp.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTestCase+HealthApp.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTestCase+HealthApp.dia -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTHealthKit_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name XCTHealthKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTestCase+HealthApp.o -index-unit-output-path /XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTestCase+HealthApp.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift (in target 'XCTHealthKit' from project 'XCTHealthKit')
    cd /Users/admin/builder/spi-builder-workspace
    /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/HealthAppDataType.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift /Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCUIApplication+HealthAccess.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTestCase+HealthApp.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTestCase+HealthApp.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTestCase+HealthApp.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTestCase+HealthApp.dia -target arm64-apple-macos10.13 -Xllvm -aarch64-use-tbi -enable-objc-interop -sdk /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTHealthKit_const_extract_protocols.json -strict-concurrency\=complete -empty-abi-descriptor -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace -resource-dir /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/swift-overrides.hmap -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name XCTHealthKit -frontend-parseable-output -disable-clang-spi -target-sdk-version 14.4 -target-sdk-name macosx14.4 -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.4.sdk/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-15.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Library/Developer/Toolchains/swift-6.0-DEVELOPMENT-SNAPSHOT-2024-05-26-a.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTestCase+HealthApp.o -index-unit-output-path /XCTHealthKit.build/Debug/XCTHealthKit.build/Objects-normal/arm64/XCTestCase+HealthApp.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:31:13: error: 'os_log' is only available in macOS 11.0 or newer
            os_log("Failed to find the browse tab bar button: \(healthApp.tabBars["Tab Bar"].buttons)")
            ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:31:13: note: add 'if #available' version check
            os_log("Failed to find the browse tab bar button: \(healthApp.tabBars["Tab Bar"].buttons)")
            ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add @available attribute to enclosing instance method
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:13:1: note: add @available attribute to enclosing extension
extension XCTestCase {
^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:31:20: error: 'OSLogMessage' is only available in macOS 11.0 or newer
            os_log("Failed to find the browse tab bar button: \(healthApp.tabBars["Tab Bar"].buttons)")
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:31:20: note: add 'if #available' version check
            os_log("Failed to find the browse tab bar button: \(healthApp.tabBars["Tab Bar"].buttons)")
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add @available attribute to enclosing instance method
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:13:1: note: add @available attribute to enclosing extension
extension XCTestCase {
^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:31:64: error: 'appendInterpolation(_:privacy:)' is only available in macOS 11.0 or newer
            os_log("Failed to find the browse tab bar button: \(healthApp.tabBars["Tab Bar"].buttons)")
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:31:64: note: add 'if #available' version check
            os_log("Failed to find the browse tab bar button: \(healthApp.tabBars["Tab Bar"].buttons)")
                                                               ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add @available attribute to enclosing instance method
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:13:1: note: add @available attribute to enclosing extension
extension XCTestCase {
^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:56:13: error: 'os_log' is only available in macOS 11.0 or newer
            os_log("Failed to identify the Add Data Button: \(healthApp.buttons.allElementsBoundByIndex)")
            ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:56:13: note: add 'if #available' version check
            os_log("Failed to identify the Add Data Button: \(healthApp.buttons.allElementsBoundByIndex)")
            ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add @available attribute to enclosing instance method
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:13:1: note: add @available attribute to enclosing extension
extension XCTestCase {
^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:56:20: error: 'OSLogMessage' is only available in macOS 11.0 or newer
            os_log("Failed to identify the Add Data Button: \(healthApp.buttons.allElementsBoundByIndex)")
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:56:20: note: add 'if #available' version check
            os_log("Failed to identify the Add Data Button: \(healthApp.buttons.allElementsBoundByIndex)")
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add @available attribute to enclosing instance method
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:13:1: note: add @available attribute to enclosing extension
extension XCTestCase {
^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:56:62: error: 'appendInterpolation(_:align:privacy:)' is only available in macOS 11.0 or newer
            os_log("Failed to identify the Add Data Button: \(healthApp.buttons.allElementsBoundByIndex)")
                                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:56:62: note: add 'if #available' version check
            os_log("Failed to identify the Add Data Button: \(healthApp.buttons.allElementsBoundByIndex)")
                                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add @available attribute to enclosing instance method
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:13:1: note: add @available attribute to enclosing extension
extension XCTestCase {
^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:57:13: error: 'os_log' is only available in macOS 11.0 or newer
            os_log("Failed to identify the Add Data Button: \(healthApp.staticTexts.allElementsBoundByIndex)")
            ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:57:13: note: add 'if #available' version check
            os_log("Failed to identify the Add Data Button: \(healthApp.staticTexts.allElementsBoundByIndex)")
            ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add @available attribute to enclosing instance method
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:13:1: note: add @available attribute to enclosing extension
extension XCTestCase {
^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:57:20: error: 'OSLogMessage' is only available in macOS 11.0 or newer
            os_log("Failed to identify the Add Data Button: \(healthApp.staticTexts.allElementsBoundByIndex)")
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:57:20: note: add 'if #available' version check
            os_log("Failed to identify the Add Data Button: \(healthApp.staticTexts.allElementsBoundByIndex)")
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add @available attribute to enclosing instance method
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:13:1: note: add @available attribute to enclosing extension
extension XCTestCase {
^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:57:62: error: 'appendInterpolation(_:align:privacy:)' is only available in macOS 11.0 or newer
            os_log("Failed to identify the Add Data Button: \(healthApp.staticTexts.allElementsBoundByIndex)")
                                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:57:62: note: add 'if #available' version check
            os_log("Failed to identify the Add Data Button: \(healthApp.staticTexts.allElementsBoundByIndex)")
                                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add @available attribute to enclosing instance method
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:13:1: note: add @available attribute to enclosing extension
extension XCTestCase {
^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:66:13: error: 'os_log' is only available in macOS 11.0 or newer
            os_log("Failed to identify the Add button: \(healthApp.buttons.allElementsBoundByIndex)")
            ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:66:13: note: add 'if #available' version check
            os_log("Failed to identify the Add button: \(healthApp.buttons.allElementsBoundByIndex)")
            ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add @available attribute to enclosing instance method
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:13:1: note: add @available attribute to enclosing extension
extension XCTestCase {
^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:66:20: error: 'OSLogMessage' is only available in macOS 11.0 or newer
            os_log("Failed to identify the Add button: \(healthApp.buttons.allElementsBoundByIndex)")
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:66:20: note: add 'if #available' version check
            os_log("Failed to identify the Add button: \(healthApp.buttons.allElementsBoundByIndex)")
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add @available attribute to enclosing instance method
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:13:1: note: add @available attribute to enclosing extension
extension XCTestCase {
^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:66:57: error: 'appendInterpolation(_:align:privacy:)' is only available in macOS 11.0 or newer
            os_log("Failed to identify the Add button: \(healthApp.buttons.allElementsBoundByIndex)")
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:66:57: note: add 'if #available' version check
            os_log("Failed to identify the Add button: \(healthApp.buttons.allElementsBoundByIndex)")
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add @available attribute to enclosing instance method
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:13:1: note: add @available attribute to enclosing extension
extension XCTestCase {
^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:67:13: error: 'os_log' is only available in macOS 11.0 or newer
            os_log("Failed to identify the Add button: \(healthApp.staticTexts.allElementsBoundByIndex)")
            ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:67:13: note: add 'if #available' version check
            os_log("Failed to identify the Add button: \(healthApp.staticTexts.allElementsBoundByIndex)")
            ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add @available attribute to enclosing instance method
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:13:1: note: add @available attribute to enclosing extension
extension XCTestCase {
^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:67:20: error: 'OSLogMessage' is only available in macOS 11.0 or newer
            os_log("Failed to identify the Add button: \(healthApp.staticTexts.allElementsBoundByIndex)")
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:67:20: note: add 'if #available' version check
            os_log("Failed to identify the Add button: \(healthApp.staticTexts.allElementsBoundByIndex)")
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add @available attribute to enclosing instance method
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:13:1: note: add @available attribute to enclosing extension
extension XCTestCase {
^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:67:57: error: 'appendInterpolation(_:align:privacy:)' is only available in macOS 11.0 or newer
            os_log("Failed to identify the Add button: \(healthApp.staticTexts.allElementsBoundByIndex)")
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:67:57: note: add 'if #available' version check
            os_log("Failed to identify the Add button: \(healthApp.staticTexts.allElementsBoundByIndex)")
                                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add @available attribute to enclosing instance method
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:13:1: note: add @available attribute to enclosing extension
extension XCTestCase {
^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:22:25: warning: call to main actor-isolated initializer 'init(bundleIdentifier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let healthApp = XCUIApplication(bundleIdentifier: "com.apple.Health")
                        ^
XCTest.XCUIApplication:5:23: note: calls to initializer 'init(bundleIdentifier:)' from outside of its actor context are implicitly asynchronous
    @MainActor public init(bundleIdentifier: String)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:23:19: warning: call to main actor-isolated instance method 'activate()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        healthApp.activate()
                  ^
XCTest.XCUIApplication:15:26: note: calls to instance method 'activate()' from outside of its actor context are implicitly asynchronous
    @MainActor open func activate()
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:25:55: warning: call to main actor-isolated instance method 'waitForExistence(timeout:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        if healthApp.staticTexts["Welcome to Health"].waitForExistence(timeout: 5) {
                                                      ^
XCTest.XCUIElement:7:26: note: calls to instance method 'waitForExistence(timeout:)' from outside of its actor context are implicitly asynchronous
    @MainActor open func waitForExistence(timeout: TimeInterval) -> Bool
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:25:33: warning: main actor-isolated subscript 'subscript(_:)' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        if healthApp.staticTexts["Welcome to Health"].waitForExistence(timeout: 5) {
                                ^
XCTest.XCUIElementQuery:24:21: note: subscript declared here
    @MainActor open subscript(key: String) -> XCUIElement { get }
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:25:22: warning: main actor-isolated property 'staticTexts' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        if healthApp.staticTexts["Welcome to Health"].waitForExistence(timeout: 5) {
                     ^
XCTest.XCUIElement:81:25: note: property declared here
    @NSCopying open var staticTexts: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:29:70: warning: main actor-isolated subscript 'subscript(_:)' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        let browseTabBarButton = healthApp.tabBars["Tab Bar"].buttons["Browse"]
                                                                     ^
XCTest.XCUIElementQuery:24:21: note: subscript declared here
    @MainActor open subscript(key: String) -> XCUIElement { get }
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:29:63: warning: main actor-isolated property 'buttons' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        let browseTabBarButton = healthApp.tabBars["Tab Bar"].buttons["Browse"]
                                                              ^
XCTest.XCUIElement:41:25: note: property declared here
    @NSCopying open var buttons: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:29:51: warning: main actor-isolated subscript 'subscript(_:)' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        let browseTabBarButton = healthApp.tabBars["Tab Bar"].buttons["Browse"]
                                                  ^
XCTest.XCUIElementQuery:24:21: note: subscript declared here
    @MainActor open subscript(key: String) -> XCUIElement { get }
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:29:44: warning: main actor-isolated property 'tabBars' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        let browseTabBarButton = healthApp.tabBars["Tab Bar"].buttons["Browse"]
                                           ^
XCTest.XCUIElement:54:25: note: property declared here
    @NSCopying open var tabBars: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:30:32: warning: call to main actor-isolated instance method 'waitForExistence(timeout:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        if !browseTabBarButton.waitForExistence(timeout: 5) && !browseTabBarButton.isHittable {
                               ^
XCTest.XCUIElement:7:26: note: calls to instance method 'waitForExistence(timeout:)' from outside of its actor context are implicitly asynchronous
    @MainActor open func waitForExistence(timeout: TimeInterval) -> Bool
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:30:84: warning: main actor-isolated property 'isHittable' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
        if !browseTabBarButton.waitForExistence(timeout: 5) && !browseTabBarButton.isHittable {
                                                                                   ^
XCTest.XCUIElement:10:14: note: property declared here
    open var isHittable: Bool { get }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:31:94: warning: main actor-isolated property 'buttons' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
            os_log("Failed to find the browse tab bar button: \(healthApp.tabBars["Tab Bar"].buttons)")
                                                                                             ^
XCTest.XCUIElement:41:25: note: property declared here
    @NSCopying open var buttons: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:31:82: warning: main actor-isolated subscript 'subscript(_:)' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
            os_log("Failed to find the browse tab bar button: \(healthApp.tabBars["Tab Bar"].buttons)")
                                                                                 ^
XCTest.XCUIElementQuery:24:21: note: subscript declared here
    @MainActor open subscript(key: String) -> XCUIElement { get }
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:31:75: warning: main actor-isolated property 'tabBars' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
            os_log("Failed to find the browse tab bar button: \(healthApp.tabBars["Tab Bar"].buttons)")
                                                                          ^
XCTest.XCUIElement:54:25: note: property declared here
    @NSCopying open var tabBars: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:33:75: warning: main actor-isolated subscript 'subscript(_:)' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
            let cancelButton = healthApp.navigationBars.firstMatch.buttons["Cancel"]
                                                                          ^
XCTest.XCUIElementQuery:24:21: note: subscript declared here
    @MainActor open subscript(key: String) -> XCUIElement { get }
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:33:68: warning: main actor-isolated property 'buttons' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
            let cancelButton = healthApp.navigationBars.firstMatch.buttons["Cancel"]
                                                                   ^
XCTest.XCUIElement:41:25: note: property declared here
    @NSCopying open var buttons: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:33:57: warning: main actor-isolated property 'firstMatch' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
            let cancelButton = healthApp.navigationBars.firstMatch.buttons["Cancel"]
                                                        ^
XCTest.XCUIElementQuery:133:14: note: property declared here
    open var firstMatch: XCUIElement { get }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:33:42: warning: main actor-isolated property 'navigationBars' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
            let cancelButton = healthApp.navigationBars.firstMatch.buttons["Cancel"]
                                         ^
XCTest.XCUIElement:53:25: note: property declared here
    @NSCopying open var navigationBars: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:34:29: warning: call to main actor-isolated instance method 'waitForExistence(timeout:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            if cancelButton.waitForExistence(timeout: 3) && cancelButton.isHittable {
                            ^
XCTest.XCUIElement:7:26: note: calls to instance method 'waitForExistence(timeout:)' from outside of its actor context are implicitly asynchronous
    @MainActor open func waitForExistence(timeout: TimeInterval) -> Bool
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:34:74: warning: main actor-isolated property 'isHittable' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
            if cancelButton.waitForExistence(timeout: 3) && cancelButton.isHittable {
                                                                         ^
XCTest.XCUIElement:10:14: note: property declared here
    open var isHittable: Bool { get }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:35:30: warning: call to main actor-isolated instance method 'tap()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                cancelButton.tap()
                             ^
XCTest.XCUIElement:2:26: note: calls to instance method 'tap()' from outside of its actor context are implicitly asynchronous
    @MainActor open func tap()
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:38:36: warning: main actor-isolated property 'isHittable' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
            if !browseTabBarButton.isHittable {
                                   ^
XCTest.XCUIElement:10:14: note: property declared here
    open var isHittable: Bool { get }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:39:27: warning: call to main actor-isolated instance method 'terminate()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                healthApp.terminate()
                          ^
XCTest.XCUIApplication:16:26: note: calls to instance method 'terminate()' from outside of its actor context are implicitly asynchronous
    @MainActor open func terminate()
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:49:28: warning: call to main actor-isolated instance method 'tap()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        browseTabBarButton.tap()
                           ^
XCTest.XCUIElement:2:26: note: calls to instance method 'tap()' from outside of its actor context are implicitly asynchronous
    @MainActor open func tap()
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:50:28: warning: call to main actor-isolated instance method 'tap()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        browseTabBarButton.tap()
                           ^
XCTest.XCUIElement:2:26: note: calls to instance method 'tap()' from outside of its actor context are implicitly asynchronous
    @MainActor open func tap()
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:51:66: warning: call to main actor-isolated instance method 'waitForExistence(timeout:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        XCTAssert(healthApp.navigationBars.staticTexts["Browse"].waitForExistence(timeout: 10))
                                                                 ^
XCTest.XCUIElement:7:26: note: calls to instance method 'waitForExistence(timeout:)' from outside of its actor context are implicitly asynchronous
    @MainActor open func waitForExistence(timeout: TimeInterval) -> Bool
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:51:55: warning: main actor-isolated subscript 'subscript(_:)' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssert(healthApp.navigationBars.staticTexts["Browse"].waitForExistence(timeout: 10))
                                                      ^
XCTest.XCUIElementQuery:24:21: note: subscript declared here
    @MainActor open subscript(key: String) -> XCUIElement { get }
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:51:44: warning: main actor-isolated property 'staticTexts' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssert(healthApp.navigationBars.staticTexts["Browse"].waitForExistence(timeout: 10))
                                           ^
XCTest.XCUIElementQuery:98:25: note: property declared here
    @NSCopying open var staticTexts: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:51:29: warning: main actor-isolated property 'navigationBars' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
        XCTAssert(healthApp.navigationBars.staticTexts["Browse"].waitForExistence(timeout: 10))
                            ^
XCTest.XCUIElement:53:25: note: property declared here
    @NSCopying open var navigationBars: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:55:71: warning: call to main actor-isolated instance method 'waitForExistence(timeout:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        guard healthApp.navigationBars.firstMatch.buttons["Add Data"].waitForExistence(timeout: 3) else {
                                                                      ^
XCTest.XCUIElement:7:26: note: calls to instance method 'waitForExistence(timeout:)' from outside of its actor context are implicitly asynchronous
    @MainActor open func waitForExistence(timeout: TimeInterval) -> Bool
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:55:58: warning: main actor-isolated subscript 'subscript(_:)' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        guard healthApp.navigationBars.firstMatch.buttons["Add Data"].waitForExistence(timeout: 3) else {
                                                         ^
XCTest.XCUIElementQuery:24:21: note: subscript declared here
    @MainActor open subscript(key: String) -> XCUIElement { get }
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:55:51: warning: main actor-isolated property 'buttons' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        guard healthApp.navigationBars.firstMatch.buttons["Add Data"].waitForExistence(timeout: 3) else {
                                                  ^
XCTest.XCUIElement:41:25: note: property declared here
    @NSCopying open var buttons: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:55:40: warning: main actor-isolated property 'firstMatch' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        guard healthApp.navigationBars.firstMatch.buttons["Add Data"].waitForExistence(timeout: 3) else {
                                       ^
XCTest.XCUIElementQuery:133:14: note: property declared here
    open var firstMatch: XCUIElement { get }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:55:25: warning: main actor-isolated property 'navigationBars' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        guard healthApp.navigationBars.firstMatch.buttons["Add Data"].waitForExistence(timeout: 3) else {
                        ^
XCTest.XCUIElement:53:25: note: property declared here
    @NSCopying open var navigationBars: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:56:81: warning: main actor-isolated property 'allElementsBoundByIndex' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
            os_log("Failed to identify the Add Data Button: \(healthApp.buttons.allElementsBoundByIndex)")
                                                                                ^
XCTest.XCUIElementQuery:28:14: note: property declared here
    open var allElementsBoundByIndex: [XCUIElement] { get }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:56:73: warning: main actor-isolated property 'buttons' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
            os_log("Failed to identify the Add Data Button: \(healthApp.buttons.allElementsBoundByIndex)")
                                                                        ^
XCTest.XCUIElement:41:25: note: property declared here
    @NSCopying open var buttons: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:57:85: warning: main actor-isolated property 'allElementsBoundByIndex' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
            os_log("Failed to identify the Add Data Button: \(healthApp.staticTexts.allElementsBoundByIndex)")
                                                                                    ^
XCTest.XCUIElementQuery:28:14: note: property declared here
    open var allElementsBoundByIndex: [XCUIElement] { get }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:57:73: warning: main actor-isolated property 'staticTexts' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
            os_log("Failed to identify the Add Data Button: \(healthApp.staticTexts.allElementsBoundByIndex)")
                                                                        ^
XCTest.XCUIElement:81:25: note: property declared here
    @NSCopying open var staticTexts: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:61:65: warning: call to main actor-isolated instance method 'tap()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        healthApp.navigationBars.firstMatch.buttons["Add Data"].tap()
                                                                ^
XCTest.XCUIElement:2:26: note: calls to instance method 'tap()' from outside of its actor context are implicitly asynchronous
    @MainActor open func tap()
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:61:52: warning: main actor-isolated subscript 'subscript(_:)' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        healthApp.navigationBars.firstMatch.buttons["Add Data"].tap()
                                                   ^
XCTest.XCUIElementQuery:24:21: note: subscript declared here
    @MainActor open subscript(key: String) -> XCUIElement { get }
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:61:45: warning: main actor-isolated property 'buttons' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        healthApp.navigationBars.firstMatch.buttons["Add Data"].tap()
                                            ^
XCTest.XCUIElement:41:25: note: property declared here
    @NSCopying open var buttons: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:61:34: warning: main actor-isolated property 'firstMatch' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        healthApp.navigationBars.firstMatch.buttons["Add Data"].tap()
                                 ^
XCTest.XCUIElementQuery:133:14: note: property declared here
    open var firstMatch: XCUIElement { get }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:61:19: warning: main actor-isolated property 'navigationBars' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        healthApp.navigationBars.firstMatch.buttons["Add Data"].tap()
                  ^
XCTest.XCUIElement:53:25: note: property declared here
    @NSCopying open var navigationBars: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:65:66: warning: call to main actor-isolated instance method 'waitForExistence(timeout:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        guard healthApp.navigationBars.firstMatch.buttons["Add"].waitForExistence(timeout: 3) else {
                                                                 ^
XCTest.XCUIElement:7:26: note: calls to instance method 'waitForExistence(timeout:)' from outside of its actor context are implicitly asynchronous
    @MainActor open func waitForExistence(timeout: TimeInterval) -> Bool
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:65:58: warning: main actor-isolated subscript 'subscript(_:)' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        guard healthApp.navigationBars.firstMatch.buttons["Add"].waitForExistence(timeout: 3) else {
                                                         ^
XCTest.XCUIElementQuery:24:21: note: subscript declared here
    @MainActor open subscript(key: String) -> XCUIElement { get }
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:65:51: warning: main actor-isolated property 'buttons' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        guard healthApp.navigationBars.firstMatch.buttons["Add"].waitForExistence(timeout: 3) else {
                                                  ^
XCTest.XCUIElement:41:25: note: property declared here
    @NSCopying open var buttons: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:65:40: warning: main actor-isolated property 'firstMatch' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        guard healthApp.navigationBars.firstMatch.buttons["Add"].waitForExistence(timeout: 3) else {
                                       ^
XCTest.XCUIElementQuery:133:14: note: property declared here
    open var firstMatch: XCUIElement { get }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:65:25: warning: main actor-isolated property 'navigationBars' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        guard healthApp.navigationBars.firstMatch.buttons["Add"].waitForExistence(timeout: 3) else {
                        ^
XCTest.XCUIElement:53:25: note: property declared here
    @NSCopying open var navigationBars: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:66:76: warning: main actor-isolated property 'allElementsBoundByIndex' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
            os_log("Failed to identify the Add button: \(healthApp.buttons.allElementsBoundByIndex)")
                                                                           ^
XCTest.XCUIElementQuery:28:14: note: property declared here
    open var allElementsBoundByIndex: [XCUIElement] { get }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:66:68: warning: main actor-isolated property 'buttons' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
            os_log("Failed to identify the Add button: \(healthApp.buttons.allElementsBoundByIndex)")
                                                                   ^
XCTest.XCUIElement:41:25: note: property declared here
    @NSCopying open var buttons: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:67:80: warning: main actor-isolated property 'allElementsBoundByIndex' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
            os_log("Failed to identify the Add button: \(healthApp.staticTexts.allElementsBoundByIndex)")
                                                                               ^
XCTest.XCUIElementQuery:28:14: note: property declared here
    open var allElementsBoundByIndex: [XCUIElement] { get }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:67:68: warning: main actor-isolated property 'staticTexts' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
            os_log("Failed to identify the Add button: \(healthApp.staticTexts.allElementsBoundByIndex)")
                                                                   ^
XCTest.XCUIElement:81:25: note: property declared here
    @NSCopying open var staticTexts: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:71:60: warning: call to main actor-isolated instance method 'tap()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        healthApp.navigationBars.firstMatch.buttons["Add"].tap()
                                                           ^
XCTest.XCUIElement:2:26: note: calls to instance method 'tap()' from outside of its actor context are implicitly asynchronous
    @MainActor open func tap()
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:71:52: warning: main actor-isolated subscript 'subscript(_:)' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        healthApp.navigationBars.firstMatch.buttons["Add"].tap()
                                                   ^
XCTest.XCUIElementQuery:24:21: note: subscript declared here
    @MainActor open subscript(key: String) -> XCUIElement { get }
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:71:45: warning: main actor-isolated property 'buttons' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        healthApp.navigationBars.firstMatch.buttons["Add"].tap()
                                            ^
XCTest.XCUIElement:41:25: note: property declared here
    @NSCopying open var buttons: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:71:34: warning: main actor-isolated property 'firstMatch' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        healthApp.navigationBars.firstMatch.buttons["Add"].tap()
                                 ^
XCTest.XCUIElementQuery:133:14: note: property declared here
    open var firstMatch: XCUIElement { get }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:71:19: warning: main actor-isolated property 'navigationBars' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        healthApp.navigationBars.firstMatch.buttons["Add"].tap()
                  ^
XCTest.XCUIElement:53:25: note: property declared here
    @NSCopying open var navigationBars: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:73:69: warning: call to main actor-isolated instance method 'waitForExistence(timeout:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        if !healthApp.navigationBars.firstMatch.buttons["Add Data"].waitForExistence(timeout: 20) {
                                                                    ^
XCTest.XCUIElement:7:26: note: calls to instance method 'waitForExistence(timeout:)' from outside of its actor context are implicitly asynchronous
    @MainActor open func waitForExistence(timeout: TimeInterval) -> Bool
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:73:56: warning: main actor-isolated subscript 'subscript(_:)' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        if !healthApp.navigationBars.firstMatch.buttons["Add Data"].waitForExistence(timeout: 20) {
                                                       ^
XCTest.XCUIElementQuery:24:21: note: subscript declared here
    @MainActor open subscript(key: String) -> XCUIElement { get }
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:73:49: warning: main actor-isolated property 'buttons' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        if !healthApp.navigationBars.firstMatch.buttons["Add Data"].waitForExistence(timeout: 20) {
                                                ^
XCTest.XCUIElement:41:25: note: property declared here
    @NSCopying open var buttons: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:73:38: warning: main actor-isolated property 'firstMatch' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        if !healthApp.navigationBars.firstMatch.buttons["Add Data"].waitForExistence(timeout: 20) {
                                     ^
XCTest.XCUIElementQuery:133:14: note: property declared here
    open var firstMatch: XCUIElement { get }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:73:23: warning: main actor-isolated property 'navigationBars' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        if !healthApp.navigationBars.firstMatch.buttons["Add Data"].waitForExistence(timeout: 20) {
                      ^
XCTest.XCUIElement:53:25: note: property declared here
    @NSCopying open var navigationBars: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:74:23: warning: call to main actor-isolated instance method 'terminate()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            healthApp.terminate()
                      ^
XCTest.XCUIApplication:16:26: note: calls to instance method 'terminate()' from outside of its actor context are implicitly asynchronous
    @MainActor open func terminate()
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:21:18: note: add '@MainActor' to make instance method 'exitAppAndOpenHealthThatMightBeRepeated(_:alreadyRecursive:)' part of global actor 'MainActor'
    private func exitAppAndOpenHealthThatMightBeRepeated(_ healthDataType: HealthAppDataType, alreadyRecursive: Bool = false) throws {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:86:42: warning: main actor-isolated property 'exists' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
            guard alert.buttons["Allow"].exists else {
                                         ^
XCTest.XCUIElement:6:14: note: property declared here
    open var exists: Bool { get }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:86:32: warning: main actor-isolated subscript 'subscript(_:)' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
            guard alert.buttons["Allow"].exists else {
                               ^
XCTest.XCUIElementQuery:24:21: note: subscript declared here
    @MainActor open subscript(key: String) -> XCUIElement { get }
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:86:25: warning: main actor-isolated property 'buttons' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
            guard alert.buttons["Allow"].exists else {
                        ^
XCTest.XCUIElement:41:25: note: property declared here
    @NSCopying open var buttons: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:87:72: warning: main actor-isolated property 'allElementsBoundByIndex' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
                XCTFail("Failed not dismiss alert: \(alert.staticTexts.allElementsBoundByIndex)")
                                                                       ^
XCTest.XCUIElementQuery:28:14: note: property declared here
    open var allElementsBoundByIndex: [XCUIElement] { get }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:87:60: warning: main actor-isolated property 'staticTexts' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
                XCTFail("Failed not dismiss alert: \(alert.staticTexts.allElementsBoundByIndex)")
                                                           ^
XCTest.XCUIElement:81:25: note: property declared here
    @NSCopying open var staticTexts: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:91:36: warning: call to main actor-isolated instance method 'tap()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            alert.buttons["Allow"].tap()
                                   ^
XCTest.XCUIElement:2:26: note: calls to instance method 'tap()' from outside of its actor context are implicitly asynchronous
    @MainActor open func tap()
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:91:26: warning: main actor-isolated subscript 'subscript(_:)' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
            alert.buttons["Allow"].tap()
                         ^
XCTest.XCUIElementQuery:24:21: note: subscript declared here
    @MainActor open subscript(key: String) -> XCUIElement { get }
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:91:19: warning: main actor-isolated property 'buttons' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
            alert.buttons["Allow"].tap()
                  ^
XCTest.XCUIElement:41:25: note: property declared here
    @NSCopying open var buttons: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:95:25: warning: call to main actor-isolated initializer 'init(bundleIdentifier:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let healthApp = XCUIApplication(bundleIdentifier: "com.apple.Health")
                        ^
XCTest.XCUIApplication:5:23: note: calls to initializer 'init(bundleIdentifier:)' from outside of its actor context are implicitly asynchronous
    @MainActor public init(bundleIdentifier: String)
                      ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:97:55: warning: call to main actor-isolated instance method 'waitForExistence(timeout:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        if healthApp.staticTexts["Welcome to Health"].waitForExistence(timeout: 5) {
                                                      ^
XCTest.XCUIElement:7:26: note: calls to instance method 'waitForExistence(timeout:)' from outside of its actor context are implicitly asynchronous
    @MainActor open func waitForExistence(timeout: TimeInterval) -> Bool
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:97:33: warning: main actor-isolated subscript 'subscript(_:)' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        if healthApp.staticTexts["Welcome to Health"].waitForExistence(timeout: 5) {
                                ^
XCTest.XCUIElementQuery:24:21: note: subscript declared here
    @MainActor open subscript(key: String) -> XCUIElement { get }
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:97:22: warning: main actor-isolated property 'staticTexts' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
        if healthApp.staticTexts["Welcome to Health"].waitForExistence(timeout: 5) {
                     ^
XCTest.XCUIElement:81:25: note: property declared here
    @NSCopying open var staticTexts: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:98:61: warning: call to main actor-isolated instance method 'waitForExistence(timeout:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            XCTAssertTrue(healthApp.staticTexts["Continue"].waitForExistence(timeout: 5))
                                                            ^
XCTest.XCUIElement:7:26: note: calls to instance method 'waitForExistence(timeout:)' from outside of its actor context are implicitly asynchronous
    @MainActor open func waitForExistence(timeout: TimeInterval) -> Bool
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:98:48: warning: main actor-isolated subscript 'subscript(_:)' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertTrue(healthApp.staticTexts["Continue"].waitForExistence(timeout: 5))
                                               ^
XCTest.XCUIElementQuery:24:21: note: subscript declared here
    @MainActor open subscript(key: String) -> XCUIElement { get }
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:98:37: warning: main actor-isolated property 'staticTexts' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertTrue(healthApp.staticTexts["Continue"].waitForExistence(timeout: 5))
                                    ^
XCTest.XCUIElement:81:25: note: property declared here
    @NSCopying open var staticTexts: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:99:47: warning: call to main actor-isolated instance method 'tap()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            healthApp.staticTexts["Continue"].tap()
                                              ^
XCTest.XCUIElement:2:26: note: calls to instance method 'tap()' from outside of its actor context are implicitly asynchronous
    @MainActor open func tap()
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:99:34: warning: main actor-isolated subscript 'subscript(_:)' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
            healthApp.staticTexts["Continue"].tap()
                                 ^
XCTest.XCUIElementQuery:24:21: note: subscript declared here
    @MainActor open subscript(key: String) -> XCUIElement { get }
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:99:23: warning: main actor-isolated property 'staticTexts' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
            healthApp.staticTexts["Continue"].tap()
                      ^
XCTest.XCUIElement:81:25: note: property declared here
    @NSCopying open var staticTexts: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:101:61: warning: call to main actor-isolated instance method 'waitForExistence(timeout:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            XCTAssertTrue(healthApp.staticTexts["Continue"].waitForExistence(timeout: 5))
                                                            ^
XCTest.XCUIElement:7:26: note: calls to instance method 'waitForExistence(timeout:)' from outside of its actor context are implicitly asynchronous
    @MainActor open func waitForExistence(timeout: TimeInterval) -> Bool
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:101:48: warning: main actor-isolated subscript 'subscript(_:)' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertTrue(healthApp.staticTexts["Continue"].waitForExistence(timeout: 5))
                                               ^
XCTest.XCUIElementQuery:24:21: note: subscript declared here
    @MainActor open subscript(key: String) -> XCUIElement { get }
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:101:37: warning: main actor-isolated property 'staticTexts' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertTrue(healthApp.staticTexts["Continue"].waitForExistence(timeout: 5))
                                    ^
XCTest.XCUIElement:81:25: note: property declared here
    @NSCopying open var staticTexts: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:102:47: warning: call to main actor-isolated instance method 'tap()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            healthApp.staticTexts["Continue"].tap()
                                              ^
XCTest.XCUIElement:2:26: note: calls to instance method 'tap()' from outside of its actor context are implicitly asynchronous
    @MainActor open func tap()
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:102:34: warning: main actor-isolated subscript 'subscript(_:)' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
            healthApp.staticTexts["Continue"].tap()
                                 ^
XCTest.XCUIElementQuery:24:21: note: subscript declared here
    @MainActor open subscript(key: String) -> XCUIElement { get }
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:102:23: warning: main actor-isolated property 'staticTexts' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
            healthApp.staticTexts["Continue"].tap()
                      ^
XCTest.XCUIElement:81:25: note: property declared here
    @NSCopying open var staticTexts: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:104:60: warning: call to main actor-isolated instance method 'waitForExistence(timeout:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            XCTAssertTrue(healthApp.tables.buttons["Next"].waitForExistence(timeout: 5))
                                                           ^
XCTest.XCUIElement:7:26: note: calls to instance method 'waitForExistence(timeout:)' from outside of its actor context are implicitly asynchronous
    @MainActor open func waitForExistence(timeout: TimeInterval) -> Bool
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:104:51: warning: main actor-isolated subscript 'subscript(_:)' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertTrue(healthApp.tables.buttons["Next"].waitForExistence(timeout: 5))
                                                  ^
XCTest.XCUIElementQuery:24:21: note: subscript declared here
    @MainActor open subscript(key: String) -> XCUIElement { get }
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:104:44: warning: main actor-isolated property 'buttons' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertTrue(healthApp.tables.buttons["Next"].waitForExistence(timeout: 5))
                                           ^
XCTest.XCUIElementQuery:58:25: note: property declared here
    @NSCopying open var buttons: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:104:37: warning: main actor-isolated property 'tables' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertTrue(healthApp.tables.buttons["Next"].waitForExistence(timeout: 5))
                                    ^
XCTest.XCUIElement:58:25: note: property declared here
    @NSCopying open var tables: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:105:46: warning: call to main actor-isolated instance method 'tap()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            healthApp.tables.buttons["Next"].tap()
                                             ^
XCTest.XCUIElement:2:26: note: calls to instance method 'tap()' from outside of its actor context are implicitly asynchronous
    @MainActor open func tap()
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:105:37: warning: main actor-isolated subscript 'subscript(_:)' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
            healthApp.tables.buttons["Next"].tap()
                                    ^
XCTest.XCUIElementQuery:24:21: note: subscript declared here
    @MainActor open subscript(key: String) -> XCUIElement { get }
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:105:30: warning: main actor-isolated property 'buttons' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
            healthApp.tables.buttons["Next"].tap()
                             ^
XCTest.XCUIElementQuery:58:25: note: property declared here
    @NSCopying open var buttons: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:105:23: warning: main actor-isolated property 'tables' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
            healthApp.tables.buttons["Next"].tap()
                      ^
XCTest.XCUIElement:58:25: note: property declared here
    @NSCopying open var tables: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:109:51: warning: call to main actor-isolated instance method 'waitForExistence(timeout:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            if !healthApp.staticTexts["Continue"].waitForExistence(timeout: 60) {
                                                  ^
XCTest.XCUIElement:7:26: note: calls to instance method 'waitForExistence(timeout:)' from outside of its actor context are implicitly asynchronous
    @MainActor open func waitForExistence(timeout: TimeInterval) -> Bool
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:109:38: warning: main actor-isolated subscript 'subscript(_:)' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
            if !healthApp.staticTexts["Continue"].waitForExistence(timeout: 60) {
                                     ^
XCTest.XCUIElementQuery:24:21: note: subscript declared here
    @MainActor open subscript(key: String) -> XCUIElement { get }
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:109:27: warning: main actor-isolated property 'staticTexts' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
            if !healthApp.staticTexts["Continue"].waitForExistence(timeout: 60) {
                          ^
XCTest.XCUIElement:81:25: note: property declared here
    @NSCopying open var staticTexts: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:111:85: warning: call to main actor-isolated instance method 'tap()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                healthApp.navigationBars["WDBuddyFlowUserInfoView"].buttons["Back"].tap()
                                                                                    ^
XCTest.XCUIElement:2:26: note: calls to instance method 'tap()' from outside of its actor context are implicitly asynchronous
    @MainActor open func tap()
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:111:76: warning: main actor-isolated subscript 'subscript(_:)' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
                healthApp.navigationBars["WDBuddyFlowUserInfoView"].buttons["Back"].tap()
                                                                           ^
XCTest.XCUIElementQuery:24:21: note: subscript declared here
    @MainActor open subscript(key: String) -> XCUIElement { get }
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:111:69: warning: main actor-isolated property 'buttons' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
                healthApp.navigationBars["WDBuddyFlowUserInfoView"].buttons["Back"].tap()
                                                                    ^
XCTest.XCUIElement:41:25: note: property declared here
    @NSCopying open var buttons: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:111:41: warning: main actor-isolated subscript 'subscript(_:)' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
                healthApp.navigationBars["WDBuddyFlowUserInfoView"].buttons["Back"].tap()
                                        ^
XCTest.XCUIElementQuery:24:21: note: subscript declared here
    @MainActor open subscript(key: String) -> XCUIElement { get }
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:111:27: warning: main actor-isolated property 'navigationBars' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
                healthApp.navigationBars["WDBuddyFlowUserInfoView"].buttons["Back"].tap()
                          ^
XCTest.XCUIElement:53:25: note: property declared here
    @NSCopying open var navigationBars: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:113:65: warning: call to main actor-isolated instance method 'waitForExistence(timeout:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                XCTAssertTrue(healthApp.staticTexts["Continue"].waitForExistence(timeout: 5))
                                                                ^
XCTest.XCUIElement:7:26: note: calls to instance method 'waitForExistence(timeout:)' from outside of its actor context are implicitly asynchronous
    @MainActor open func waitForExistence(timeout: TimeInterval) -> Bool
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:113:52: warning: main actor-isolated subscript 'subscript(_:)' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertTrue(healthApp.staticTexts["Continue"].waitForExistence(timeout: 5))
                                                   ^
XCTest.XCUIElementQuery:24:21: note: subscript declared here
    @MainActor open subscript(key: String) -> XCUIElement { get }
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:113:41: warning: main actor-isolated property 'staticTexts' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
                XCTAssertTrue(healthApp.staticTexts["Continue"].waitForExistence(timeout: 5))
                                        ^
XCTest.XCUIElement:81:25: note: property declared here
    @NSCopying open var staticTexts: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:114:51: warning: call to main actor-isolated instance method 'tap()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                healthApp.staticTexts["Continue"].tap()
                                                  ^
XCTest.XCUIElement:2:26: note: calls to instance method 'tap()' from outside of its actor context are implicitly asynchronous
    @MainActor open func tap()
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:114:38: warning: main actor-isolated subscript 'subscript(_:)' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
                healthApp.staticTexts["Continue"].tap()
                                     ^
XCTest.XCUIElementQuery:24:21: note: subscript declared here
    @MainActor open subscript(key: String) -> XCUIElement { get }
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:114:27: warning: main actor-isolated property 'staticTexts' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
                healthApp.staticTexts["Continue"].tap()
                          ^
XCTest.XCUIElement:81:25: note: property declared here
    @NSCopying open var staticTexts: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:117:53: warning: call to main actor-isolated instance method 'waitForExistence(timeout:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                if healthApp.tables.buttons["Next"].waitForExistence(timeout: 5) {
                                                    ^
XCTest.XCUIElement:7:26: note: calls to instance method 'waitForExistence(timeout:)' from outside of its actor context are implicitly asynchronous
    @MainActor open func waitForExistence(timeout: TimeInterval) -> Bool
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:117:44: warning: main actor-isolated subscript 'subscript(_:)' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
                if healthApp.tables.buttons["Next"].waitForExistence(timeout: 5) {
                                           ^
XCTest.XCUIElementQuery:24:21: note: subscript declared here
    @MainActor open subscript(key: String) -> XCUIElement { get }
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:117:37: warning: main actor-isolated property 'buttons' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
                if healthApp.tables.buttons["Next"].waitForExistence(timeout: 5) {
                                    ^
XCTest.XCUIElementQuery:58:25: note: property declared here
    @NSCopying open var buttons: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:117:30: warning: main actor-isolated property 'tables' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
                if healthApp.tables.buttons["Next"].waitForExistence(timeout: 5) {
                             ^
XCTest.XCUIElement:58:25: note: property declared here
    @NSCopying open var tables: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:118:54: warning: call to main actor-isolated instance method 'tap()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                    healthApp.tables.buttons["Next"].tap()
                                                     ^
XCTest.XCUIElement:2:26: note: calls to instance method 'tap()' from outside of its actor context are implicitly asynchronous
    @MainActor open func tap()
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:118:45: warning: main actor-isolated subscript 'subscript(_:)' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
                    healthApp.tables.buttons["Next"].tap()
                                            ^
XCTest.XCUIElementQuery:24:21: note: subscript declared here
    @MainActor open subscript(key: String) -> XCUIElement { get }
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:118:38: warning: main actor-isolated property 'buttons' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
                    healthApp.tables.buttons["Next"].tap()
                                     ^
XCTest.XCUIElementQuery:58:25: note: property declared here
    @NSCopying open var buttons: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:118:31: warning: main actor-isolated property 'tables' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
                    healthApp.tables.buttons["Next"].tap()
                              ^
XCTest.XCUIElement:58:25: note: property declared here
    @NSCopying open var tables: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:122:55: warning: call to main actor-isolated instance method 'waitForExistence(timeout:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                if !healthApp.staticTexts["Continue"].waitForExistence(timeout: 60) {
                                                      ^
XCTest.XCUIElement:7:26: note: calls to instance method 'waitForExistence(timeout:)' from outside of its actor context are implicitly asynchronous
    @MainActor open func waitForExistence(timeout: TimeInterval) -> Bool
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:122:42: warning: main actor-isolated subscript 'subscript(_:)' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
                if !healthApp.staticTexts["Continue"].waitForExistence(timeout: 60) {
                                         ^
XCTest.XCUIElementQuery:24:21: note: subscript declared here
    @MainActor open subscript(key: String) -> XCUIElement { get }
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:122:31: warning: main actor-isolated property 'staticTexts' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
                if !healthApp.staticTexts["Continue"].waitForExistence(timeout: 60) {
                              ^
XCTest.XCUIElement:81:25: note: property declared here
    @NSCopying open var staticTexts: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:127:31: warning: call to main actor-isolated instance method 'terminate()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                    healthApp.terminate()
                              ^
XCTest.XCUIApplication:16:26: note: calls to instance method 'terminate()' from outside of its actor context are implicitly asynchronous
    @MainActor open func terminate()
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:128:31: warning: call to main actor-isolated instance method 'activate()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                    healthApp.activate()
                              ^
XCTest.XCUIApplication:15:26: note: calls to instance method 'activate()' from outside of its actor context are implicitly asynchronous
    @MainActor open func activate()
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:135:51: warning: main actor-isolated property 'firstMatch' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
            let trendsSwitch = healthApp.switches.firstMatch
                                                  ^
XCTest.XCUIElementQuery:133:14: note: property declared here
    open var firstMatch: XCUIElement { get }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:135:42: warning: main actor-isolated property 'switches' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
            let trendsSwitch = healthApp.switches.firstMatch
                                         ^
XCTest.XCUIElement:73:25: note: property declared here
    @NSCopying open var switches: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:136:29: warning: call to main actor-isolated instance method 'waitForExistence(timeout:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            if trendsSwitch.waitForExistence(timeout: 5) && trendsSwitch.isHittable {
                            ^
XCTest.XCUIElement:7:26: note: calls to instance method 'waitForExistence(timeout:)' from outside of its actor context are implicitly asynchronous
    @MainActor open func waitForExistence(timeout: TimeInterval) -> Bool
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:136:74: warning: main actor-isolated property 'isHittable' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
            if trendsSwitch.waitForExistence(timeout: 5) && trendsSwitch.isHittable {
                                                                         ^
XCTest.XCUIElement:10:14: note: property declared here
    open var isHittable: Bool { get }
             ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:137:30: warning: call to main actor-isolated instance method 'tap()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
                trendsSwitch.tap()
                             ^
XCTest.XCUIElement:2:26: note: calls to instance method 'tap()' from outside of its actor context are implicitly asynchronous
    @MainActor open func tap()
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:140:61: warning: call to main actor-isolated instance method 'waitForExistence(timeout:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            XCTAssertTrue(healthApp.staticTexts["Continue"].waitForExistence(timeout: 5))
                                                            ^
XCTest.XCUIElement:7:26: note: calls to instance method 'waitForExistence(timeout:)' from outside of its actor context are implicitly asynchronous
    @MainActor open func waitForExistence(timeout: TimeInterval) -> Bool
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:140:48: warning: main actor-isolated subscript 'subscript(_:)' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertTrue(healthApp.staticTexts["Continue"].waitForExistence(timeout: 5))
                                               ^
XCTest.XCUIElementQuery:24:21: note: subscript declared here
    @MainActor open subscript(key: String) -> XCUIElement { get }
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:140:37: warning: main actor-isolated property 'staticTexts' can not be referenced from a non-isolated autoclosure; this is an error in the Swift 6 language mode
            XCTAssertTrue(healthApp.staticTexts["Continue"].waitForExistence(timeout: 5))
                                    ^
XCTest.XCUIElement:81:25: note: property declared here
    @NSCopying open var staticTexts: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:141:47: warning: call to main actor-isolated instance method 'tap()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            healthApp.staticTexts["Continue"].tap()
                                              ^
XCTest.XCUIElement:2:26: note: calls to instance method 'tap()' from outside of its actor context are implicitly asynchronous
    @MainActor open func tap()
                         ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:141:34: warning: main actor-isolated subscript 'subscript(_:)' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
            healthApp.staticTexts["Continue"].tap()
                                 ^
XCTest.XCUIElementQuery:24:21: note: subscript declared here
    @MainActor open subscript(key: String) -> XCUIElement { get }
                    ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:141:23: warning: main actor-isolated property 'staticTexts' can not be referenced from a non-isolated context; this is an error in the Swift 6 language mode
            healthApp.staticTexts["Continue"].tap()
                      ^
XCTest.XCUIElement:81:25: note: property declared here
    @NSCopying open var staticTexts: XCUIElementQuery { get }
                        ^
/Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift:84:18: note: add '@MainActor' to make instance method 'handleWelcomeToHealth(alreadyRecursive:)' part of global actor 'MainActor'
    private func handleWelcomeToHealth(alreadyRecursive: Bool = false) {
                 ^
    @MainActor
note: Using global toolchain override 'Swift 6.0 Development Snapshot 2024-05-26 (a)'. (in target 'XCTHealthKit' from project 'XCTHealthKit')
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, id:0000FE00-8C151E3703BE51BE, name:My Mac }
{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:0000FE00-8C151E3703BE51BE, name:My Mac }
{ platform:macOS, arch:arm64, variant:DriverKit, id:0000FE00-8C151E3703BE51BE, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:0000FE00-8C151E3703BE51BE, name:My Mac }
{ platform:tvOS Simulator, id:8B1ABE64-0401-443E-812F-247A4FBB5BDB, OS:17.4, name:Apple TV }
{ platform:tvOS Simulator, id:1CFD7C1E-15D0-43C5-AF27-909F7506EEF8, OS:17.4, name:Apple TV 4K (3rd generation) }
{ platform:tvOS Simulator, id:2F8EA46A-629D-4072-B00C-F903D55C3177, OS:17.4, name:Apple TV 4K (3rd generation) (at 1080p) }
{ platform:visionOS Simulator, id:91219D42-BD52-4AED-96DD-B55E31EB00BB, OS:1.1, name:Apple Vision Pro }
{ platform:watchOS Simulator, id:DE04AC0A-986B-4FBA-9496-F35677425C97, OS:10.4, name:Apple Watch SE (40mm) (2nd generation) }
{ platform:watchOS Simulator, id:4BE5427F-5FC7-449C-B254-3F404CE79B2F, OS:10.4, name:Apple Watch SE (44mm) (2nd generation) }
{ platform:watchOS Simulator, id:B1E30F2A-196D-43FB-B903-C3CF777EDD8E, OS:10.4, name:Apple Watch Series 5 (40mm) }
{ platform:watchOS Simulator, id:2F36C8D1-FB3D-4D85-A931-07B6EFBD4E4F, OS:10.4, name:Apple Watch Series 5 (44mm) }
{ platform:watchOS Simulator, id:CF595720-5AAE-408E-8353-1C54D9068D3E, OS:10.4, name:Apple Watch Series 6 (40mm) }
{ platform:watchOS Simulator, id:8F6954D5-8415-4A06-8701-3C7F4ACB2488, OS:10.4, name:Apple Watch Series 6 (44mm) }
{ platform:watchOS Simulator, id:F60A3AB2-C846-4E63-9A50-5E6DBD6A2777, OS:10.4, name:Apple Watch Series 7 (41mm) }
{ platform:watchOS Simulator, id:F72F2121-983A-4C32-A0D4-0C7BA61073C9, OS:10.4, name:Apple Watch Series 7 (45mm) }
{ platform:watchOS Simulator, id:86A5CFD7-08C3-40A4-B2A6-2F3A8CB8BDA5, OS:10.4, name:Apple Watch Series 9 (41mm) }
{ platform:watchOS Simulator, id:B22A08B0-18B6-43BC-94F1-5C2F83724B73, OS:10.4, name:Apple Watch Series 9 (45mm) }
{ platform:watchOS Simulator, id:797FC64C-7930-4151-8822-6349FA58EFA0, OS:10.4, name:Apple Watch Ultra 2 (49mm) }
{ platform:iOS Simulator, id:80B3B926-14C6-407B-AD45-937DD9D118A2, OS:17.4, name:iPad (10th generation) }
{ platform:iOS Simulator, id:DCA453EF-4DA0-4BCB-9EDB-B627F480EC88, OS:17.4, name:iPad Air (5th generation) }
{ platform:iOS Simulator, id:1DD2445B-C99B-432E-99AB-F239A53F76A7, OS:17.4, name:iPad Pro (11-inch) (4th generation) }
{ platform:iOS Simulator, id:63A2100A-3ABC-479B-927E-0927E96A78B0, OS:17.4, name:iPad Pro (12.9-inch) (6th generation) }
{ platform:iOS Simulator, id:182006EF-3CD1-439B-B898-2FF003963B39, OS:17.4, name:iPad mini (6th generation) }
{ platform:iOS Simulator, id:E86EA00F-56E9-4BD5-BE25-B4AE5E09CD43, OS:17.4, name:iPhone 15 }
{ platform:iOS Simulator, id:724EDFB5-2285-4CCF-A274-5CEAC57CE7ED, OS:17.4, name:iPhone 15 Plus }
{ platform:iOS Simulator, id:FA8EB545-B4CA-4062-86F4-C39DEAD04F1E, OS:17.4, name:iPhone 15 Pro }
{ platform:iOS Simulator, id:4C84A4B0-ABA2-4072-B35C-2EF2B0D49AA7, OS:17.4, name:iPhone 15 Pro Max }
{ platform:iOS Simulator, id:82B3845C-C246-4FEC-B1FB-D4892A314D10, OS:17.4, name:iPhone SE (3rd generation) }
** BUILD FAILED **
The following build commands failed:
	SwiftCompile normal arm64 Compiling\ XCTestCase+HealthApp.swift /Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift (in target 'XCTHealthKit' from project 'XCTHealthKit')
	SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/XCTHealthKit/XCTestCase+HealthApp.swift (in target 'XCTHealthKit' from project 'XCTHealthKit')
(2 failures)
BUILD FAILURE 6.0 macosXcodebuild
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.