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

Successful build of InstaGallery, reference 0.4.2 (c2746f), with Swift 6.1 for iOS using Xcode 16.3 on 27 Apr 2025 04:34:36 UTC.

Swift 6 data race errors: 10

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme InstaGallery -destination generic/platform=iOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures

Build Log

        galleryDataSource?.updateGallery(gallery: gallery)
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Gallery/Data Source/GalleryDataSource.swift:17:10: note: calls to instance method 'updateGallery(gallery:)' from outside of its actor context are implicitly asynchronous
    func updateGallery(gallery: Gallery)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Gallery/Data Source/GalleryDataSource.swift:17:10: note: main actor isolation inferred from conformance to protocol 'UICollectionViewDataSource'
    func updateGallery(gallery: Gallery)
         ^
/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Gallery/Presenter/GalleryPresenter.swift:65:10: note: add '@MainActor' to make instance method 'didLoadUserGallery(gallery:)' part of global actor 'MainActor'
    func didLoadUserGallery(gallery: Gallery) {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Gallery/Presenter/GalleryPresenter.swift:66:28: warning: sending 'gallery' risks causing data races; this is an error in the Swift 6 language mode
        galleryDataSource?.updateGallery(gallery: gallery)
        ~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Gallery/Presenter/GalleryPresenter.swift:66:28: note: sending task-isolated 'gallery' to main actor-isolated instance method 'updateGallery(gallery:)' risks causing data races between main actor-isolated and task-isolated uses
        galleryDataSource?.updateGallery(gallery: gallery)
                           ^
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_workgroup-8OS88JVW1BP2SYAK3Z9NNIWPG.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/os_workgroup-8OS88JVW1BP2SYAK3Z9NNIWPG.scan
SwiftDriverJobDiscovery normal arm64 Compiling resource_bundle_accessor.swift, Constants.swift, ResponseType.swift, UserScope.swift, Notifications.swift, Cursors.swift, Gallery.swift (in target 'InstaGallery' from project 'InstaGallery')
SwiftCompile normal arm64 Compiling\ AuthController.swift,\ AuthControllerInterface.swift,\ AuthFactory.swift,\ AuthInteractor.swift,\ AuthInteractorInterface.swift,\ AuthPresenter.swift,\ AuthPresenterInterface.swift /Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Controller/AuthController.swift /Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Controller/AuthControllerInterface.swift /Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Factory/AuthFactory.swift /Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Interactor/AuthInteractor.swift /Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Interactor/AuthInteractorInterface.swift /Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Presenter/AuthPresenter.swift /Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Presenter/AuthPresenterInterface.swift (in target 'InstaGallery' from project 'InstaGallery')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Controller/AuthController.swift (in target 'InstaGallery' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Controller/AuthController.swift:53:10: warning: main actor-isolated instance method 'setupView()' cannot be used to satisfy nonisolated requirement from protocol 'AuthControllerInterface'; this is an error in the Swift 6 language mode
    func setupView() {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Controller/AuthController.swift:53:10: note: add 'nonisolated' to 'setupView()' to make this instance method not isolated to the actor
    func setupView() {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Controller/AuthController.swift:52:27: note: add '@preconcurrency' to the 'AuthControllerInterface' conformance to defer isolation checking to run time
extension AuthController: AuthControllerInterface {
                          ^
                          @preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Controller/AuthControllerInterface.swift:12:10: note: mark the protocol requirement 'setupView()' 'async' to allow actor-isolated conformances
    func setupView()
         ^
                     async
/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Controller/AuthController.swift:65:10: warning: main actor-isolated instance method 'dismissView()' cannot be used to satisfy nonisolated requirement from protocol 'AuthControllerInterface'; this is an error in the Swift 6 language mode
    func dismissView() {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Controller/AuthController.swift:65:10: note: add 'nonisolated' to 'dismissView()' to make this instance method not isolated to the actor
    func dismissView() {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Controller/AuthControllerInterface.swift:13:10: note: mark the protocol requirement 'dismissView()' 'async' to allow actor-isolated conformances
    func dismissView()
         ^
                       async
/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Controller/AuthController.swift:57:10: warning: main actor-isolated instance method 'loadRequest(request:)' cannot be used to satisfy nonisolated requirement from protocol 'AuthControllerInterface'; this is an error in the Swift 6 language mode
    func loadRequest(request: URLRequest) {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Controller/AuthController.swift:57:10: note: add 'nonisolated' to 'loadRequest(request:)' to make this instance method not isolated to the actor
    func loadRequest(request: URLRequest) {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Controller/AuthControllerInterface.swift:14:10: note: mark the protocol requirement 'loadRequest(request:)' 'async' to allow actor-isolated conformances
    func loadRequest(request: URLRequest)
         ^
                                          async
/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Controller/AuthController.swift:61:10: warning: main actor-isolated instance method 'didLoadUser(user:)' cannot be used to satisfy nonisolated requirement from protocol 'AuthControllerInterface'; this is an error in the Swift 6 language mode
    func didLoadUser(user: User) {
         ^
/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Controller/AuthController.swift:61:10: note: add 'nonisolated' to 'didLoadUser(user:)' to make this instance method not isolated to the actor
    func didLoadUser(user: User) {
         ^
    nonisolated
/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Controller/AuthControllerInterface.swift:15:10: note: mark the protocol requirement 'didLoadUser(user:)' 'async' to allow actor-isolated conformances
    func didLoadUser(user: User)
         ^
                                 async
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Controller/AuthControllerInterface.swift (in target 'InstaGallery' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Factory/AuthFactory.swift (in target 'InstaGallery' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Factory/AuthFactory.swift:14:30: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let viewController = AuthController()
                             ^
/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Controller/AuthController.swift:25:5: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
    init() {
    ^
/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Controller/AuthController.swift:25:5: note: main actor isolation inferred from inheritance from class 'UIViewController'
    init() {
    ^
/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Factory/AuthFactory.swift:13:26: note: add '@MainActor' to make static method 'auth(completionCallback:)' part of global actor 'MainActor'
    internal static func auth(completionCallback: @escaping (() -> Void)) -> AuthController {
                         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Factory/AuthFactory.swift:19:24: warning: main actor-isolated property 'completionCallback' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        viewController.completionCallback = completionCallback
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Controller/AuthController.swift:15:18: note: mutation of this property is only permitted within the actor
    internal var completionCallback :(() -> Void)?
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Factory/AuthFactory.swift:13:26: note: add '@MainActor' to make static method 'auth(completionCallback:)' part of global actor 'MainActor'
    internal static func auth(completionCallback: @escaping (() -> Void)) -> AuthController {
                         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Factory/AuthFactory.swift:20:24: warning: main actor-isolated property 'presenter' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        viewController.presenter = presenter
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Controller/AuthController.swift:14:18: note: mutation of this property is only permitted within the actor
    internal var presenter: AuthPresenterInterface?
                 ^
/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Factory/AuthFactory.swift:13:26: note: add '@MainActor' to make static method 'auth(completionCallback:)' part of global actor 'MainActor'
    internal static func auth(completionCallback: @escaping (() -> Void)) -> AuthController {
                         ^
    @MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Interactor/AuthInteractor.swift (in target 'InstaGallery' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Interactor/AuthInteractorInterface.swift (in target 'InstaGallery' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Presenter/AuthPresenter.swift (in target 'InstaGallery' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Presenter/AuthPresenter.swift:46:17: warning: instance method 'webView(_:decidePolicyFor:decisionHandler:)' nearly matches optional requirement 'webView(_:decidePolicyFor:decisionHandler:)' of protocol 'WKNavigationDelegate'
    public func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping (WKNavigationActionPolicy) -> Swift.Void){
                ^
/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Presenter/AuthPresenter.swift:46:17: note: candidate has non-matching type '(WKWebView, WKNavigationAction, @escaping (WKNavigationActionPolicy) -> Void) -> ()'
    public func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping (WKNavigationActionPolicy) -> Swift.Void){
                ^
/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Presenter/AuthPresenter.swift:46:17: note: move 'webView(_:decidePolicyFor:decisionHandler:)' to another extension to silence this warning
    public func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping (WKNavigationActionPolicy) -> Swift.Void){
                ^
WebKit.WKNavigationDelegate.webView:3:28: note: requirement 'webView(_:decidePolicyFor:decisionHandler:)' declared here
  @MainActor optional func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping @MainActor @Sendable (WKNavigationActionPolicy) -> Void)}
                           ^
/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Presenter/AuthPresenter.swift:47:43: warning: main actor-isolated property 'request' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        guard let code = navigationAction.request.url?.queryParameters?["code"] else {
                                          ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/System/Library/Frameworks/WebKit.framework/Headers/WKNavigationAction.h:78:53: note: property declared here
@property (nonatomic, readonly, copy) NSURLRequest *request;
                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Presenter/AuthPresenter.swift:46:17: note: add '@MainActor' to make instance method 'webView(_:decidePolicyFor:decisionHandler:)' part of global actor 'MainActor'
    public func webView(_ webView: WKWebView, decidePolicyFor navigationAction: WKNavigationAction, decisionHandler: @escaping (WKNavigationActionPolicy) -> Swift.Void){
                ^
    @MainActor
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Presenter/AuthPresenterInterface.swift (in target 'InstaGallery' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling InstagramDataSourceInterface.swift, GalleryMapper.swift, MediaMapper.swift, PagingMapper.swift, UserMapper.swift, UserDataSourceImp.swift, UserDataSourceInterface.swift (in target 'InstaGallery' from project 'InstaGallery')
SwiftDriver\ Compilation CwlCatchException normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CwlCatchException' from project 'CwlCatchException')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CwlCatchException -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlCatchException.build/Debug-iphoneos/CwlCatchException.build/Objects-normal/arm64/CwlCatchException.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CwlCatchExceptionSupport.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -parse-as-library -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlCatchException.build/Debug-iphoneos/CwlCatchException.build/Objects-normal/arm64/CwlCatchException-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/CwlCatchException.build/Debug-iphoneos/CwlCatchException.build/Objects-normal/arm64/CwlCatchException.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/CwlCatchException.build/Debug-iphoneos/CwlCatchException.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlCatchException.build/Debug-iphoneos/CwlCatchException.build/Objects-normal/arm64/CwlCatchException_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlCatchException.build/Debug-iphoneos/CwlCatchException.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlCatchException.build/Debug-iphoneos/CwlCatchException.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlCatchException.build/Debug-iphoneos/CwlCatchException.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/CwlCatchException.build/Debug-iphoneos/CwlCatchException.build/Objects-normal/arm64/CwlCatchException-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Dispatch-33YSG1OAOV2OLGTHQTC738XAV.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Dispatch-33YSG1OAOV2OLGTHQTC738XAV.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreFoundation-BT90GYQAZ2K6S7QQNAYYQ9H7I.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CoreFoundation-BT90GYQAZ2K6S7QQNAYYQ9H7I.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/XPC-CMAYKGOFFD5C0OJPHGE6GRW11.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/XPC-CMAYKGOFFD5C0OJPHGE6GRW11.scan
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Security-JBHJ9IOFPG88B32FE9835B41.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Security-JBHJ9IOFPG88B32FE9835B41.scan
SwiftDriverJobDiscovery normal arm64 Emitting module for InstaGallery (in target 'InstaGallery' from project 'InstaGallery')
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CFNetwork-ED97DBO3FMPFIZS705I8M3ROP.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/CFNetwork-ED97DBO3FMPFIZS705I8M3ROP.scan
SwiftDriver\ Compilation\ Requirements InstaGallery normal arm64 com.apple.xcode.tools.swift.compiler (in target 'InstaGallery' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name InstaGallery -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGallery.build/Objects-normal/arm64/InstaGallery.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGallery.build/Objects-normal/arm64/InstaGallery-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/InstaGallery.build/Debug-iphoneos/InstaGallery.build/Objects-normal/arm64/InstaGallery.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/InstaGallery.build/Debug-iphoneos/InstaGallery.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGallery.build/Objects-normal/arm64/InstaGallery_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGallery.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGallery.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGallery.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/InstaGallery.build/Debug-iphoneos/InstaGallery.build/Objects-normal/arm64/InstaGallery-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/InstaGallery-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGallery.build/Objects-normal/arm64/InstaGallery-Swift.h (in target 'InstaGallery' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGallery.build/Objects-normal/arm64/InstaGallery-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/InstaGallery-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGallery.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGallery.build/Objects-normal/arm64/InstaGallery.swiftmodule (in target 'InstaGallery' from project 'InstaGallery')
    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/InstaGallery.build/Debug-iphoneos/InstaGallery.build/Objects-normal/arm64/InstaGallery.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGallery.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGallery.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGallery.build/Objects-normal/arm64/InstaGallery.swiftdoc (in target 'InstaGallery' from project 'InstaGallery')
    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/InstaGallery.build/Debug-iphoneos/InstaGallery.build/Objects-normal/arm64/InstaGallery.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGallery.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGallery.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGallery.build/Objects-normal/arm64/InstaGallery.abi.json (in target 'InstaGallery' from project 'InstaGallery')
    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/InstaGallery.build/Debug-iphoneos/InstaGallery.build/Objects-normal/arm64/InstaGallery.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGallery.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGallery.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGallery.build/Objects-normal/arm64/InstaGallery.swiftsourceinfo (in target 'InstaGallery' from project 'InstaGallery')
    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/InstaGallery.build/Debug-iphoneos/InstaGallery.build/Objects-normal/arm64/InstaGallery.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGallery.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
SwiftDriver CwlPreconditionTesting normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CwlPreconditionTesting' from project 'CwlPreconditionTesting')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CwlPreconditionTesting -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/Objects-normal/arm64/CwlPreconditionTesting.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CwlCatchExceptionSupport.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CwlMachBadInstructionHandler.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/Objects-normal/arm64/CwlPreconditionTesting-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/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/Objects-normal/arm64/CwlPreconditionTesting.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/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/Objects-normal/arm64/CwlPreconditionTesting_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.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/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/Objects-normal/arm64/CwlPreconditionTesting-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGallery_InstaGallery.bundle (in target 'InstaGallery_InstaGallery' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGallery_InstaGallery.bundle
PrecompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Foundation-2OEL6HJTL90C56ZA7SSY69EE8.scan
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-precompileModule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ExplicitPrecompiledModules/Foundation-2OEL6HJTL90C56ZA7SSY69EE8.scan
SwiftEmitModule normal arm64 Emitting\ module\ for\ CwlPreconditionTesting (in target 'CwlPreconditionTesting' from project 'CwlPreconditionTesting')
EmitSwiftModule normal arm64 (in target 'CwlPreconditionTesting' from project 'CwlPreconditionTesting')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ CwlBadInstructionException.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlBadInstructionException.swift (in target 'CwlPreconditionTesting' from project 'CwlPreconditionTesting')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlBadInstructionException.swift (in target 'CwlPreconditionTesting' from project 'CwlPreconditionTesting')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Emitting module for CwlPreconditionTesting (in target 'CwlPreconditionTesting' from project 'CwlPreconditionTesting')
SwiftDriver\ Compilation\ Requirements CwlPreconditionTesting normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CwlPreconditionTesting' from project 'CwlPreconditionTesting')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CwlPreconditionTesting -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/Objects-normal/arm64/CwlPreconditionTesting.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CwlCatchExceptionSupport.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CwlMachBadInstructionHandler.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/Objects-normal/arm64/CwlPreconditionTesting-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/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/Objects-normal/arm64/CwlPreconditionTesting.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/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/Objects-normal/arm64/CwlPreconditionTesting_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.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/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/Objects-normal/arm64/CwlPreconditionTesting-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlMachBadInstructionHandler.build/Objects-normal/arm64/CwlMachBadInstructionHandler.o /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'CwlMachBadInstructionHandler' from project 'CwlPreconditionTesting')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

    Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlMachBadInstructionHandler.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp

    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -w -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-bool-conversion -Wno-enum-conversion -Wno-float-conversion -Wno-non-literal-null-conversion -Wno-objc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wno-undeclared-selector -Wno-deprecated-implementations -Wno-implicit-fallthrough -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Wno-sign-conversion -Wno-infinite-recursion -Wno-comma -Wno-block-capture-autoreleasing -Wno-strict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlMachBadInstructionHandler.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlMachBadInstructionHandler.build/Objects-normal/arm64/CwlMachBadInstructionHandler.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlMachBadInstructionHandler.build/Objects-normal/arm64/CwlMachBadInstructionHandler.dia -c /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/CwlMachBadInstructionHandler.m -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlMachBadInstructionHandler.build/Objects-normal/arm64/CwlMachBadInstructionHandler.o -index-unit-output-path /CwlPreconditionTesting.build/Debug-iphoneos/CwlMachBadInstructionHandler.build/Objects-normal/arm64/CwlMachBadInstructionHandler.o
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CwlPreconditionTesting-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/Objects-normal/arm64/CwlPreconditionTesting-Swift.h (in target 'CwlPreconditionTesting' from project 'CwlPreconditionTesting')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlPreconditionTesting
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/Objects-normal/arm64/CwlPreconditionTesting-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CwlPreconditionTesting-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CwlPreconditionTesting.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/Objects-normal/arm64/CwlPreconditionTesting.swiftmodule (in target 'CwlPreconditionTesting' from project 'CwlPreconditionTesting')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlPreconditionTesting
    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/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/Objects-normal/arm64/CwlPreconditionTesting.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CwlPreconditionTesting.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CwlPreconditionTesting.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/Objects-normal/arm64/CwlPreconditionTesting.swiftdoc (in target 'CwlPreconditionTesting' from project 'CwlPreconditionTesting')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlPreconditionTesting
    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/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/Objects-normal/arm64/CwlPreconditionTesting.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CwlPreconditionTesting.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CwlPreconditionTesting.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/Objects-normal/arm64/CwlPreconditionTesting.abi.json (in target 'CwlPreconditionTesting' from project 'CwlPreconditionTesting')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlPreconditionTesting
    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/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/Objects-normal/arm64/CwlPreconditionTesting.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CwlPreconditionTesting.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CwlPreconditionTesting.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/Objects-normal/arm64/CwlPreconditionTesting.swiftsourceinfo (in target 'CwlPreconditionTesting' from project 'CwlPreconditionTesting')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlPreconditionTesting
    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/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/Objects-normal/arm64/CwlPreconditionTesting.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CwlPreconditionTesting.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CwlMachBadInstructionHandler.o normal (in target 'CwlMachBadInstructionHandler' from project 'CwlPreconditionTesting')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlPreconditionTesting
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlMachBadInstructionHandler.build/Objects-normal/arm64/CwlMachBadInstructionHandler.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlMachBadInstructionHandler.build/Objects-normal/arm64/CwlMachBadInstructionHandler_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlMachBadInstructionHandler.build/Objects-normal/arm64/CwlMachBadInstructionHandler_dependency_info.dat -fobjc-arc -fobjc-link-runtime -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CwlMachBadInstructionHandler.o
CompileC /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlCatchException.build/Debug-iphoneos/CwlCatchExceptionSupport.build/Objects-normal/arm64/CwlCatchException.o /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/CwlCatchException.m normal arm64 objective-c com.apple.compilers.llvm.clang.1_0.compiler (in target 'CwlCatchExceptionSupport' from project 'CwlCatchException')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

    Using response file: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlCatchException.build/Debug-iphoneos/CwlCatchExceptionSupport.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp

    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -x objective-c -ivfsstatcache /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -fmessage-length\=0 -fdiagnostics-show-note-include-stack -fmacro-backtrace-limit\=0 -fno-color-diagnostics -fmodules-prune-interval\=86400 -fmodules-prune-after\=345600 -fbuild-session-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -fmodules-validate-once-per-build-session -Wnon-modular-include-in-framework-module -Werror\=non-modular-include-in-framework-module -Wno-trigraphs -Wno-missing-field-initializers -Wno-missing-prototypes -Wno-return-type -Wno-implicit-atomic-properties -Wno-objc-interface-ivars -Wno-arc-repeated-use-of-weak -Wno-missing-braces -Wparentheses -Wswitch -Wno-unused-function -Wno-unused-label -Wno-unused-parameter -Wno-unused-variable -Wunused-value -Wno-empty-body -Wno-uninitialized -Wno-unknown-pragmas -w -Wno-shadow -Wno-four-char-constants -Wno-conversion -Wno-constant-conversion -Wno-int-conversion -Wno-bool-conversion -Wno-enum-conversion -Wno-float-conversion -Wno-non-literal-null-conversion -Wno-objc-literal-conversion -Wshorten-64-to-32 -Wpointer-sign -Wno-newline-eof -Wno-selector -Wno-strict-selector-match -Wno-undeclared-selector -Wno-deprecated-implementations -Wno-implicit-fallthrough -fstrict-aliasing -Wprotocol -Wdeprecated-declarations -Wno-sign-conversion -Wno-infinite-recursion -Wno-comma -Wno-block-capture-autoreleasing -Wno-strict-prototypes -Wno-semicolon-before-method-body -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlCatchException.build/Debug-iphoneos/CwlCatchExceptionSupport.build/Objects-normal/arm64/e6072d4f65d7061329687fe24e3d63a7-common-args.resp -MMD -MT dependencies -MF /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlCatchException.build/Debug-iphoneos/CwlCatchExceptionSupport.build/Objects-normal/arm64/CwlCatchException.d --serialize-diagnostics /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlCatchException.build/Debug-iphoneos/CwlCatchExceptionSupport.build/Objects-normal/arm64/CwlCatchException.dia -c /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/CwlCatchException.m -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlCatchException.build/Debug-iphoneos/CwlCatchExceptionSupport.build/Objects-normal/arm64/CwlCatchException.o -index-unit-output-path /CwlCatchException.build/Debug-iphoneos/CwlCatchExceptionSupport.build/Objects-normal/arm64/CwlCatchException.o
SwiftCompile normal arm64 Compiling\ CwlCatchBadInstruction.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlCatchBadInstruction.swift (in target 'CwlPreconditionTesting' from project 'CwlPreconditionTesting')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlCatchBadInstruction.swift (in target 'CwlPreconditionTesting' from project 'CwlPreconditionTesting')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CwlCatchExceptionSupport.o normal (in target 'CwlCatchExceptionSupport' from project 'CwlCatchException')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlCatchException
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlCatchException.build/Debug-iphoneos/CwlCatchExceptionSupport.build/Objects-normal/arm64/CwlCatchExceptionSupport.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlCatchException.build/Debug-iphoneos/CwlCatchExceptionSupport.build/Objects-normal/arm64/CwlCatchExceptionSupport_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlCatchException.build/Debug-iphoneos/CwlCatchExceptionSupport.build/Objects-normal/arm64/CwlCatchExceptionSupport_dependency_info.dat -fobjc-arc -fobjc-link-runtime -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CwlCatchExceptionSupport.o
SwiftDriverJobDiscovery normal arm64 Compiling CwlBadInstructionException.swift (in target 'CwlPreconditionTesting' from project 'CwlPreconditionTesting')
SwiftCompile normal arm64 Compiling\ CwlDarwinDefinitions.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlDarwinDefinitions.swift (in target 'CwlPreconditionTesting' from project 'CwlPreconditionTesting')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlPreconditionTesting/Sources/CwlPreconditionTesting/CwlDarwinDefinitions.swift (in target 'CwlPreconditionTesting' from project 'CwlPreconditionTesting')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling CwlCatchBadInstruction.swift (in target 'CwlPreconditionTesting' from project 'CwlPreconditionTesting')
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGallery_InstaGallery.bundle (in target 'InstaGallery_InstaGallery' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace
    /usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGallery_InstaGallery.bundle
SwiftDriver Nimble normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Nimble -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nimble.build/Debug-iphoneos/Nimble.build/Objects-normal/arm64/Nimble.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CwlCatchExceptionSupport.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CwlMachBadInstructionHandler.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nimble.build/Debug-iphoneos/Nimble.build/Objects-normal/arm64/Nimble-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/Nimble.build/Debug-iphoneos/Nimble.build/Objects-normal/arm64/Nimble.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/Nimble.build/Debug-iphoneos/Nimble.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nimble.build/Debug-iphoneos/Nimble.build/Objects-normal/arm64/Nimble_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nimble.build/Debug-iphoneos/Nimble.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nimble.build/Debug-iphoneos/Nimble.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nimble.build/Debug-iphoneos/Nimble.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/Nimble.build/Debug-iphoneos/Nimble.build/Objects-normal/arm64/Nimble-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling CwlDarwinDefinitions.swift (in target 'CwlPreconditionTesting' from project 'CwlPreconditionTesting')
SwiftDriver\ Compilation CwlPreconditionTesting normal arm64 com.apple.xcode.tools.swift.compiler (in target 'CwlPreconditionTesting' from project 'CwlPreconditionTesting')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name CwlPreconditionTesting -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/Objects-normal/arm64/CwlPreconditionTesting.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CwlCatchExceptionSupport.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CwlMachBadInstructionHandler.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/Objects-normal/arm64/CwlPreconditionTesting-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/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/Objects-normal/arm64/CwlPreconditionTesting.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/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/Objects-normal/arm64/CwlPreconditionTesting_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.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/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/Objects-normal/arm64/CwlPreconditionTesting-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CwlMachBadInstructionHandler.o (in target 'CwlMachBadInstructionHandler' from project 'CwlPreconditionTesting')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlPreconditionTesting
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CwlMachBadInstructionHandler.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CwlCatchExceptionSupport.o (in target 'CwlCatchExceptionSupport' from project 'CwlCatchException')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlCatchException
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CwlCatchExceptionSupport.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CwlCatchException.o normal (in target 'CwlCatchException' from project 'CwlCatchException')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlCatchException
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlCatchException.build/Debug-iphoneos/CwlCatchException.build/Objects-normal/arm64/CwlCatchException.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlCatchException.build/Debug-iphoneos/CwlCatchException.build/Objects-normal/arm64/CwlCatchException_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlCatchException.build/Debug-iphoneos/CwlCatchException.build/Objects-normal/arm64/CwlCatchException_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlCatchException.build/Debug-iphoneos/CwlCatchException.build/Objects-normal/arm64/CwlCatchException.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CwlCatchException.o
SwiftEmitModule normal arm64 Emitting\ module\ for\ Nimble (in target 'Nimble' from project 'Nimble')
EmitSwiftModule normal arm64 (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ Expression.swift,\ FailureMessage.swift,\ AllPass.swift,\ Async.swift,\ BeAKindOf.swift,\ BeAnInstanceOf.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Expression.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/FailureMessage.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/AllPass.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/Async.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/BeAKindOf.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/BeAnInstanceOf.swift (in target 'Nimble' from project 'Nimble')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Expression.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/FailureMessage.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/AllPass.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/Async.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/BeAKindOf.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/BeAnInstanceOf.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ BeCloseTo.swift,\ BeEmpty.swift,\ BeGreaterThan.swift,\ BeGreaterThanOrEqualTo.swift,\ BeIdenticalTo.swift,\ BeLessThan.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/BeCloseTo.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/BeEmpty.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/BeGreaterThan.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/BeIdenticalTo.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/BeLessThan.swift (in target 'Nimble' from project 'Nimble')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/BeCloseTo.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/BeEmpty.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/BeGreaterThan.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/BeIdenticalTo.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/BeLessThan.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling CursorDTO.swift, GalleryDTO.swift, MediaDTO.swift, MediaTypeDTO.swift, PagingDTO.swift, UserDTO.swift, InstagramDataSource.swift (in target 'InstaGallery' from project 'InstaGallery')
SwiftCompile normal arm64 Compiling\ Equal+Tuple.swift,\ Equal.swift,\ HaveCount.swift,\ Match.swift,\ MatchError.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/Equal+Tuple.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/Equal.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/HaveCount.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/Match.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/MatchError.swift (in target 'Nimble' from project 'Nimble')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/Equal+Tuple.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/Equal.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/HaveCount.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/Match.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/MatchError.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling InstaGalleryError.swift, Data+Extension.swift, Dictionary+Extension.swift, String+Extensions.swift, UIImageView+Extension.swift, URL+Extension.swift, InstaGallery.swift (in target 'InstaGallery' from project 'InstaGallery')
SwiftCompile normal arm64 Compiling\ BeLessThanOrEqual.swift,\ BeLogical.swift,\ BeNil.swift,\ BeVoid.swift,\ BeginWith.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/BeLessThanOrEqual.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/BeLogical.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/BeNil.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/BeVoid.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/BeginWith.swift (in target 'Nimble' from project 'Nimble')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/BeLessThanOrEqual.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/BeLogical.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/BeNil.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/BeVoid.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/BeginWith.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling AuthRouting.swift, AuthRoutingInterface.swift, GalleryCell.swift, GalleryCellViewModel.swift, GalleryController.swift, GalleryControllerInterface.swift (in target 'InstaGallery' from project 'InstaGallery')
SwiftCompile normal arm64 Compiling\ BeginWithPrefix.swift,\ Contain.swift,\ ContainElementSatisfying.swift,\ ElementsEqual.swift,\ EndWith.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/BeginWithPrefix.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/Contain.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/ContainElementSatisfying.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/ElementsEqual.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/EndWith.swift (in target 'Nimble' from project 'Nimble')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/BeginWithPrefix.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/Contain.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/ContainElementSatisfying.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/ElementsEqual.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/EndWith.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling InstaMediaType.swift, Media.swift, Paging.swift, User.swift, BundleDataSourceBaseInterface.swift, BundleDataSourceInterface.swift, AuthenticationDTO.swift (in target 'InstaGallery' from project 'InstaGallery')
SwiftCompile normal arm64 Compiling\ NimbleXCTestHandler.swift,\ ExceptionCapture.swift,\ DSL+Wait.swift,\ DSL.swift,\ Expectation.swift,\ ExpectationMessage.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Adapters/NimbleXCTestHandler.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Adapters/NonObjectiveC/ExceptionCapture.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/DSL+Wait.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/DSL.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Expectation.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/ExpectationMessage.swift (in target 'Nimble' from project 'Nimble')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Adapters/NimbleXCTestHandler.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Adapters/NonObjectiveC/ExceptionCapture.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/DSL+Wait.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/DSL.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Expectation.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/ExpectationMessage.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling BaseRequest.swift, Request.swift, RequestHeaders.swift, RequestMethods.swift, APIURLProvider.swift, AuthURLProvider.swift, URLBaseProvider.swift (in target 'InstaGallery' from project 'InstaGallery')
SwiftCompile normal arm64 Compiling\ AdapterProtocols.swift,\ AssertionDispatcher.swift,\ AssertionRecorder.swift,\ NMBExpectation.swift,\ NMBObjCMatcher.swift,\ NimbleEnvironment.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Adapters/AdapterProtocols.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Adapters/AssertionDispatcher.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Adapters/AssertionRecorder.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Adapters/NMBExpectation.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Adapters/NMBObjCMatcher.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Adapters/NimbleEnvironment.swift (in target 'Nimble' from project 'Nimble')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Adapters/AdapterProtocols.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Adapters/AssertionDispatcher.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Adapters/AssertionRecorder.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Adapters/NMBExpectation.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Adapters/NMBObjCMatcher.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Adapters/NimbleEnvironment.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling GalleryDataSource.swift, GalleryDataSourceImp.swift, GalleryFactory.swift, GalleryInteractor.swift, GalleryInteractorInterface.swift, GalleryPresenter.swift (in target 'InstaGallery' from project 'InstaGallery')
SwiftCompile normal arm64 Compiling\ SatisfyAllOf.swift,\ SatisfyAnyOf.swift,\ ThrowAssertion.swift,\ ThrowError.swift,\ ToSucceed.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/SatisfyAllOf.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/SatisfyAnyOf.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/ThrowAssertion.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/ThrowError.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/ToSucceed.swift (in target 'Nimble' from project 'Nimble')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/SatisfyAllOf.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/SatisfyAnyOf.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/ThrowAssertion.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/ThrowError.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/ToSucceed.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling GalleryPresenterInterface.swift, GalleryRouting.swift, GalleryRoutingInterface.swift, UserDefaultsImp.swift, UserDefaultsInterface.swift, ManagerUtils.swift (in target 'InstaGallery' from project 'InstaGallery')
SwiftCompile normal arm64 Compiling\ MatcherFunc.swift,\ MatcherProtocols.swift,\ PostNotification.swift,\ Predicate.swift,\ RaisesException.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/MatcherFunc.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/MatcherProtocols.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/PostNotification.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/Predicate.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/RaisesException.swift (in target 'Nimble' from project 'Nimble')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/MatcherFunc.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/MatcherProtocols.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/PostNotification.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/Predicate.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Matchers/RaisesException.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling AuthController.swift, AuthControllerInterface.swift, AuthFactory.swift, AuthInteractor.swift, AuthInteractorInterface.swift, AuthPresenter.swift, AuthPresenterInterface.swift (in target 'InstaGallery' from project 'InstaGallery')
SwiftCompile normal arm64 Compiling\ Await.swift,\ DispatchTimeInterval.swift,\ Errors.swift,\ SourceLocation.swift,\ Stringers.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Utils/Await.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Utils/DispatchTimeInterval.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Utils/Errors.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Utils/SourceLocation.swift /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Utils/Stringers.swift (in target 'Nimble' from project 'Nimble')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Utils/Await.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Utils/DispatchTimeInterval.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Utils/Errors.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Utils/SourceLocation.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble/Sources/Nimble/Utils/Stringers.swift (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Emitting module for Nimble (in target 'Nimble' from project 'Nimble')
SwiftDriver\ Compilation\ Requirements Nimble normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Nimble -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nimble.build/Debug-iphoneos/Nimble.build/Objects-normal/arm64/Nimble.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CwlCatchExceptionSupport.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CwlMachBadInstructionHandler.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nimble.build/Debug-iphoneos/Nimble.build/Objects-normal/arm64/Nimble-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/Nimble.build/Debug-iphoneos/Nimble.build/Objects-normal/arm64/Nimble.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/Nimble.build/Debug-iphoneos/Nimble.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nimble.build/Debug-iphoneos/Nimble.build/Objects-normal/arm64/Nimble_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nimble.build/Debug-iphoneos/Nimble.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nimble.build/Debug-iphoneos/Nimble.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nimble.build/Debug-iphoneos/Nimble.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/Nimble.build/Debug-iphoneos/Nimble.build/Objects-normal/arm64/Nimble-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling AdapterProtocols.swift, AssertionDispatcher.swift, AssertionRecorder.swift, NMBExpectation.swift, NMBObjCMatcher.swift, NimbleEnvironment.swift (in target 'Nimble' from project 'Nimble')
SwiftDriver\ Compilation InstaGallery normal arm64 com.apple.xcode.tools.swift.compiler (in target 'InstaGallery' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name InstaGallery -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGallery.build/Objects-normal/arm64/InstaGallery.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGallery.build/Objects-normal/arm64/InstaGallery-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/InstaGallery.build/Debug-iphoneos/InstaGallery.build/Objects-normal/arm64/InstaGallery.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/InstaGallery.build/Debug-iphoneos/InstaGallery.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGallery.build/Objects-normal/arm64/InstaGallery_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGallery.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGallery.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGallery.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/InstaGallery.build/Debug-iphoneos/InstaGallery.build/Objects-normal/arm64/InstaGallery-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/Nimble-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nimble.build/Debug-iphoneos/Nimble.build/Objects-normal/arm64/Nimble-Swift.h (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nimble.build/Debug-iphoneos/Nimble.build/Objects-normal/arm64/Nimble-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/Nimble-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Nimble.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nimble.build/Debug-iphoneos/Nimble.build/Objects-normal/arm64/Nimble.swiftmodule (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble
    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/Nimble.build/Debug-iphoneos/Nimble.build/Objects-normal/arm64/Nimble.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Nimble.swiftmodule/arm64-apple-ios.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Nimble.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nimble.build/Debug-iphoneos/Nimble.build/Objects-normal/arm64/Nimble.swiftdoc (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble
    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/Nimble.build/Debug-iphoneos/Nimble.build/Objects-normal/arm64/Nimble.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Nimble.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Nimble.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nimble.build/Debug-iphoneos/Nimble.build/Objects-normal/arm64/Nimble.abi.json (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble
    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/Nimble.build/Debug-iphoneos/Nimble.build/Objects-normal/arm64/Nimble.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Nimble.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Nimble.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nimble.build/Debug-iphoneos/Nimble.build/Objects-normal/arm64/Nimble.swiftsourceinfo (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble
    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/Nimble.build/Debug-iphoneos/Nimble.build/Objects-normal/arm64/Nimble.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Nimble.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGallery.o normal (in target 'InstaGallery' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios13.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGallery.build/Objects-normal/arm64/InstaGallery.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGallery.build/Objects-normal/arm64/InstaGallery_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGallery.build/Objects-normal/arm64/InstaGallery_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGallery.build/Objects-normal/arm64/InstaGallery.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGallery.o
ExtractAppIntentsMetadata (in target 'CwlCatchException' from project 'CwlCatchException')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlCatchException
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name CwlCatchException --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 12.0 --bundle-identifier cwlcatchexception.CwlCatchException --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CwlCatchException.appintents --target-triple arm64-apple-ios12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CwlCatchException.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlCatchException.build/Debug-iphoneos/CwlCatchException.build/Objects-normal/arm64/CwlCatchException_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlCatchException.build/Debug-iphoneos/CwlCatchException.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlCatchException.build/Debug-iphoneos/CwlCatchException.build/Objects-normal/arm64/CwlCatchException.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlCatchException.build/Debug-iphoneos/CwlCatchException.build/CwlCatchException.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlCatchException.build/Debug-iphoneos/CwlCatchException.build/CwlCatchException.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlCatchException.build/Debug-iphoneos/CwlCatchException.build/Objects-normal/arm64/CwlCatchException.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-26 21:34:34.572 appintentsmetadataprocessor[1001:5412] Starting appintentsmetadataprocessor export
2025-04-26 21:34:34.626 appintentsmetadataprocessor[1001:5412] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling BeLessThanOrEqual.swift, BeLogical.swift, BeNil.swift, BeVoid.swift, BeginWith.swift (in target 'Nimble' from project 'Nimble')
ExtractAppIntentsMetadata (in target 'InstaGallery' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name InstaGallery --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 13.0 --bundle-identifier spi-builder-workspace.InstaGallery --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGallery.appintents --target-triple arm64-apple-ios13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGallery.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGallery.build/Objects-normal/arm64/InstaGallery_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGallery.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGallery.build/Objects-normal/arm64/InstaGallery.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGallery.build/InstaGallery.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGallery.build/InstaGallery.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGallery.build/Objects-normal/arm64/InstaGallery.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-26 21:34:34.572 appintentsmetadataprocessor[1002:5413] Starting appintentsmetadataprocessor export
2025-04-26 21:34:34.626 appintentsmetadataprocessor[1002:5413] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling Equal+Tuple.swift, Equal.swift, HaveCount.swift, Match.swift, MatchError.swift (in target 'Nimble' from project 'Nimble')
SwiftDriver InstaGalleryTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'InstaGalleryTests' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-SwiftDriver -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name InstaGalleryTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/Objects-normal/arm64/InstaGalleryTests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CwlCatchExceptionSupport.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CwlMachBadInstructionHandler.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/Objects-normal/arm64/InstaGalleryTests-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/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/Objects-normal/arm64/InstaGalleryTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/Objects-normal/arm64/InstaGalleryTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftEmitModule normal arm64 Emitting\ module\ for\ InstaGalleryTests (in target 'InstaGalleryTests' from project 'InstaGallery')
EmitSwiftModule normal arm64 (in target 'InstaGalleryTests' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ AuthenticationInteractorTests.swift,\ AuthenticationPresenterTests.swift /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Authentication/Tests/AuthenticationInteractorTests.swift /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Authentication/Tests/AuthenticationPresenterTests.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Authentication/Tests/AuthenticationInteractorTests.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Authentication/Tests/AuthenticationPresenterTests.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

/Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Authentication/Tests/AuthenticationPresenterTests.swift:36:13: warning: call to main actor-isolated instance method 'viewLoaded()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.viewLoaded()
            ^
/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Presenter/AuthPresenter.swift:19:10: note: calls to instance method 'viewLoaded()' from outside of its actor context are implicitly asynchronous
    func viewLoaded() {
         ^
/Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Authentication/Tests/AuthenticationPresenterTests.swift:35:10: note: add '@MainActor' to make instance method 'testViewLoaded()' part of global actor 'MainActor'
    func testViewLoaded() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Authentication/Tests/AuthenticationPresenterTests.swift:45:13: warning: call to main actor-isolated instance method 'load()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.load()
            ^
/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Presenter/AuthPresenter.swift:23:10: note: calls to instance method 'load()' from outside of its actor context are implicitly asynchronous
    func load() {
         ^
/Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Authentication/Tests/AuthenticationPresenterTests.swift:41:10: note: add '@MainActor' to make instance method 'testLoad()' part of global actor 'MainActor'
    func testLoad() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Authentication/Tests/AuthenticationPresenterTests.swift:53:13: warning: call to main actor-isolated instance method 'load()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.load()
            ^
/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Presenter/AuthPresenter.swift:23:10: note: calls to instance method 'load()' from outside of its actor context are implicitly asynchronous
    func load() {
         ^
/Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Authentication/Tests/AuthenticationPresenterTests.swift:50:10: note: add '@MainActor' to make instance method 'testFailLoad()' part of global actor 'MainActor'
    func testFailLoad() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Authentication/Tests/AuthenticationPresenterTests.swift:59:13: warning: call to main actor-isolated instance method 'dismiss()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        sut.dismiss()
            ^
/Users/admin/builder/spi-builder-workspace/Sources/InstaGallery/UI/Controllers/Authorization/Presenter/AuthPresenter.swift:29:10: note: calls to instance method 'dismiss()' from outside of its actor context are implicitly asynchronous
    func dismiss() {
         ^
/Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Authentication/Tests/AuthenticationPresenterTests.swift:58:10: note: add '@MainActor' to make instance method 'dismiss()' part of global actor 'MainActor'
    func dismiss() {
         ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Authentication/Tests/AuthenticationPresenterTests.swift:36:13: warning: sending 'self.sut' risks causing data races; this is an error in the Swift 6 language mode
        sut.viewLoaded()
        ~~~~^~~~~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Authentication/Tests/AuthenticationPresenterTests.swift:36:13: note: sending task-isolated 'self.sut' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
        sut.viewLoaded()
            ^
/Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Authentication/Tests/AuthenticationPresenterTests.swift:45:13: warning: sending 'self.sut' risks causing data races; this is an error in the Swift 6 language mode
        sut.load()
        ~~~~^~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Authentication/Tests/AuthenticationPresenterTests.swift:45:13: note: sending task-isolated 'self.sut' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
        sut.load()
            ^
/Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Authentication/Tests/AuthenticationPresenterTests.swift:53:13: warning: sending 'self.sut' risks causing data races; this is an error in the Swift 6 language mode
        sut.load()
        ~~~~^~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Authentication/Tests/AuthenticationPresenterTests.swift:53:13: note: sending task-isolated 'self.sut' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
        sut.load()
            ^
/Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Authentication/Tests/AuthenticationPresenterTests.swift:59:13: warning: sending 'self.sut' risks causing data races; this is an error in the Swift 6 language mode
        sut.dismiss()
        ~~~~^~~~~~~~~
/Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Authentication/Tests/AuthenticationPresenterTests.swift:59:13: note: sending task-isolated 'self.sut' to main actor-isolated callee risks causing data races between main actor-isolated and task-isolated uses
        sut.dismiss()
            ^
SwiftCompile normal arm64 Compiling\ UserMapperTests.swift,\ IGCursorMother.swift /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Mappers/UserMapperTests.swift /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Mothers/IGCursorMother.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Mappers/UserMapperTests.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Mothers/IGCursorMother.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 Compiling\ InstagramDataSourceMock.swift,\ PagingMapperTests.swift /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Instagram\ Data\ Source/InstagramDataSourceMock.swift /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Mappers/PagingMapperTests.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Instagram\ Data\ Source/InstagramDataSourceMock.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Mappers/PagingMapperTests.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling MatcherFunc.swift, MatcherProtocols.swift, PostNotification.swift, Predicate.swift, RaisesException.swift (in target 'Nimble' from project 'Nimble')
SwiftCompile normal arm64 Compiling\ UserDefaultsTests.swift /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/User\ Defaults/UserDefaultsTests.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/User\ Defaults/UserDefaultsTests.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Expression.swift, FailureMessage.swift, AllPass.swift, Async.swift, BeAKindOf.swift, BeAnInstanceOf.swift (in target 'Nimble' from project 'Nimble')
SwiftCompile normal arm64 Compiling\ AuthInteractorInputMock.swift,\ AuthInteractorOutputMock.swift /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Authentication/Mocks/AuthInteractorInputMock.swift /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Authentication/Mocks/AuthInteractorOutputMock.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Authentication/Mocks/AuthInteractorInputMock.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Authentication/Mocks/AuthInteractorOutputMock.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling BeCloseTo.swift, BeEmpty.swift, BeGreaterThan.swift, BeGreaterThanOrEqualTo.swift, BeIdenticalTo.swift, BeLessThan.swift (in target 'Nimble' from project 'Nimble')
SwiftCompile normal arm64 Compiling\ AuthRoutingMock.swift,\ AuthViewMock.swift /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Authentication/Mocks/AuthRoutingMock.swift /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Authentication/Mocks/AuthViewMock.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Authentication/Mocks/AuthRoutingMock.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Authentication/Mocks/AuthViewMock.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling SatisfyAllOf.swift, SatisfyAnyOf.swift, ThrowAssertion.swift, ThrowError.swift, ToSucceed.swift (in target 'Nimble' from project 'Nimble')
SwiftCompile normal arm64 Compiling\ IGUserMother.swift,\ UserDataSourceMock.swift /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Mothers/IGUserMother.swift /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/User\ Data\ Source/Mocks/UserDataSourceMock.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Mothers/IGUserMother.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/User\ Data\ Source/Mocks/UserDataSourceMock.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling BeginWithPrefix.swift, Contain.swift, ContainElementSatisfying.swift, ElementsEqual.swift, EndWith.swift (in target 'Nimble' from project 'Nimble')
SwiftCompile normal arm64 Compiling\ BundleDataSourceMock.swift,\ InstaGalleryTests.swift /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Bundle\ Data\ Source/Mock/BundleDataSourceMock.swift /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/InstaGalleryTests.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Bundle\ Data\ Source/Mock/BundleDataSourceMock.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/InstaGalleryTests.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling NimbleXCTestHandler.swift, ExceptionCapture.swift, DSL+Wait.swift, DSL.swift, Expectation.swift, ExpectationMessage.swift (in target 'Nimble' from project 'Nimble')
SwiftCompile normal arm64 Compiling\ UserDataSourceTests.swift /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/User\ Data\ Source/UserDataSourceTests.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/User\ Data\ Source/UserDataSourceTests.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftDriverJobDiscovery normal arm64 Compiling Await.swift, DispatchTimeInterval.swift, Errors.swift, SourceLocation.swift, Stringers.swift (in target 'Nimble' from project 'Nimble')
SwiftDriver\ Compilation Nimble normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Nimble -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nimble.build/Debug-iphoneos/Nimble.build/Objects-normal/arm64/Nimble.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CwlCatchExceptionSupport.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CwlMachBadInstructionHandler.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios12.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -suppress-warnings -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nimble.build/Debug-iphoneos/Nimble.build/Objects-normal/arm64/Nimble-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/Nimble.build/Debug-iphoneos/Nimble.build/Objects-normal/arm64/Nimble.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/Nimble.build/Debug-iphoneos/Nimble.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nimble.build/Debug-iphoneos/Nimble.build/Objects-normal/arm64/Nimble_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nimble.build/Debug-iphoneos/Nimble.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nimble.build/Debug-iphoneos/Nimble.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nimble.build/Debug-iphoneos/Nimble.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/Nimble.build/Debug-iphoneos/Nimble.build/Objects-normal/arm64/Nimble-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Emitting module for InstaGalleryTests (in target 'InstaGalleryTests' from project 'InstaGallery')
SwiftDriver\ Compilation\ Requirements InstaGalleryTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'InstaGalleryTests' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name InstaGalleryTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/Objects-normal/arm64/InstaGalleryTests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CwlCatchExceptionSupport.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CwlMachBadInstructionHandler.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/Objects-normal/arm64/InstaGalleryTests-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/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/Objects-normal/arm64/InstaGalleryTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/Objects-normal/arm64/InstaGalleryTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftCompile normal arm64 Compiling\ IGPagingMother.swift,\ IGUserDTOMother.swift /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Mothers/IGPagingMother.swift /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Mothers/IGUserDTOMother.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Mothers/IGPagingMother.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/InstaGalleryTests/Mothers/IGUserDTOMother.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode

Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.swiftmodule/arm64-apple-ios.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/Objects-normal/arm64/InstaGalleryTests.swiftmodule (in target 'InstaGalleryTests' from project 'InstaGallery')
    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/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/Objects-normal/arm64/InstaGalleryTests.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.swiftmodule/arm64-apple-ios.swiftmodule
SwiftDriverJobDiscovery normal arm64 Compiling UserDefaultsTests.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.swiftmodule/arm64-apple-ios.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/Objects-normal/arm64/InstaGalleryTests.swiftdoc (in target 'InstaGalleryTests' from project 'InstaGallery')
    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/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/Objects-normal/arm64/InstaGalleryTests.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.swiftmodule/arm64-apple-ios.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.swiftmodule/arm64-apple-ios.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/Objects-normal/arm64/InstaGalleryTests.abi.json (in target 'InstaGalleryTests' from project 'InstaGallery')
    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/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/Objects-normal/arm64/InstaGalleryTests.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.swiftmodule/arm64-apple-ios.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/Objects-normal/arm64/InstaGalleryTests.swiftsourceinfo (in target 'InstaGalleryTests' from project 'InstaGallery')
    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/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/Objects-normal/arm64/InstaGalleryTests.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling AuthRoutingMock.swift, AuthViewMock.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGallery.o (in target 'InstaGallery' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGallery.o
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CwlCatchException.o (in target 'CwlCatchException' from project 'CwlCatchException')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlCatchException
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CwlCatchException.o
SwiftDriverJobDiscovery normal arm64 Compiling AuthInteractorInputMock.swift, AuthInteractorOutputMock.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CwlPreconditionTesting.o normal (in target 'CwlPreconditionTesting' from project 'CwlPreconditionTesting')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlPreconditionTesting
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/Objects-normal/arm64/CwlPreconditionTesting.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/Objects-normal/arm64/CwlPreconditionTesting_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/Objects-normal/arm64/CwlPreconditionTesting_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/Objects-normal/arm64/CwlPreconditionTesting.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CwlPreconditionTesting.o
ExtractAppIntentsMetadata (in target 'CwlPreconditionTesting' from project 'CwlPreconditionTesting')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlPreconditionTesting
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name CwlPreconditionTesting --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 12.0 --bundle-identifier cwlpreconditiontesting.CwlPreconditionTesting --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CwlPreconditionTesting.appintents --target-triple arm64-apple-ios12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CwlPreconditionTesting.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/Objects-normal/arm64/CwlPreconditionTesting_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/Objects-normal/arm64/CwlPreconditionTesting.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/CwlPreconditionTesting.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/CwlPreconditionTesting.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/Objects-normal/arm64/CwlPreconditionTesting.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-26 21:34:35.125 appintentsmetadataprocessor[1016:5504] Starting appintentsmetadataprocessor export
2025-04-26 21:34:35.163 appintentsmetadataprocessor[1016:5504] Extracted no relevant App Intents symbols, skipping writing output
SwiftDriverJobDiscovery normal arm64 Compiling UserMapperTests.swift, IGCursorMother.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
SwiftDriverJobDiscovery normal arm64 Compiling InstagramDataSourceMock.swift, PagingMapperTests.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
SwiftDriverJobDiscovery normal arm64 Compiling IGUserMother.swift, UserDataSourceMock.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
SwiftDriverJobDiscovery normal arm64 Compiling BundleDataSourceMock.swift, InstaGalleryTests.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CwlPreconditionTesting.o (in target 'CwlPreconditionTesting' from project 'CwlPreconditionTesting')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlPreconditionTesting
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/CwlPreconditionTesting.o
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Nimble.o normal (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios12.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -w -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nimble.build/Debug-iphoneos/Nimble.build/Objects-normal/arm64/Nimble.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nimble.build/Debug-iphoneos/Nimble.build/Objects-normal/arm64/Nimble_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nimble.build/Debug-iphoneos/Nimble.build/Objects-normal/arm64/Nimble_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nimble.build/Debug-iphoneos/Nimble.build/Objects-normal/arm64/Nimble.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Nimble.o
SwiftDriverJobDiscovery normal arm64 Compiling UserDataSourceTests.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
SwiftDriverJobDiscovery normal arm64 Compiling AuthenticationInteractorTests.swift, AuthenticationPresenterTests.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
SwiftDriverJobDiscovery normal arm64 Compiling IGPagingMother.swift, IGUserDTOMother.swift (in target 'InstaGalleryTests' from project 'InstaGallery')
SwiftDriver\ Compilation InstaGalleryTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'InstaGalleryTests' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name InstaGalleryTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/Objects-normal/arm64/InstaGalleryTests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CwlCatchExceptionSupport.modulemap -Xcc -fmodule-map-file\=/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-iphoneos/CwlMachBadInstructionHandler.modulemap -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -target arm64-apple-ios13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/iphoneos18.4-22E235-339d34bc69d7fc736c3220795c36f340.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/Objects-normal/arm64/InstaGalleryTests-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/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/Objects-normal/arm64/InstaGalleryTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/Objects-normal/arm64/InstaGalleryTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlCatchException/Sources/CwlCatchExceptionSupport/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/CwlPreconditionTesting/Sources/CwlMachBadInstructionHandler/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
ExtractAppIntentsMetadata (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name Nimble --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 12.0 --bundle-identifier nimble.Nimble --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Nimble.appintents --target-triple arm64-apple-ios12.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Nimble.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nimble.build/Debug-iphoneos/Nimble.build/Objects-normal/arm64/Nimble_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nimble.build/Debug-iphoneos/Nimble.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nimble.build/Debug-iphoneos/Nimble.build/Objects-normal/arm64/Nimble.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nimble.build/Debug-iphoneos/Nimble.build/Nimble.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nimble.build/Debug-iphoneos/Nimble.build/Nimble.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nimble.build/Debug-iphoneos/Nimble.build/Objects-normal/arm64/Nimble.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-26 21:34:35.228 appintentsmetadataprocessor[1019:5524] Starting appintentsmetadataprocessor export
2025-04-26 21:34:35.263 appintentsmetadataprocessor[1019:5524] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Nimble.o (in target 'Nimble' from project 'Nimble')
    cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/Nimble
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/Nimble.o
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.xctest/InstaGallery_InstaGallery.bundle /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGallery_InstaGallery.bundle (in target 'InstaGalleryTests' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGallery_InstaGallery.bundle /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.xctest
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.xctest/InstaGalleryTests normal (in target 'InstaGalleryTests' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-ios13.0 -bundle -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-iphoneos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/Objects-normal/arm64/InstaGalleryTests.LinkFileList -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/PackageFrameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/../Frameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/Objects-normal/arm64/InstaGalleryTests_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/Objects-normal/arm64/InstaGalleryTests_dependency_info.dat -fobjc-link-runtime -fprofile-instr-generate -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/Objects-normal/arm64/InstaGalleryTests.swiftmodule -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -framework XCTest -lXCTestSwiftSupport -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.xctest/InstaGalleryTests -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGallery.build/Objects-normal/arm64/InstaGallery.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Nimble.build/Debug-iphoneos/Nimble.build/Objects-normal/arm64/Nimble.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlPreconditionTesting.build/Debug-iphoneos/CwlPreconditionTesting.build/Objects-normal/arm64/CwlPreconditionTesting.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/CwlCatchException.build/Debug-iphoneos/CwlCatchException.build/Objects-normal/arm64/CwlCatchException.swiftmodule
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.xctest/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/empty-InstaGalleryTests.plist (in target 'InstaGalleryTests' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/empty-InstaGalleryTests.plist -producttype com.apple.product-type.bundle.unit-test -expandbuildsettings -format binary -platform iphoneos -scanforprivacyfile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.xctest/InstaGallery_InstaGallery.bundle -requiredArchitecture arm64 -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.xctest/Info.plist
CopySwiftLibs /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.xctest (in target 'InstaGalleryTests' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftStdLibTool --copy --verbose --scan-executable /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.xctest/InstaGalleryTests --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.xctest/Frameworks --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.xctest/PlugIns --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.xctest/SystemExtensions --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.xctest/Extensions --platform iphoneos --toolchain /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --destination /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.xctest/Frameworks --strip-bitcode --scan-executable /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib/libXCTestSwiftSupport.dylib --strip-bitcode-tool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip --emit-dependency-info /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/SwiftStdLibToolInputDependencies.dep --filter-for-swift-os --back-deploy-swift-concurrency
Ignoring --strip-bitcode because --sign was not passed
Copying /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift-5.5/iphoneos/libswift_Concurrency.dylib to /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.xctest/Frameworks/libswift_Concurrency.dylib
ExtractAppIntentsMetadata (in target 'InstaGalleryTests' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name InstaGalleryTests --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS18.4.sdk --xcode-version 16E140 --platform-family iOS --deployment-target 13.0 --bundle-identifier spi-builder-workspace.InstaGalleryTests --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.xctest --target-triple arm64-apple-ios13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.xctest/InstaGalleryTests --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/Objects-normal/arm64/InstaGalleryTests_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/Objects-normal/arm64/InstaGalleryTests.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/InstaGalleryTests.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/InstaGalleryTests.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/Objects-normal/arm64/InstaGalleryTests.SwiftConstValuesFileList --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-26 21:34:35.470 appintentsmetadataprocessor[1022:5550] Starting appintentsmetadataprocessor export
2025-04-26 21:34:35.473 appintentsmetadataprocessor[1022:5550] warning: Metadata extraction skipped. No AppIntents.framework dependency found.
GenerateDSYMFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.xctest.dSYM /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.xctest/InstaGalleryTests (in target 'InstaGalleryTests' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/dsymutil /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.xctest/InstaGalleryTests -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.xctest.dSYM
AppIntentsSSUTraining (in target 'InstaGalleryTests' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsnltrainingprocessor --infoplist-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.xctest/Info.plist --temp-dir-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/ssu --bundle-id spi-builder-workspace.InstaGalleryTests --product-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.xctest --extracted-metadata-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.xctest/Metadata.appintents --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/InstaGallery.build/Debug-iphoneos/InstaGalleryTests.build/InstaGalleryTests.DependencyMetadataFileList --archive-ssu-assets
2025-04-26 21:34:35.501 appintentsnltrainingprocessor[1024:5552] Parsing options for appintentsnltrainingprocessor
2025-04-26 21:34:35.503 appintentsnltrainingprocessor[1024:5552] No AppShortcuts found - Skipping.
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.xctest (in target 'InstaGalleryTests' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.xctest
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.xctest (in target 'InstaGalleryTests' from project 'InstaGallery')
    cd /Users/admin/builder/spi-builder-workspace
    /usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-iphoneos/InstaGalleryTests.xctest
** BUILD SUCCEEDED **
Build complete.
{
  "dependencies" : [
    {
      "identity" : "nimble",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "9.0.0",
            "upper_bound" : "10.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Quick/Nimble.git"
    }
  ],
  "manifest_display_name" : "InstaGallery",
  "name" : "InstaGallery",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "InstaGallery",
      "targets" : [
        "InstaGallery"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "InstaGalleryTests",
      "module_type" : "SwiftTarget",
      "name" : "InstaGalleryTests",
      "path" : "Tests/InstaGalleryTests",
      "product_dependencies" : [
        "Nimble"
      ],
      "sources" : [
        "Authentication/Mocks/AuthInteractorInputMock.swift",
        "Authentication/Mocks/AuthInteractorOutputMock.swift",
        "Authentication/Mocks/AuthRoutingMock.swift",
        "Authentication/Mocks/AuthViewMock.swift",
        "Authentication/Tests/AuthenticationInteractorTests.swift",
        "Authentication/Tests/AuthenticationPresenterTests.swift",
        "Bundle Data Source/Mock/BundleDataSourceMock.swift",
        "InstaGalleryTests.swift",
        "Instagram Data Source/InstagramDataSourceMock.swift",
        "Mappers/PagingMapperTests.swift",
        "Mappers/UserMapperTests.swift",
        "Mothers/IGCursorMother.swift",
        "Mothers/IGPagingMother.swift",
        "Mothers/IGUserDTOMother.swift",
        "Mothers/IGUserMother.swift",
        "User Data Source/Mocks/UserDataSourceMock.swift",
        "User Data Source/UserDataSourceTests.swift",
        "User Defaults/UserDefaultsTests.swift"
      ],
      "target_dependencies" : [
        "InstaGallery"
      ],
      "type" : "test"
    },
    {
      "c99name" : "InstaGallery",
      "module_type" : "SwiftTarget",
      "name" : "InstaGallery",
      "path" : "Sources/InstaGallery",
      "product_memberships" : [
        "InstaGallery"
      ],
      "sources" : [
        "Constants/Constants.swift",
        "Constants/Enums/ResponseType.swift",
        "Constants/Enums/UserScope.swift",
        "Constants/Notifications.swift",
        "DataModel/Cursors.swift",
        "DataModel/Gallery.swift",
        "DataModel/InstaMediaType.swift",
        "DataModel/Media.swift",
        "DataModel/Paging.swift",
        "DataModel/User.swift",
        "DataSources/Bundle DataSource/BundleDataSourceBaseInterface.swift",
        "DataSources/Bundle DataSource/BundleDataSourceInterface.swift",
        "DataSources/Instagram DataSource/DTOs/AuthenticationDTO.swift",
        "DataSources/Instagram DataSource/DTOs/CursorDTO.swift",
        "DataSources/Instagram DataSource/DTOs/GalleryDTO.swift",
        "DataSources/Instagram DataSource/DTOs/MediaDTO.swift",
        "DataSources/Instagram DataSource/DTOs/MediaTypeDTO.swift",
        "DataSources/Instagram DataSource/DTOs/PagingDTO.swift",
        "DataSources/Instagram DataSource/DTOs/UserDTO.swift",
        "DataSources/Instagram DataSource/InstagramDataSource.swift",
        "DataSources/Instagram DataSource/InstagramDataSourceInterface.swift",
        "DataSources/Instagram DataSource/Mappers/GalleryMapper.swift",
        "DataSources/Instagram DataSource/Mappers/MediaMapper.swift",
        "DataSources/Instagram DataSource/Mappers/PagingMapper.swift",
        "DataSources/Instagram DataSource/Mappers/UserMapper.swift",
        "DataSources/UserDefaults DataSource/UserDataSourceImp.swift",
        "DataSources/UserDefaults DataSource/UserDataSourceInterface.swift",
        "Error/InstaGalleryError.swift",
        "Extensions/Data+Extension.swift",
        "Extensions/Dictionary+Extension.swift",
        "Extensions/String+Extensions.swift",
        "Extensions/UIImageView+Extension.swift",
        "Extensions/URL+Extension.swift",
        "InstaGallery.swift",
        "Request/BaseRequest.swift",
        "Request/Request.swift",
        "Request/RequestHeaders.swift",
        "Request/RequestMethods.swift",
        "Request/URL Provider/APIURLProvider.swift",
        "Request/URL Provider/AuthURLProvider.swift",
        "Request/URL Provider/URLBaseProvider.swift",
        "UI/Controllers/Authorization/Controller/AuthController.swift",
        "UI/Controllers/Authorization/Controller/AuthControllerInterface.swift",
        "UI/Controllers/Authorization/Factory/AuthFactory.swift",
        "UI/Controllers/Authorization/Interactor/AuthInteractor.swift",
        "UI/Controllers/Authorization/Interactor/AuthInteractorInterface.swift",
        "UI/Controllers/Authorization/Presenter/AuthPresenter.swift",
        "UI/Controllers/Authorization/Presenter/AuthPresenterInterface.swift",
        "UI/Controllers/Authorization/Routing/AuthRouting.swift",
        "UI/Controllers/Authorization/Routing/AuthRoutingInterface.swift",
        "UI/Controllers/Gallery/Controller/Gallery Cell/GalleryCell.swift",
        "UI/Controllers/Gallery/Controller/Gallery Cell/GalleryCellViewModel.swift",
        "UI/Controllers/Gallery/Controller/GalleryController.swift",
        "UI/Controllers/Gallery/Controller/GalleryControllerInterface.swift",
        "UI/Controllers/Gallery/Data Source/GalleryDataSource.swift",
        "UI/Controllers/Gallery/Data Source/GalleryDataSourceImp.swift",
        "UI/Controllers/Gallery/Factory/GalleryFactory.swift",
        "UI/Controllers/Gallery/Interactor/GalleryInteractor.swift",
        "UI/Controllers/Gallery/Interactor/GalleryInteractorInterface.swift",
        "UI/Controllers/Gallery/Presenter/GalleryPresenter.swift",
        "UI/Controllers/Gallery/Presenter/GalleryPresenterInterface.swift",
        "UI/Controllers/Gallery/Routing/GalleryRouting.swift",
        "UI/Controllers/Gallery/Routing/GalleryRoutingInterface.swift",
        "User Defaults/UserDefaultsImp.swift",
        "User Defaults/UserDefaultsInterface.swift",
        "Utils/ManagerUtils.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.5"
}
Done.