The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of Magellan, reference master (fb83da), with Swift 6.1 for macOS (Xcode) using Xcode 16.3 on 14 Jun 2025 07:20:42 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Magellan-Package -destination platform=macOS,arch=arm64 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

    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:16:55: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let stackController: UINavigationController = UINavigationController()
                                                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:14:15: note: add '@MainActor' to make instance method 'show' part of global actor 'MainActor'
    open func show(_ navigationContext: NavigationContext) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:18:25: warning: main actor-isolated property 'modalPresentationStyle' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        stackController.modalPresentationStyle = .popover
                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:282:54: note: mutation of this property is only permitted within the actor
@property(nonatomic,assign) UIModalPresentationStyle modalPresentationStyle API_AVAILABLE(ios(3.2));
                                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:14:15: note: add '@MainActor' to make instance method 'show' part of global actor 'MainActor'
    open func show(_ navigationContext: NavigationContext) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:19:25: warning: call to main actor-isolated instance method 'pushViewController(_:animated:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        stackController.pushViewController(destinationController, animated: false)
                        ^
UIKit.UINavigationController.pushViewController:2:22: note: calls to instance method 'pushViewController(_:animated:)' from outside of its actor context are implicitly asynchronous
@MainActor open func pushViewController(_ viewController: UIViewController, animated: Bool)}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:14:15: note: add '@MainActor' to make instance method 'show' part of global actor 'MainActor'
    open func show(_ navigationContext: NavigationContext) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:20:48: warning: call to main actor-isolated instance method 'present(_:animated:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        navigationContext.sourceViewController.present(stackController, animated: true, completion: nil)
                                               ^
UIKit.UIViewController.present:3:24: note: calls to instance method 'present(_:animated:completion:)' from outside of its actor context are implicitly asynchronous
  @MainActor open func present(_ viewControllerToPresent: UIViewController, animated flag: Bool, completion: (() -> Void)? = nil)}
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:14:15: note: add '@MainActor' to make instance method 'show' part of global actor 'MainActor'
    open func show(_ navigationContext: NavigationContext) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:22:56: warning: main actor-isolated property 'sourceView' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        stackController.popoverPresentationController!.sourceView = navigationContext.touchedControl
                                                       ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverPresentationController.h:46:49: note: mutation of this property is only permitted within the actor
@property (nullable, nonatomic, strong) UIView *sourceView;
                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:14:15: note: add '@MainActor' to make instance method 'show' part of global actor 'MainActor'
    open func show(_ navigationContext: NavigationContext) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:22:25: warning: main actor-isolated property 'popoverPresentationController' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        stackController.popoverPresentationController!.sourceView = navigationContext.touchedControl
                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:595:76: note: mutation of this property is only permitted within the actor
@property (nullable, nonatomic, readonly) UIPopoverPresentationController *popoverPresentationController API_AVAILABLE(ios(8.0));
                                                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:14:15: note: add '@MainActor' to make instance method 'show' part of global actor 'MainActor'
    open func show(_ navigationContext: NavigationContext) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:23:56: warning: main actor-isolated property 'sourceRect' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        stackController.popoverPresentationController!.sourceRect = navigationContext.touchedControl!.bounds
                                                       ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverPresentationController.h:51:38: note: mutation of this property is only permitted within the actor
@property (nonatomic, assign) CGRect sourceRect;
                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:14:15: note: add '@MainActor' to make instance method 'show' part of global actor 'MainActor'
    open func show(_ navigationContext: NavigationContext) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:23:25: warning: main actor-isolated property 'popoverPresentationController' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        stackController.popoverPresentationController!.sourceRect = navigationContext.touchedControl!.bounds
                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:595:76: note: mutation of this property is only permitted within the actor
@property (nullable, nonatomic, readonly) UIPopoverPresentationController *popoverPresentationController API_AVAILABLE(ios(8.0));
                                                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:14:15: note: add '@MainActor' to make instance method 'show' part of global actor 'MainActor'
    open func show(_ navigationContext: NavigationContext) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:23:103: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        stackController.popoverPresentationController!.sourceRect = navigationContext.touchedControl!.bounds
                                                                                                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:188:40: note: property declared here
@property(nonatomic) CGRect            bounds;      // default bounds is zero origin, frame size. animatable
                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:14:15: note: add '@MainActor' to make instance method 'show' part of global actor 'MainActor'
    open func show(_ navigationContext: NavigationContext) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:27:38: warning: call to main actor-isolated instance method 'dismiss(animated:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        context.sourceViewController.dismiss(animated: true, completion: nil)
                                     ^
UIKit.UIViewController.dismiss:3:24: note: calls to instance method 'dismiss(animated:completion:)' from outside of its actor context are implicitly asynchronous
  @MainActor open func dismiss(animated flag: Bool, completion: (() -> Void)? = nil)}
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:26:15: note: add '@MainActor' to make instance method 'dismiss' part of global actor 'MainActor'
    open func dismiss(_ context: NavigationContext) {
              ^
    @MainActor
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1749885631192257-swift-frontend-Magellan-PresentationPopover.swift-arm64_apple_ios18.4_macabi-o-Onone-3342097752.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.6764 seconds (9.8474 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0437 ( 13.5%)   0.1082 ( 30.7%)   0.1520 ( 22.5%)   4.7192 ( 47.9%)  parse-and-resolve-imports
   0.0423 ( 13.1%)   0.1065 ( 30.2%)   0.1488 ( 22.0%)   4.7160 ( 47.9%)  Import resolution
   0.0859 ( 26.5%)   0.0337 (  9.5%)   0.1196 ( 17.7%)   0.1198 (  1.2%)  build-rewrite-system
   0.0385 ( 11.9%)   0.0374 ( 10.6%)   0.0759 ( 11.2%)   0.0761 (  0.8%)  import-clang-decl
   0.0019 (  0.6%)   0.0122 (  3.5%)   0.0141 (  2.1%)   0.0500 (  0.5%)  load-stdlib
   0.0223 (  6.9%)   0.0107 (  3.0%)   0.0331 (  4.9%)   0.0331 (  0.3%)  perform-sema
   0.0222 (  6.9%)   0.0107 (  3.0%)   0.0330 (  4.9%)   0.0330 (  0.3%)  Type checking and Semantic analysis
   0.0209 (  6.4%)   0.0102 (  2.9%)   0.0310 (  4.6%)   0.0311 (  0.3%)  typecheck-expr
   0.0208 (  6.4%)   0.0102 (  2.9%)   0.0310 (  4.6%)   0.0310 (  0.3%)  typecheck-stmt
   0.0112 (  3.5%)   0.0063 (  1.8%)   0.0175 (  2.6%)   0.0175 (  0.2%)  typecheck-decl
   0.0045 (  1.4%)   0.0044 (  1.2%)   0.0089 (  1.3%)   0.0089 (  0.1%)  IRGen
   0.0033 (  1.0%)   0.0014 (  0.4%)   0.0047 (  0.7%)   0.0047 (  0.0%)  load-all-members
   0.0025 (  0.8%)   0.0000 (  0.0%)   0.0026 (  0.4%)   0.0026 (  0.0%)  SIL optimization
   0.0019 (  0.6%)   0.0005 (  0.1%)   0.0024 (  0.4%)   0.0024 (  0.0%)  SILGen
   0.0015 (  0.5%)   0.0003 (  0.1%)   0.0019 (  0.3%)   0.0019 (  0.0%)  SILGen-function
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  precheck-target
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.3237 (100.0%)   0.3527 (100.0%)   0.6764 (100.0%)   9.8474 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 3.6857 seconds (8.6810 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   1.8470 (100.0%)   1.8387 (100.0%)   3.6857 (100.0%)   8.6810 (100.0%)  Building Target
   1.8470 (100.0%)   1.8387 (100.0%)   3.6857 (100.0%)   8.6810 (100.0%)  Total
SwiftCompile normal arm64 Compiling\ PresentationStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/PresentationStrategy.swift (in target 'Magellan' from project 'Magellan')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1749885631180944-swift-frontend-Magellan-PresentationStrategy.swift-arm64_apple_ios18.4_macabi-o-Onone-2830416577.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.5241 seconds (9.5942 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0420 ( 19.3%)   0.1074 ( 35.0%)   0.1495 ( 28.5%)   4.6645 ( 48.6%)  parse-and-resolve-imports
   0.0405 ( 18.6%)   0.1058 ( 34.5%)   0.1464 ( 27.9%)   4.6613 ( 48.6%)  Import resolution
   0.0912 ( 42.0%)   0.0344 ( 11.2%)   0.1256 ( 24.0%)   0.1255 (  1.3%)  build-rewrite-system
   0.0345 ( 15.9%)   0.0354 ( 11.5%)   0.0699 ( 13.3%)   0.0702 (  0.7%)  import-clang-decl
   0.0017 (  0.8%)   0.0174 (  5.7%)   0.0192 (  3.7%)   0.0590 (  0.6%)  load-stdlib
   0.0033 (  1.5%)   0.0044 (  1.4%)   0.0077 (  1.5%)   0.0077 (  0.1%)  IRGen
   0.0027 (  1.3%)   0.0009 (  0.3%)   0.0036 (  0.7%)   0.0036 (  0.0%)  load-all-members
   0.0004 (  0.2%)   0.0004 (  0.1%)   0.0008 (  0.2%)   0.0008 (  0.0%)  perform-sema
   0.0004 (  0.2%)   0.0004 (  0.1%)   0.0007 (  0.1%)   0.0008 (  0.0%)  Type checking and Semantic analysis
   0.0003 (  0.2%)   0.0003 (  0.1%)   0.0007 (  0.1%)   0.0007 (  0.0%)  typecheck-decl
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SILGen
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.2173 (100.0%)   0.3068 (100.0%)   0.5241 (100.0%)   9.5942 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 3.7428 seconds (8.6912 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   1.8462 (100.0%)   1.8967 (100.0%)   3.7428 (100.0%)   8.6912 (100.0%)  Building Target
   1.8462 (100.0%)   1.8967 (100.0%)   3.7428 (100.0%)   8.6912 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/PresentationStrategy.swift (in target 'Magellan' from project 'Magellan')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 Compiling\ PresentationPush.swift /Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPush.swift (in target 'Magellan' from project 'Magellan')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPush.swift (in target 'Magellan' from project 'Magellan')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPush.swift:28:70: warning: main actor-isolated property 'navigationController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        let stackController = navigationContext.sourceViewController.navigationController!
                                                                     ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h:131:72: note: property declared here
@property(nullable, nonatomic,readonly,strong) UINavigationController *navigationController; // If this view controller has been pushed onto a navigation controller, return it.
                                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPush.swift:26:15: note: add '@MainActor' to make instance method 'show' part of global actor 'MainActor'
    open func show(_ navigationContext: NavigationContext) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPush.swift:32:29: warning: call to main actor-isolated instance method 'show(_:sender:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            stackController.show(destinationViewController, sender: navigationContext.sourceViewController)
                            ^
UIKit.UINavigationController.show:3:24: note: calls to instance method 'show(_:sender:)' from outside of its actor context are implicitly asynchronous
  @MainActor open func show(_ vc: UIViewController, sender: Any?)}
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPush.swift:26:15: note: add '@MainActor' to make instance method 'show' part of global actor 'MainActor'
    open func show(_ navigationContext: NavigationContext) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPush.swift:34:29: warning: call to main actor-isolated instance method 'showDetailViewController(_:sender:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            stackController.showDetailViewController(destinationViewController, sender: navigationContext.sourceViewController)
                            ^
UIKit.UIViewController.showDetailViewController:3:24: note: calls to instance method 'showDetailViewController(_:sender:)' from outside of its actor context are implicitly asynchronous
  @MainActor open func showDetailViewController(_ vc: UIViewController, sender: Any?)}
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPush.swift:26:15: note: add '@MainActor' to make instance method 'show' part of global actor 'MainActor'
    open func show(_ navigationContext: NavigationContext) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPush.swift:43:14: warning: call to main actor-isolated instance method 'popToViewController(_:animated:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            .popToViewController(context.sourceViewController, animated: true)
             ^
UIKit.UINavigationController.popToViewController:2:22: note: calls to instance method 'popToViewController(_:animated:)' from outside of its actor context are implicitly asynchronous
@MainActor open func popToViewController(_ viewController: UIViewController, animated: Bool) -> [UIViewController]?}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPush.swift:39:15: note: add '@MainActor' to make instance method 'dismiss' part of global actor 'MainActor'
    open func dismiss(_ context: NavigationContext) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPush.swift:42:14: warning: main actor-isolated property 'navigationController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            .navigationController?
             ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h:131:72: note: property declared here
@property(nullable, nonatomic,readonly,strong) UINavigationController *navigationController; // If this view controller has been pushed onto a navigation controller, return it.
                                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPush.swift:39:15: note: add '@MainActor' to make instance method 'dismiss' part of global actor 'MainActor'
    open func dismiss(_ context: NavigationContext) {
              ^
    @MainActor
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1749885631186979-swift-frontend-Magellan-PresentationPush.swift-arm64_apple_ios18.4_macabi-o-Onone-626917548.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.7169 seconds (9.7612 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0469 ( 14.1%)   0.1089 ( 28.3%)   0.1558 ( 21.7%)   4.6666 ( 47.8%)  parse-and-resolve-imports
   0.0453 ( 13.7%)   0.1076 ( 27.9%)   0.1530 ( 21.3%)   4.6638 ( 47.8%)  Import resolution
   0.0877 ( 26.4%)   0.0327 (  8.5%)   0.1204 ( 16.8%)   0.1206 (  1.2%)  build-rewrite-system
   0.0341 ( 10.3%)   0.0349 (  9.1%)   0.0690 (  9.6%)   0.0696 (  0.7%)  import-clang-decl
   0.0237 (  7.1%)   0.0211 (  5.5%)   0.0448 (  6.2%)   0.0472 (  0.5%)  perform-sema
   0.0236 (  7.1%)   0.0211 (  5.5%)   0.0447 (  6.2%)   0.0471 (  0.5%)  Type checking and Semantic analysis
   0.0207 (  6.2%)   0.0193 (  5.0%)   0.0400 (  5.6%)   0.0424 (  0.4%)  typecheck-decl
   0.0111 (  3.3%)   0.0171 (  4.4%)   0.0282 (  3.9%)   0.0423 (  0.4%)  load-stdlib
   0.0105 (  3.2%)   0.0059 (  1.5%)   0.0164 (  2.3%)   0.0164 (  0.2%)  typecheck-stmt
   0.0101 (  3.1%)   0.0058 (  1.5%)   0.0160 (  2.2%)   0.0160 (  0.2%)  typecheck-expr
   0.0061 (  1.8%)   0.0063 (  1.6%)   0.0124 (  1.7%)   0.0124 (  0.1%)  IRGen
   0.0037 (  1.1%)   0.0016 (  0.4%)   0.0053 (  0.7%)   0.0053 (  0.1%)  SILGen
   0.0028 (  0.8%)   0.0014 (  0.4%)   0.0042 (  0.6%)   0.0042 (  0.0%)  SILGen-function
   0.0025 (  0.7%)   0.0011 (  0.3%)   0.0036 (  0.5%)   0.0039 (  0.0%)  load-all-members
   0.0029 (  0.9%)   0.0003 (  0.1%)   0.0031 (  0.4%)   0.0031 (  0.0%)  SIL optimization
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  precheck-target
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.3318 (100.0%)   0.3851 (100.0%)   0.7169 (100.0%)   9.7612 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 3.7641 seconds (8.6855 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   1.8673 (100.0%)   1.8968 (100.0%)   3.7641 (100.0%)   8.6855 (100.0%)  Building Target
   1.8673 (100.0%)   1.8968 (100.0%)   3.7641 (100.0%)   8.6855 (100.0%)  Total
SwiftCompile normal arm64 Compiling\ Route.swift /Users/admin/builder/spi-builder-workspace/Sources/Magellan/Route/Route.swift (in target 'Magellan' from project 'Magellan')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1749885631191625-swift-frontend-Magellan-Route.swift-arm64_apple_ios18.4_macabi-o-Onone-4227132643.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.5383 seconds (9.6896 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0421 ( 18.1%)   0.1031 ( 33.7%)   0.1452 ( 27.0%)   4.6980 ( 48.5%)  parse-and-resolve-imports
   0.0406 ( 17.4%)   0.1013 ( 33.2%)   0.1419 ( 26.4%)   4.6947 ( 48.5%)  Import resolution
   0.0880 ( 37.8%)   0.0325 ( 10.6%)   0.1205 ( 22.4%)   0.1205 (  1.2%)  build-rewrite-system
   0.0341 ( 14.7%)   0.0348 ( 11.4%)   0.0689 ( 12.8%)   0.0694 (  0.7%)  import-clang-decl
   0.0021 (  0.9%)   0.0118 (  3.9%)   0.0138 (  2.6%)   0.0584 (  0.6%)  load-stdlib
   0.0050 (  2.2%)   0.0051 (  1.7%)   0.0101 (  1.9%)   0.0103 (  0.1%)  perform-sema
   0.0050 (  2.1%)   0.0051 (  1.7%)   0.0100 (  1.9%)   0.0102 (  0.1%)  Type checking and Semantic analysis
   0.0045 (  1.9%)   0.0053 (  1.7%)   0.0097 (  1.8%)   0.0097 (  0.1%)  IRGen
   0.0040 (  1.7%)   0.0047 (  1.5%)   0.0087 (  1.6%)   0.0089 (  0.1%)  typecheck-decl
   0.0027 (  1.2%)   0.0008 (  0.3%)   0.0036 (  0.7%)   0.0036 (  0.0%)  load-all-members
   0.0021 (  0.9%)   0.0000 (  0.0%)   0.0021 (  0.4%)   0.0021 (  0.0%)  SIL optimization
   0.0007 (  0.3%)   0.0002 (  0.1%)   0.0009 (  0.2%)   0.0010 (  0.0%)  SILGen
   0.0007 (  0.3%)   0.0003 (  0.1%)   0.0010 (  0.2%)   0.0010 (  0.0%)  typecheck-stmt
   0.0006 (  0.3%)   0.0003 (  0.1%)   0.0009 (  0.2%)   0.0009 (  0.0%)  typecheck-expr
   0.0005 (  0.2%)   0.0002 (  0.1%)   0.0007 (  0.1%)   0.0007 (  0.0%)  SILGen-function
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  precheck-target
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.2328 (100.0%)   0.3055 (100.0%)   0.5383 (100.0%)   9.6896 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 3.6879 seconds (8.6798 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   1.8296 (100.0%)   1.8583 (100.0%)   3.6879 (100.0%)   8.6798 (100.0%)  Building Target
   1.8296 (100.0%)   1.8583 (100.0%)   3.6879 (100.0%)   8.6798 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Magellan/Route/Route.swift (in target 'Magellan' from project 'Magellan')
    cd /Users/admin/builder/spi-builder-workspace

SwiftCompile normal arm64 Compiling\ NavigationContext.swift /Users/admin/builder/spi-builder-workspace/Sources/Magellan/Navigation/NavigationContext.swift (in target 'Magellan' from project 'Magellan')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1749885631193526-swift-frontend-Magellan-NavigationContext.swift-arm64_apple_ios18.4_macabi-o-Onone-2648128890.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 8.9581 seconds (9.5724 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   3.4580 ( 48.9%)   0.9031 ( 47.7%)   4.3611 ( 48.7%)   4.6411 ( 48.5%)  parse-and-resolve-imports
   3.4564 ( 48.9%)   0.9015 ( 47.6%)   4.3579 ( 48.6%)   4.6349 ( 48.4%)  Import resolution
   0.0868 (  1.2%)   0.0158 (  0.8%)   0.1026 (  1.1%)   0.1025 (  1.1%)  build-rewrite-system
   0.0329 (  0.5%)   0.0347 (  1.8%)   0.0676 (  0.8%)   0.0709 (  0.7%)  import-clang-decl
   0.0019 (  0.0%)   0.0119 (  0.6%)   0.0138 (  0.2%)   0.0541 (  0.6%)  load-stdlib
   0.0061 (  0.1%)   0.0070 (  0.4%)   0.0131 (  0.1%)   0.0177 (  0.2%)  perform-sema
   0.0060 (  0.1%)   0.0070 (  0.4%)   0.0130 (  0.1%)   0.0176 (  0.2%)  Type checking and Semantic analysis
   0.0055 (  0.1%)   0.0067 (  0.4%)   0.0122 (  0.1%)   0.0168 (  0.2%)  typecheck-decl
   0.0038 (  0.1%)   0.0026 (  0.1%)   0.0064 (  0.1%)   0.0064 (  0.1%)  IRGen
   0.0026 (  0.0%)   0.0006 (  0.0%)   0.0032 (  0.0%)   0.0032 (  0.0%)  load-all-members
   0.0024 (  0.0%)   0.0002 (  0.0%)   0.0026 (  0.0%)   0.0026 (  0.0%)  SIL optimization
   0.0009 (  0.0%)   0.0010 (  0.1%)   0.0019 (  0.0%)   0.0019 (  0.0%)  SILGen
   0.0005 (  0.0%)   0.0008 (  0.0%)   0.0013 (  0.0%)   0.0014 (  0.0%)  SILGen-function
   0.0005 (  0.0%)   0.0003 (  0.0%)   0.0007 (  0.0%)   0.0007 (  0.0%)  typecheck-expr
   0.0003 (  0.0%)   0.0002 (  0.0%)   0.0005 (  0.0%)   0.0005 (  0.0%)  typecheck-stmt
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  precheck-target
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   7.0647 (100.0%)   1.8934 (100.0%)   8.9581 (100.0%)   9.5724 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 7.9459 seconds (8.6773 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   5.3046 (100.0%)   2.6413 (100.0%)   7.9459 (100.0%)   8.6773 (100.0%)  Building Target
   5.3046 (100.0%)   2.6413 (100.0%)   7.9459 (100.0%)   8.6773 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Magellan/Navigation/NavigationContext.swift (in target 'Magellan' from project 'Magellan')
    cd /Users/admin/builder/spi-builder-workspace

SwiftEmitModule normal arm64 Emitting\ module\ for\ Magellan (in target 'Magellan' from project 'Magellan')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1749885631181150-swift-frontend-Magellan-all-arm64_apple_ios18.4_macabi-swiftmodule-Onone-3440489501.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.4996 seconds (9.5591 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0434 ( 23.7%)   0.1112 ( 35.1%)   0.1546 ( 31.0%)   4.6471 ( 48.6%)  parse-and-resolve-imports
   0.0416 ( 22.7%)   0.1085 ( 34.3%)   0.1501 ( 30.0%)   4.6400 ( 48.5%)  Import resolution
   0.0020 (  1.1%)   0.0168 (  5.3%)   0.0188 (  3.8%)   0.0603 (  0.6%)  load-stdlib
   0.0245 ( 13.4%)   0.0148 (  4.7%)   0.0393 (  7.9%)   0.0454 (  0.5%)  perform-sema
   0.0244 ( 13.3%)   0.0147 (  4.7%)   0.0391 (  7.8%)   0.0452 (  0.5%)  Type checking and Semantic analysis
   0.0240 ( 13.1%)   0.0146 (  4.6%)   0.0386 (  7.7%)   0.0446 (  0.5%)  typecheck-decl
   0.0063 (  3.5%)   0.0129 (  4.1%)   0.0192 (  3.9%)   0.0267 (  0.3%)  SIL optimization
   0.0017 (  1.0%)   0.0092 (  2.9%)   0.0109 (  2.2%)   0.0179 (  0.2%)  Serialization, swiftmodule
   0.0050 (  2.7%)   0.0076 (  2.4%)   0.0126 (  2.5%)   0.0151 (  0.2%)  import-clang-decl
   0.0035 (  1.9%)   0.0013 (  0.4%)   0.0048 (  1.0%)   0.0048 (  0.1%)  build-rewrite-system
   0.0032 (  1.8%)   0.0013 (  0.4%)   0.0045 (  0.9%)   0.0045 (  0.0%)  SILGen
   0.0013 (  0.7%)   0.0019 (  0.6%)   0.0032 (  0.6%)   0.0033 (  0.0%)  typecheck-expr
   0.0003 (  0.2%)   0.0012 (  0.4%)   0.0016 (  0.3%)   0.0020 (  0.0%)  Serialization, swiftdoc
   0.0012 (  0.6%)   0.0005 (  0.2%)   0.0016 (  0.3%)   0.0016 (  0.0%)  SILGen-function
   0.0004 (  0.2%)   0.0001 (  0.0%)   0.0005 (  0.1%)   0.0005 (  0.0%)  Serialization, swiftsourceinfo
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  precheck-target
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-module-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.1829 (100.0%)   0.3167 (100.0%)   0.4996 (100.0%)   9.5591 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.2503 seconds (4.8001 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0853 (100.0%)   0.1650 (100.0%)   0.2503 (100.0%)   4.8001 (100.0%)  Building Target
   0.0853 (100.0%)   0.1650 (100.0%)   0.2503 (100.0%)   4.8001 (100.0%)  Total
EmitSwiftModule normal arm64 (in target 'Magellan' from project 'Magellan')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:14:20: warning: static property 'ShownContext' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var ShownContext = "ShownContextAttr"
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:14:20: note: convert 'ShownContext' to a 'let' constant to make 'Sendable' shared state immutable
        static var ShownContext = "ShownContextAttr"
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:14:20: note: add '@MainActor' to make static property 'ShownContext' part of global actor 'MainActor'
        static var ShownContext = "ShownContextAttr"
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:14:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var ShownContext = "ShownContextAttr"
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:15:20: warning: static property 'ShowingContext' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var ShowingContext = "ShowingContextAttr"
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:15:20: note: convert 'ShowingContext' to a 'let' constant to make 'Sendable' shared state immutable
        static var ShowingContext = "ShowingContextAttr"
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:15:20: note: add '@MainActor' to make static property 'ShowingContext' part of global actor 'MainActor'
        static var ShowingContext = "ShowingContextAttr"
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:15:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var ShowingContext = "ShowingContextAttr"
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:16:20: warning: static property 'Navigation' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var Navigation = "NavigationAttr"
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:16:20: note: convert 'Navigation' to a 'let' constant to make 'Sendable' shared state immutable
        static var Navigation = "NavigationAttr"
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:16:20: note: add '@MainActor' to make static property 'Navigation' part of global actor 'MainActor'
        static var Navigation = "NavigationAttr"
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:16:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var Navigation = "NavigationAttr"
                   ^
        nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ Navigation.swift /Users/admin/builder/spi-builder-workspace/Sources/Magellan/Navigation/Navigation.swift (in target 'Magellan' from project 'Magellan')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1749885631192739-swift-frontend-Magellan-Navigation.swift-arm64_apple_ios18.4_macabi-o-Onone-2269984896.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.6115 seconds (9.6345 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0425 ( 16.2%)   0.1119 ( 32.1%)   0.1544 ( 25.3%)   4.6369 ( 48.1%)  parse-and-resolve-imports
   0.0409 ( 15.6%)   0.1095 ( 31.4%)   0.1504 ( 24.6%)   4.6311 ( 48.1%)  Import resolution
   0.0880 ( 33.5%)   0.0347 ( 10.0%)   0.1227 ( 20.1%)   0.1226 (  1.3%)  build-rewrite-system
   0.0352 ( 13.4%)   0.0385 ( 11.0%)   0.0736 ( 12.0%)   0.0756 (  0.8%)  import-clang-decl
   0.0021 (  0.8%)   0.0118 (  3.4%)   0.0139 (  2.3%)   0.0595 (  0.6%)  load-stdlib
   0.0117 (  4.4%)   0.0109 (  3.1%)   0.0226 (  3.7%)   0.0268 (  0.3%)  perform-sema
   0.0116 (  4.4%)   0.0109 (  3.1%)   0.0225 (  3.7%)   0.0267 (  0.3%)  Type checking and Semantic analysis
   0.0082 (  3.1%)   0.0094 (  2.7%)   0.0176 (  2.9%)   0.0215 (  0.2%)  typecheck-decl
   0.0062 (  2.3%)   0.0051 (  1.5%)   0.0113 (  1.8%)   0.0113 (  0.1%)  IRGen
   0.0027 (  1.0%)   0.0029 (  0.8%)   0.0055 (  0.9%)   0.0056 (  0.1%)  load-all-members
   0.0038 (  1.4%)   0.0013 (  0.4%)   0.0051 (  0.8%)   0.0051 (  0.1%)  typecheck-expr
   0.0037 (  1.4%)   0.0010 (  0.3%)   0.0048 (  0.8%)   0.0048 (  0.0%)  typecheck-stmt
   0.0036 (  1.4%)   0.0001 (  0.0%)   0.0037 (  0.6%)   0.0037 (  0.0%)  SIL optimization
   0.0015 (  0.6%)   0.0003 (  0.1%)   0.0018 (  0.3%)   0.0018 (  0.0%)  SILGen
   0.0010 (  0.4%)   0.0003 (  0.1%)   0.0013 (  0.2%)   0.0013 (  0.0%)  SILGen-function
   0.0002 (  0.1%)   0.0000 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  precheck-target
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.2629 (100.0%)   0.3486 (100.0%)   0.6115 (100.0%)   9.6345 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 3.7559 seconds (8.6797 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   1.8717 (100.0%)   1.8842 (100.0%)   3.7559 (100.0%)   8.6797 (100.0%)  Building Target
   1.8717 (100.0%)   1.8842 (100.0%)   3.7559 (100.0%)   8.6797 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Magellan/Navigation/Navigation.swift (in target 'Magellan' from project 'Magellan')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Navigation/Navigation.swift:35:14: warning: main actor-isolated property 'navigation' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        root.navigation = self
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:32:35: note: mutation of this property is only permitted within the actor
    public internal(set) weak var navigation: Navigation? {
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Navigation/Navigation.swift:49:70: warning: main actor-isolated property 'traitCollection' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            let presentation = route.presentation(self.traitProvider.traitCollection)
                                                                     ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h:170:52: note: property declared here
@property (nonatomic, readonly) UITraitCollection *traitCollection API_AVAILABLE(ios(8.0));
                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Navigation/Navigation.swift:45:15: note: add '@MainActor' to make instance method 'navigate(to:sender:control:)' part of global actor 'MainActor'
    open func navigate(to context: Any, sender: UIViewController, control: UIControl? = nil) -> PresentingContext? {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Navigation/Navigation.swift:62:41: warning: main actor-isolated property 'shownPresentingContext' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        navigation.sourceViewController.shownPresentingContext = presentingContext
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:20:9: note: mutation of this property is only permitted within the actor
    var shownPresentingContext: PresentingContext? {
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Navigation/Navigation.swift:57:22: note: add '@MainActor' to make instance method 'doNavigation(context:navigation:presentation:)' part of global actor 'MainActor'
    fileprivate func doNavigation(context: Any, navigation: NavigationContext, presentation: PresentationStrategy) -> PresentingContext {
                     ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Navigation/Navigation.swift:63:46: warning: main actor-isolated property 'showingPresentingContext' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        navigation.destinationViewController.showingPresentingContext = presentingContext
                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:26:9: note: mutation of this property is only permitted within the actor
    var showingPresentingContext: PresentingContext? {
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Navigation/Navigation.swift:57:22: note: add '@MainActor' to make instance method 'doNavigation(context:navigation:presentation:)' part of global actor 'MainActor'
    fileprivate func doNavigation(context: Any, navigation: NavigationContext, presentation: PresentationStrategy) -> PresentingContext {
                     ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Navigation/Navigation.swift:64:46: warning: main actor-isolated property 'navigation' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        navigation.destinationViewController.navigation = self
                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:32:35: note: mutation of this property is only permitted within the actor
    public internal(set) weak var navigation: Navigation? {
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Navigation/Navigation.swift:57:22: note: add '@MainActor' to make instance method 'doNavigation(context:navigation:presentation:)' part of global actor 'MainActor'
    fileprivate func doNavigation(context: Any, navigation: NavigationContext, presentation: PresentationStrategy) -> PresentingContext {
                     ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Navigation/Navigation.swift:73:43: warning: main actor-isolated property 'shownPresentingContext' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        if let presentingContext = sender.shownPresentingContext {
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:20:9: note: property declared here
    var shownPresentingContext: PresentingContext? {
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Navigation/Navigation.swift:72:15: note: add '@MainActor' to make instance method 'navigateBack(to:)' part of global actor 'MainActor'
    open func navigateBack(to sender: UIViewController) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Navigation/Navigation.swift:80:49: warning: main actor-isolated property 'showingPresentingContext' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        if  let presentingContext = destination.showingPresentingContext {
                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:26:9: note: property declared here
    var showingPresentingContext: PresentingContext? {
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Navigation/Navigation.swift:79:15: note: add '@MainActor' to make instance method 'navigateBack(from:status:)' part of global actor 'MainActor'
    open func navigateBack(from destination: UIViewController, status: PresentingContext.TerminateStatus = .completed) {
              ^
    @MainActor
SwiftCompile normal arm64 Compiling\ PresentationSegue.swift /Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationSegue.swift (in target 'Magellan' from project 'Magellan')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1749885631191393-swift-frontend-Magellan-PresentationSegue.swift-arm64_apple_ios18.4_macabi-o-Onone-3236939740.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.5772 seconds (9.8976 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0422 ( 16.3%)   0.1026 ( 32.3%)   0.1448 ( 25.1%)   4.7809 ( 48.3%)  parse-and-resolve-imports
   0.0406 ( 15.6%)   0.1009 ( 31.8%)   0.1414 ( 24.5%)   4.7775 ( 48.3%)  Import resolution
   0.0869 ( 33.4%)   0.0318 ( 10.0%)   0.1187 ( 20.6%)   0.1188 (  1.2%)  build-rewrite-system
   0.0346 ( 13.3%)   0.0349 ( 11.0%)   0.0695 ( 12.0%)   0.0697 (  0.7%)  import-clang-decl
   0.0020 (  0.8%)   0.0113 (  3.6%)   0.0133 (  2.3%)   0.0612 (  0.6%)  load-stdlib
   0.0089 (  3.4%)   0.0059 (  1.9%)   0.0148 (  2.6%)   0.0148 (  0.1%)  perform-sema
   0.0089 (  3.4%)   0.0059 (  1.8%)   0.0147 (  2.6%)   0.0147 (  0.1%)  Type checking and Semantic analysis
   0.0077 (  3.0%)   0.0052 (  1.7%)   0.0129 (  2.2%)   0.0129 (  0.1%)  typecheck-stmt
   0.0076 (  2.9%)   0.0052 (  1.6%)   0.0128 (  2.2%)   0.0128 (  0.1%)  typecheck-expr
   0.0063 (  2.4%)   0.0062 (  1.9%)   0.0125 (  2.2%)   0.0125 (  0.1%)  IRGen
   0.0058 (  2.2%)   0.0045 (  1.4%)   0.0103 (  1.8%)   0.0103 (  0.1%)  typecheck-decl
   0.0021 (  0.8%)   0.0012 (  0.4%)   0.0033 (  0.6%)   0.0033 (  0.0%)  SILGen
   0.0024 (  0.9%)   0.0007 (  0.2%)   0.0031 (  0.5%)   0.0031 (  0.0%)  load-all-members
   0.0018 (  0.7%)   0.0011 (  0.4%)   0.0030 (  0.5%)   0.0030 (  0.0%)  SILGen-function
   0.0019 (  0.7%)   0.0001 (  0.0%)   0.0019 (  0.3%)   0.0020 (  0.0%)  SIL optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  precheck-target
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.2598 (100.0%)   0.3175 (100.0%)   0.5772 (100.0%)   9.8976 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 3.6091 seconds (8.6804 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   1.7920 (100.0%)   1.8171 (100.0%)   3.6091 (100.0%)   8.6804 (100.0%)  Building Target
   1.7920 (100.0%)   1.8171 (100.0%)   3.6091 (100.0%)   8.6804 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationSegue.swift (in target 'Magellan' from project 'Magellan')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationSegue.swift:21:14: warning: call to main actor-isolated initializer 'init(identifier:source:destination:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            .init(identifier: nil, source: context.sourceViewController, destination: context.destinationViewController)
             ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardSegue.h:22:1: note: calls to initializer 'init(identifier:source:destination:)' from outside of its actor context are implicitly asynchronous
- (instancetype)initWithIdentifier:(nullable NSString *)identifier source:(UIViewController *)source destination:(UIViewController *)destination NS_DESIGNATED_INITIALIZER;
^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationSegue.swift:19:15: note: add '@MainActor' to make instance method 'show' part of global actor 'MainActor'
    open func show(_ context: NavigationContext) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationSegue.swift:23:15: warning: call to main actor-isolated instance method 'perform()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        segue.perform()
              ^
UIKit.UIStoryboardSegue.perform:2:22: note: calls to instance method 'perform()' from outside of its actor context are implicitly asynchronous
@MainActor open func perform()}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationSegue.swift:19:15: note: add '@MainActor' to make instance method 'show' part of global actor 'MainActor'
    open func show(_ context: NavigationContext) {
              ^
    @MainActor
SwiftEmitModule normal x86_64 Emitting\ module\ for\ Magellan (in target 'Magellan' from project 'Magellan')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1749885631192898-swift-frontend-Magellan-all-x86_64_apple_ios18.4_macabi-swiftmodule-Onone-331302238.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 8.9273 seconds (9.5642 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   3.4182 ( 49.3%)   0.9364 ( 47.1%)   4.3545 ( 48.8%)   4.6533 ( 48.7%)  parse-and-resolve-imports
   3.4166 ( 49.2%)   0.9342 ( 47.0%)   4.3508 ( 48.7%)   4.6481 ( 48.6%)  Import resolution
   0.0246 (  0.4%)   0.0258 (  1.3%)   0.0504 (  0.6%)   0.0562 (  0.6%)  perform-sema
   0.0245 (  0.4%)   0.0257 (  1.3%)   0.0502 (  0.6%)   0.0560 (  0.6%)  Type checking and Semantic analysis
   0.0240 (  0.3%)   0.0256 (  1.3%)   0.0496 (  0.6%)   0.0553 (  0.6%)  typecheck-decl
   0.0088 (  0.1%)   0.0209 (  1.1%)   0.0297 (  0.3%)   0.0370 (  0.4%)  load-stdlib
   0.0062 (  0.1%)   0.0060 (  0.3%)   0.0122 (  0.1%)   0.0196 (  0.2%)  SIL optimization
   0.0043 (  0.1%)   0.0062 (  0.3%)   0.0105 (  0.1%)   0.0120 (  0.1%)  import-clang-decl
   0.0016 (  0.0%)   0.0038 (  0.2%)   0.0055 (  0.1%)   0.0111 (  0.1%)  Serialization, swiftmodule
   0.0029 (  0.0%)   0.0012 (  0.1%)   0.0040 (  0.0%)   0.0041 (  0.0%)  SILGen
   0.0035 (  0.1%)   0.0003 (  0.0%)   0.0038 (  0.0%)   0.0038 (  0.0%)  build-rewrite-system
   0.0013 (  0.0%)   0.0021 (  0.1%)   0.0034 (  0.0%)   0.0036 (  0.0%)  typecheck-expr
   0.0003 (  0.0%)   0.0002 (  0.0%)   0.0006 (  0.0%)   0.0019 (  0.0%)  Serialization, swiftdoc
   0.0010 (  0.0%)   0.0004 (  0.0%)   0.0013 (  0.0%)   0.0014 (  0.0%)  SILGen-function
   0.0004 (  0.0%)   0.0002 (  0.0%)   0.0005 (  0.0%)   0.0006 (  0.0%)  Serialization, swiftsourceinfo
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  precheck-target
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-module-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   6.9383 (100.0%)   1.9890 (100.0%)   8.9273 (100.0%)   9.5642 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 4.4656 seconds (4.7882 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   3.4665 (100.0%)   0.9991 (100.0%)   4.4656 (100.0%)   4.7882 (100.0%)  Building Target
   3.4665 (100.0%)   0.9991 (100.0%)   4.4656 (100.0%)   4.7882 (100.0%)  Total
EmitSwiftModule normal x86_64 (in target 'Magellan' from project 'Magellan')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:14:20: warning: static property 'ShownContext' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var ShownContext = "ShownContextAttr"
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:14:20: note: convert 'ShownContext' to a 'let' constant to make 'Sendable' shared state immutable
        static var ShownContext = "ShownContextAttr"
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:14:20: note: add '@MainActor' to make static property 'ShownContext' part of global actor 'MainActor'
        static var ShownContext = "ShownContextAttr"
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:14:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var ShownContext = "ShownContextAttr"
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:15:20: warning: static property 'ShowingContext' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var ShowingContext = "ShowingContextAttr"
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:15:20: note: convert 'ShowingContext' to a 'let' constant to make 'Sendable' shared state immutable
        static var ShowingContext = "ShowingContextAttr"
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:15:20: note: add '@MainActor' to make static property 'ShowingContext' part of global actor 'MainActor'
        static var ShowingContext = "ShowingContextAttr"
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:15:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var ShowingContext = "ShowingContextAttr"
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:16:20: warning: static property 'Navigation' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var Navigation = "NavigationAttr"
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:16:20: note: convert 'Navigation' to a 'let' constant to make 'Sendable' shared state immutable
        static var Navigation = "NavigationAttr"
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:16:20: note: add '@MainActor' to make static property 'Navigation' part of global actor 'MainActor'
        static var Navigation = "NavigationAttr"
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:16:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var Navigation = "NavigationAttr"
                   ^
        nonisolated(unsafe)
SwiftCompile normal x86_64 Compiling\ NavigationContext.swift /Users/admin/builder/spi-builder-workspace/Sources/Magellan/Navigation/NavigationContext.swift (in target 'Magellan' from project 'Magellan')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1749885636059306-swift-frontend-Magellan-NavigationContext.swift-x86_64_apple_ios18.4_macabi-o-Onone-2310066820.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.4468 seconds (0.4491 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0910 ( 38.3%)   0.0341 ( 16.3%)   0.1251 ( 28.0%)   0.1259 ( 28.0%)  build-rewrite-system
   0.0414 ( 17.4%)   0.0564 ( 26.9%)   0.0978 ( 21.9%)   0.0979 ( 21.8%)  parse-and-resolve-imports
   0.0400 ( 16.9%)   0.0547 ( 26.1%)   0.0948 ( 21.2%)   0.0949 ( 21.1%)  Import resolution
   0.0338 ( 14.2%)   0.0370 ( 17.7%)   0.0708 ( 15.8%)   0.0719 ( 16.0%)  import-clang-decl
   0.0061 (  2.6%)   0.0057 (  2.7%)   0.0118 (  2.7%)   0.0118 (  2.6%)  perform-sema
   0.0060 (  2.5%)   0.0057 (  2.7%)   0.0117 (  2.6%)   0.0117 (  2.6%)  Type checking and Semantic analysis
   0.0055 (  2.3%)   0.0055 (  2.6%)   0.0109 (  2.4%)   0.0109 (  2.4%)  typecheck-decl
   0.0045 (  1.9%)   0.0059 (  2.8%)   0.0104 (  2.3%)   0.0105 (  2.3%)  IRGen
   0.0028 (  1.2%)   0.0010 (  0.5%)   0.0038 (  0.8%)   0.0038 (  0.8%)  load-all-members
   0.0013 (  0.5%)   0.0025 (  1.2%)   0.0037 (  0.8%)   0.0038 (  0.8%)  load-stdlib
   0.0024 (  1.0%)   0.0000 (  0.0%)   0.0024 (  0.5%)   0.0024 (  0.5%)  SIL optimization
   0.0010 (  0.4%)   0.0003 (  0.1%)   0.0013 (  0.3%)   0.0013 (  0.3%)  SILGen
   0.0007 (  0.3%)   0.0002 (  0.1%)   0.0009 (  0.2%)   0.0009 (  0.2%)  SILGen-function
   0.0005 (  0.2%)   0.0003 (  0.1%)   0.0007 (  0.2%)   0.0007 (  0.2%)  typecheck-expr
   0.0003 (  0.1%)   0.0001 (  0.1%)   0.0005 (  0.1%)   0.0005 (  0.1%)  typecheck-stmt
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  precheck-target
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.2374 (100.0%)   0.2094 (100.0%)   0.4468 (100.0%)   0.4491 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 3.4870 seconds (3.8198 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   2.0123 (100.0%)   1.4747 (100.0%)   3.4870 (100.0%)   3.8198 (100.0%)  Building Target
   2.0123 (100.0%)   1.4747 (100.0%)   3.4870 (100.0%)   3.8198 (100.0%)  Total
SwiftCompile normal x86_64 /Users/admin/builder/spi-builder-workspace/Sources/Magellan/Navigation/NavigationContext.swift (in target 'Magellan' from project 'Magellan')
    cd /Users/admin/builder/spi-builder-workspace

SwiftDriverJobDiscovery normal x86_64 Emitting module for Magellan (in target 'Magellan' from project 'Magellan')
SwiftCompile normal x86_64 Compiling\ Navigation.swift /Users/admin/builder/spi-builder-workspace/Sources/Magellan/Navigation/Navigation.swift (in target 'Magellan' from project 'Magellan')
SwiftCompile normal x86_64 /Users/admin/builder/spi-builder-workspace/Sources/Magellan/Navigation/Navigation.swift (in target 'Magellan' from project 'Magellan')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Navigation/Navigation.swift:35:14: warning: main actor-isolated property 'navigation' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        root.navigation = self
             ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:32:35: note: mutation of this property is only permitted within the actor
    public internal(set) weak var navigation: Navigation? {
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Navigation/Navigation.swift:49:70: warning: main actor-isolated property 'traitCollection' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            let presentation = route.presentation(self.traitProvider.traitCollection)
                                                                     ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UITraitCollection.h:170:52: note: property declared here
@property (nonatomic, readonly) UITraitCollection *traitCollection API_AVAILABLE(ios(8.0));
                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Navigation/Navigation.swift:45:15: note: add '@MainActor' to make instance method 'navigate(to:sender:control:)' part of global actor 'MainActor'
    open func navigate(to context: Any, sender: UIViewController, control: UIControl? = nil) -> PresentingContext? {
              ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Navigation/Navigation.swift:62:41: warning: main actor-isolated property 'shownPresentingContext' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        navigation.sourceViewController.shownPresentingContext = presentingContext
                                        ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:20:9: note: mutation of this property is only permitted within the actor
    var shownPresentingContext: PresentingContext? {
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Navigation/Navigation.swift:57:22: note: add '@MainActor' to make instance method 'doNavigation(context:navigation:presentation:)' part of global actor 'MainActor'
    fileprivate func doNavigation(context: Any, navigation: NavigationContext, presentation: PresentationStrategy) -> PresentingContext {
                     ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Navigation/Navigation.swift:63:46: warning: main actor-isolated property 'showingPresentingContext' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        navigation.destinationViewController.showingPresentingContext = presentingContext
                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:26:9: note: mutation of this property is only permitted within the actor
    var showingPresentingContext: PresentingContext? {
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Navigation/Navigation.swift:57:22: note: add '@MainActor' to make instance method 'doNavigation(context:navigation:presentation:)' part of global actor 'MainActor'
    fileprivate func doNavigation(context: Any, navigation: NavigationContext, presentation: PresentationStrategy) -> PresentingContext {
                     ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Navigation/Navigation.swift:64:46: warning: main actor-isolated property 'navigation' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        navigation.destinationViewController.navigation = self
                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:32:35: note: mutation of this property is only permitted within the actor
    public internal(set) weak var navigation: Navigation? {
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Navigation/Navigation.swift:57:22: note: add '@MainActor' to make instance method 'doNavigation(context:navigation:presentation:)' part of global actor 'MainActor'
    fileprivate func doNavigation(context: Any, navigation: NavigationContext, presentation: PresentationStrategy) -> PresentingContext {
                     ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Navigation/Navigation.swift:73:43: warning: main actor-isolated property 'shownPresentingContext' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        if let presentingContext = sender.shownPresentingContext {
                                          ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:20:9: note: property declared here
    var shownPresentingContext: PresentingContext? {
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Navigation/Navigation.swift:72:15: note: add '@MainActor' to make instance method 'navigateBack(to:)' part of global actor 'MainActor'
    open func navigateBack(to sender: UIViewController) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Navigation/Navigation.swift:80:49: warning: main actor-isolated property 'showingPresentingContext' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        if  let presentingContext = destination.showingPresentingContext {
                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:26:9: note: property declared here
    var showingPresentingContext: PresentingContext? {
        ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Navigation/Navigation.swift:79:15: note: add '@MainActor' to make instance method 'navigateBack(from:status:)' part of global actor 'MainActor'
    open func navigateBack(from destination: UIViewController, status: PresentingContext.TerminateStatus = .completed) {
              ^
    @MainActor
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1749885636059469-swift-frontend-Magellan-Navigation.swift-x86_64_apple_ios18.4_macabi-o-Onone-2477454934.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.4722 seconds (0.4753 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0902 ( 33.9%)   0.0314 ( 15.2%)   0.1216 ( 25.8%)   0.1237 ( 26.0%)  build-rewrite-system
   0.0424 ( 15.9%)   0.0535 ( 26.0%)   0.0958 ( 20.3%)   0.0958 ( 20.2%)  parse-and-resolve-imports
   0.0407 ( 15.3%)   0.0521 ( 25.3%)   0.0927 ( 19.6%)   0.0927 ( 19.5%)  Import resolution
   0.0348 ( 13.1%)   0.0364 ( 17.7%)   0.0712 ( 15.1%)   0.0721 ( 15.2%)  import-clang-decl
   0.0124 (  4.6%)   0.0072 (  3.5%)   0.0196 (  4.1%)   0.0196 (  4.1%)  perform-sema
   0.0123 (  4.6%)   0.0072 (  3.5%)   0.0195 (  4.1%)   0.0195 (  4.1%)  Type checking and Semantic analysis
   0.0085 (  3.2%)   0.0063 (  3.1%)   0.0149 (  3.2%)   0.0149 (  3.1%)  typecheck-decl
   0.0064 (  2.4%)   0.0065 (  3.1%)   0.0128 (  2.7%)   0.0128 (  2.7%)  IRGen
   0.0045 (  1.7%)   0.0012 (  0.6%)   0.0057 (  1.2%)   0.0058 (  1.2%)  typecheck-expr
   0.0045 (  1.7%)   0.0010 (  0.5%)   0.0055 (  1.2%)   0.0055 (  1.2%)  typecheck-stmt
   0.0035 (  1.3%)   0.0000 (  0.0%)   0.0035 (  0.8%)   0.0035 (  0.7%)  SIL optimization
   0.0011 (  0.4%)   0.0022 (  1.1%)   0.0033 (  0.7%)   0.0033 (  0.7%)  load-stdlib
   0.0024 (  0.9%)   0.0008 (  0.4%)   0.0032 (  0.7%)   0.0033 (  0.7%)  load-all-members
   0.0013 (  0.5%)   0.0002 (  0.1%)   0.0015 (  0.3%)   0.0015 (  0.3%)  SILGen
   0.0009 (  0.3%)   0.0001 (  0.1%)   0.0010 (  0.2%)   0.0010 (  0.2%)  SILGen-function
   0.0002 (  0.1%)   0.0000 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  precheck-target
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  get-conformance-access-path
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.2662 (100.0%)   0.2060 (100.0%)   0.4722 (100.0%)   0.4753 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 3.4883 seconds (3.8179 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   2.0151 (100.0%)   1.4732 (100.0%)   3.4883 (100.0%)   3.8179 (100.0%)  Building Target
   2.0151 (100.0%)   1.4732 (100.0%)   3.4883 (100.0%)   3.8179 (100.0%)  Total
SwiftDriverJobDiscovery normal arm64 Emitting module for Magellan (in target 'Magellan' from project 'Magellan')
SwiftDriver\ Compilation\ Requirements Magellan normal x86_64 com.apple.xcode.tools.swift.compiler (in target 'Magellan' from project 'Magellan')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Magellan -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/x86_64/Magellan.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 -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target x86_64-apple-ios18.4-macabi -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4.2 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -Fsystem /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/x86_64/Magellan-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/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/x86_64/Magellan.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/Magellan.build/Debug-maccatalyst/Magellan.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/x86_64/Magellan_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/include -Xcc -isystem -Xcc /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/usr/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/DerivedSources-normal/x86_64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/DerivedSources/x86_64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/x86_64/Magellan-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling PresentationSegue.swift (in target 'Magellan' from project 'Magellan')
SwiftDriver\ Compilation\ Requirements Magellan normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Magellan' from project 'Magellan')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Magellan -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/arm64/Magellan.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 -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-ios18.4-macabi -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4.2 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -Fsystem /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/arm64/Magellan-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/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/arm64/Magellan.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/Magellan.build/Debug-maccatalyst/Magellan.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/arm64/Magellan_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/include -Xcc -isystem -Xcc /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/usr/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/arm64/Magellan-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftCompile normal x86_64 Compiling\ Route.swift /Users/admin/builder/spi-builder-workspace/Sources/Magellan/Route/Route.swift (in target 'Magellan' from project 'Magellan')
SwiftCompile normal x86_64 /Users/admin/builder/spi-builder-workspace/Sources/Magellan/Route/Route.swift (in target 'Magellan' from project 'Magellan')
    cd /Users/admin/builder/spi-builder-workspace

Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1749885640375406-swift-frontend-Magellan-Route.swift-x86_64_apple_ios18.4_macabi-o-Onone-274749771.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.4949 seconds (0.5050 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0407 ( 35.8%)   0.0811 ( 21.3%)   0.1218 ( 24.6%)   0.1261 ( 25.0%)  parse-and-resolve-imports
   0.0391 ( 34.4%)   0.0748 ( 19.6%)   0.1139 ( 23.0%)   0.1181 ( 23.4%)  Import resolution
   0.0077 (  6.8%)   0.0909 ( 23.9%)   0.0986 ( 19.9%)   0.0990 ( 19.6%)  IRGen
   0.0028 (  2.5%)   0.0361 (  9.5%)   0.0389 (  7.9%)   0.0390 (  7.7%)  import-clang-decl
   0.0061 (  5.4%)   0.0319 (  8.4%)   0.0380 (  7.7%)   0.0381 (  7.5%)  perform-sema
   0.0061 (  5.3%)   0.0319 (  8.4%)   0.0379 (  7.7%)   0.0380 (  7.5%)  Type checking and Semantic analysis
   0.0048 (  4.2%)   0.0314 (  8.2%)   0.0362 (  7.3%)   0.0363 (  7.2%)  typecheck-decl
   0.0011 (  1.0%)   0.0020 (  0.5%)   0.0031 (  0.6%)   0.0039 (  0.8%)  load-stdlib
   0.0020 (  1.8%)   0.0000 (  0.0%)   0.0020 (  0.4%)   0.0020 (  0.4%)  SIL optimization
   0.0009 (  0.8%)   0.0004 (  0.1%)   0.0012 (  0.3%)   0.0012 (  0.2%)  typecheck-stmt
   0.0009 (  0.7%)   0.0003 (  0.1%)   0.0012 (  0.2%)   0.0012 (  0.2%)  typecheck-expr
   0.0008 (  0.7%)   0.0002 (  0.1%)   0.0010 (  0.2%)   0.0010 (  0.2%)  SILGen
   0.0006 (  0.5%)   0.0002 (  0.0%)   0.0007 (  0.1%)   0.0007 (  0.1%)  SILGen-function
   0.0001 (  0.1%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  build-rewrite-system
   0.0001 (  0.1%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  precheck-target
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.1137 (100.0%)   0.3812 (100.0%)   0.4949 (100.0%)   0.5050 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.2930 seconds (0.2998 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0691 (100.0%)   0.2238 (100.0%)   0.2930 (100.0%)   0.2998 (100.0%)  Building Target
   0.0691 (100.0%)   0.2238 (100.0%)   0.2930 (100.0%)   0.2998 (100.0%)  Total
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/Magellan.framework/Versions/A/Headers/Magellan-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/arm64/Magellan-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/x86_64/Magellan-Swift.h (in target 'Magellan' from project 'Magellan')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/arm64/Magellan-Swift.h -arch x86_64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/x86_64/Magellan-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/Magellan.framework/Versions/A/Headers/Magellan-Swift.h
SwiftDriverJobDiscovery normal arm64 Compiling PresentationStrategy.swift (in target 'Magellan' from project 'Magellan')
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/Magellan.framework/Versions/A/Modules/Magellan.swiftmodule/x86_64-apple-ios-macabi.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/x86_64/Magellan.swiftmodule (in target 'Magellan' from project 'Magellan')
    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/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/x86_64/Magellan.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/Magellan.framework/Versions/A/Modules/Magellan.swiftmodule/x86_64-apple-ios-macabi.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/Magellan.framework/Versions/A/Modules/Magellan.swiftmodule/x86_64-apple-ios-macabi.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/x86_64/Magellan.swiftdoc (in target 'Magellan' from project 'Magellan')
    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/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/x86_64/Magellan.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/Magellan.framework/Versions/A/Modules/Magellan.swiftmodule/x86_64-apple-ios-macabi.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/Magellan.framework/Versions/A/Modules/Magellan.swiftmodule/x86_64-apple-ios-macabi.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/x86_64/Magellan.abi.json (in target 'Magellan' from project 'Magellan')
    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/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/x86_64/Magellan.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/Magellan.framework/Versions/A/Modules/Magellan.swiftmodule/x86_64-apple-ios-macabi.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/Magellan.framework/Versions/A/Modules/Magellan.swiftmodule/arm64-apple-ios-macabi.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/arm64/Magellan.swiftmodule (in target 'Magellan' from project 'Magellan')
    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/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/arm64/Magellan.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/Magellan.framework/Versions/A/Modules/Magellan.swiftmodule/arm64-apple-ios-macabi.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/Magellan.framework/Versions/A/Modules/Magellan.swiftmodule/arm64-apple-ios-macabi.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/arm64/Magellan.swiftdoc (in target 'Magellan' from project 'Magellan')
    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/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/arm64/Magellan.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/Magellan.framework/Versions/A/Modules/Magellan.swiftmodule/arm64-apple-ios-macabi.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/Magellan.framework/Versions/A/Modules/Magellan.swiftmodule/arm64-apple-ios-macabi.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/arm64/Magellan.abi.json (in target 'Magellan' from project 'Magellan')
    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/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/arm64/Magellan.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/Magellan.framework/Versions/A/Modules/Magellan.swiftmodule/arm64-apple-ios-macabi.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/Magellan.framework/Versions/A/Modules/Magellan.swiftmodule/Project/x86_64-apple-ios-macabi.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/x86_64/Magellan.swiftsourceinfo (in target 'Magellan' from project 'Magellan')
    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/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/x86_64/Magellan.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/Magellan.framework/Versions/A/Modules/Magellan.swiftmodule/Project/x86_64-apple-ios-macabi.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/Magellan.framework/Versions/A/Modules/Magellan.swiftmodule/Project/arm64-apple-ios-macabi.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/arm64/Magellan.swiftsourceinfo (in target 'Magellan' from project 'Magellan')
    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/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/arm64/Magellan.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/Magellan.framework/Versions/A/Modules/Magellan.swiftmodule/Project/arm64-apple-ios-macabi.swiftsourceinfo
SwiftCompile normal x86_64 Compiling\ PresentationPopover.swift /Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift (in target 'Magellan' from project 'Magellan')
SwiftCompile normal x86_64 /Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift (in target 'Magellan' from project 'Magellan')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:16:55: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        let stackController: UINavigationController = UINavigationController()
                                                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:14:15: note: add '@MainActor' to make instance method 'show' part of global actor 'MainActor'
    open func show(_ navigationContext: NavigationContext) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:18:25: warning: main actor-isolated property 'modalPresentationStyle' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        stackController.modalPresentationStyle = .popover
                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:282:54: note: mutation of this property is only permitted within the actor
@property(nonatomic,assign) UIModalPresentationStyle modalPresentationStyle API_AVAILABLE(ios(3.2));
                                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:14:15: note: add '@MainActor' to make instance method 'show' part of global actor 'MainActor'
    open func show(_ navigationContext: NavigationContext) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:19:25: warning: call to main actor-isolated instance method 'pushViewController(_:animated:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        stackController.pushViewController(destinationController, animated: false)
                        ^
UIKit.UINavigationController.pushViewController:2:22: note: calls to instance method 'pushViewController(_:animated:)' from outside of its actor context are implicitly asynchronous
@MainActor open func pushViewController(_ viewController: UIViewController, animated: Bool)}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:14:15: note: add '@MainActor' to make instance method 'show' part of global actor 'MainActor'
    open func show(_ navigationContext: NavigationContext) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:20:48: warning: call to main actor-isolated instance method 'present(_:animated:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        navigationContext.sourceViewController.present(stackController, animated: true, completion: nil)
                                               ^
UIKit.UIViewController.present:3:24: note: calls to instance method 'present(_:animated:completion:)' from outside of its actor context are implicitly asynchronous
  @MainActor open func present(_ viewControllerToPresent: UIViewController, animated flag: Bool, completion: (() -> Void)? = nil)}
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:14:15: note: add '@MainActor' to make instance method 'show' part of global actor 'MainActor'
    open func show(_ navigationContext: NavigationContext) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:22:56: warning: main actor-isolated property 'sourceView' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        stackController.popoverPresentationController!.sourceView = navigationContext.touchedControl
                                                       ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverPresentationController.h:46:49: note: mutation of this property is only permitted within the actor
@property (nullable, nonatomic, strong) UIView *sourceView;
                                                ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:14:15: note: add '@MainActor' to make instance method 'show' part of global actor 'MainActor'
    open func show(_ navigationContext: NavigationContext) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:22:25: warning: main actor-isolated property 'popoverPresentationController' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        stackController.popoverPresentationController!.sourceView = navigationContext.touchedControl
                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:595:76: note: mutation of this property is only permitted within the actor
@property (nullable, nonatomic, readonly) UIPopoverPresentationController *popoverPresentationController API_AVAILABLE(ios(8.0));
                                                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:14:15: note: add '@MainActor' to make instance method 'show' part of global actor 'MainActor'
    open func show(_ navigationContext: NavigationContext) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:23:56: warning: main actor-isolated property 'sourceRect' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        stackController.popoverPresentationController!.sourceRect = navigationContext.touchedControl!.bounds
                                                       ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIPopoverPresentationController.h:51:38: note: mutation of this property is only permitted within the actor
@property (nonatomic, assign) CGRect sourceRect;
                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:14:15: note: add '@MainActor' to make instance method 'show' part of global actor 'MainActor'
    open func show(_ navigationContext: NavigationContext) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:23:25: warning: main actor-isolated property 'popoverPresentationController' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
        stackController.popoverPresentationController!.sourceRect = navigationContext.touchedControl!.bounds
                        ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:595:76: note: mutation of this property is only permitted within the actor
@property (nullable, nonatomic, readonly) UIPopoverPresentationController *popoverPresentationController API_AVAILABLE(ios(8.0));
                                                                           ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:14:15: note: add '@MainActor' to make instance method 'show' part of global actor 'MainActor'
    open func show(_ navigationContext: NavigationContext) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:23:103: warning: main actor-isolated property 'bounds' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        stackController.popoverPresentationController!.sourceRect = navigationContext.touchedControl!.bounds
                                                                                                      ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIView.h:188:40: note: property declared here
@property(nonatomic) CGRect            bounds;      // default bounds is zero origin, frame size. animatable
                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:14:15: note: add '@MainActor' to make instance method 'show' part of global actor 'MainActor'
    open func show(_ navigationContext: NavigationContext) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:27:38: warning: call to main actor-isolated instance method 'dismiss(animated:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        context.sourceViewController.dismiss(animated: true, completion: nil)
                                     ^
UIKit.UIViewController.dismiss:3:24: note: calls to instance method 'dismiss(animated:completion:)' from outside of its actor context are implicitly asynchronous
  @MainActor open func dismiss(animated flag: Bool, completion: (() -> Void)? = nil)}
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPopover.swift:26:15: note: add '@MainActor' to make instance method 'dismiss' part of global actor 'MainActor'
    open func dismiss(_ context: NavigationContext) {
              ^
    @MainActor
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1749885640409360-swift-frontend-Magellan-PresentationPopover.swift-x86_64_apple_ios18.4_macabi-o-Onone-4207497073.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.9000 seconds (0.9028 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0444 ( 20.8%)   0.2406 ( 35.0%)   0.2850 ( 31.7%)   0.2865 ( 31.7%)  parse-and-resolve-imports
   0.0429 ( 20.1%)   0.2348 ( 34.2%)   0.2777 ( 30.9%)   0.2791 ( 30.9%)  Import resolution
   0.0235 ( 11.0%)   0.0345 (  5.0%)   0.0580 (  6.4%)   0.0580 (  6.4%)  perform-sema
   0.0234 ( 11.0%)   0.0345 (  5.0%)   0.0579 (  6.4%)   0.0579 (  6.4%)  Type checking and Semantic analysis
   0.0220 ( 10.3%)   0.0341 (  5.0%)   0.0561 (  6.2%)   0.0561 (  6.2%)  typecheck-expr
   0.0220 ( 10.3%)   0.0340 (  5.0%)   0.0560 (  6.2%)   0.0560 (  6.2%)  typecheck-stmt
   0.0082 (  3.8%)   0.0349 (  5.1%)   0.0431 (  4.8%)   0.0430 (  4.8%)  import-clang-decl
   0.0127 (  5.9%)   0.0298 (  4.3%)   0.0424 (  4.7%)   0.0424 (  4.7%)  typecheck-decl
   0.0054 (  2.6%)   0.0068 (  1.0%)   0.0123 (  1.4%)   0.0123 (  1.4%)  IRGen
   0.0023 (  1.1%)   0.0005 (  0.1%)   0.0027 (  0.3%)   0.0027 (  0.3%)  SILGen
   0.0027 (  1.3%)   0.0000 (  0.0%)   0.0027 (  0.3%)   0.0027 (  0.3%)  SIL optimization
   0.0019 (  0.9%)   0.0004 (  0.1%)   0.0022 (  0.2%)   0.0022 (  0.2%)  SILGen-function
   0.0008 (  0.4%)   0.0012 (  0.2%)   0.0021 (  0.2%)   0.0021 (  0.2%)  load-stdlib
   0.0008 (  0.4%)   0.0004 (  0.1%)   0.0012 (  0.1%)   0.0012 (  0.1%)  load-all-members
   0.0002 (  0.1%)   0.0002 (  0.0%)   0.0004 (  0.0%)   0.0004 (  0.0%)  build-rewrite-system
   0.0001 (  0.1%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  precheck-target
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.2132 (100.0%)   0.6868 (100.0%)   0.9000 (100.0%)   0.9028 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.3840 seconds (0.3863 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0909 (100.0%)   0.2931 (100.0%)   0.3840 (100.0%)   0.3863 (100.0%)  Building Target
   0.0909 (100.0%)   0.2931 (100.0%)   0.3840 (100.0%)   0.3863 (100.0%)  Total
SwiftCompile normal x86_64 Compiling\ PresentationSegue.swift /Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationSegue.swift (in target 'Magellan' from project 'Magellan')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1749885640411094-swift-frontend-Magellan-PresentationSegue.swift-x86_64_apple_ios18.4_macabi-o-Onone-2260465060.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.7667 seconds (0.7720 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0453 ( 30.2%)   0.2764 ( 44.8%)   0.3216 ( 41.9%)   0.3242 ( 42.0%)  parse-and-resolve-imports
   0.0433 ( 28.9%)   0.2727 ( 44.2%)   0.3160 ( 41.2%)   0.3186 ( 41.3%)  Import resolution
   0.0098 (  6.5%)   0.0096 (  1.6%)   0.0194 (  2.5%)   0.0194 (  2.5%)  perform-sema
   0.0097 (  6.5%)   0.0096 (  1.5%)   0.0193 (  2.5%)   0.0193 (  2.5%)  Type checking and Semantic analysis
   0.0081 (  5.4%)   0.0086 (  1.4%)   0.0167 (  2.2%)   0.0168 (  2.2%)  typecheck-stmt
   0.0081 (  5.4%)   0.0086 (  1.4%)   0.0166 (  2.2%)   0.0167 (  2.2%)  typecheck-expr
   0.0065 (  4.3%)   0.0085 (  1.4%)   0.0150 (  2.0%)   0.0150 (  1.9%)  IRGen
   0.0068 (  4.5%)   0.0080 (  1.3%)   0.0148 (  1.9%)   0.0148 (  1.9%)  typecheck-decl
   0.0047 (  3.2%)   0.0097 (  1.6%)   0.0144 (  1.9%)   0.0144 (  1.9%)  import-clang-decl
   0.0021 (  1.4%)   0.0016 (  0.3%)   0.0038 (  0.5%)   0.0038 (  0.5%)  SILGen
   0.0018 (  1.2%)   0.0015 (  0.2%)   0.0034 (  0.4%)   0.0034 (  0.4%)  SILGen-function
   0.0009 (  0.6%)   0.0018 (  0.3%)   0.0027 (  0.4%)   0.0027 (  0.4%)  load-stdlib
   0.0019 (  1.3%)   0.0000 (  0.0%)   0.0020 (  0.3%)   0.0020 (  0.3%)  SIL optimization
   0.0005 (  0.4%)   0.0002 (  0.0%)   0.0008 (  0.1%)   0.0008 (  0.1%)  load-all-members
   0.0002 (  0.1%)   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  build-rewrite-system
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  precheck-target
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.1499 (100.0%)   0.6168 (100.0%)   0.7667 (100.0%)   0.7720 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.3803 seconds (0.3830 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0755 (100.0%)   0.3048 (100.0%)   0.3803 (100.0%)   0.3830 (100.0%)  Building Target
   0.0755 (100.0%)   0.3048 (100.0%)   0.3803 (100.0%)   0.3830 (100.0%)  Total
SwiftCompile normal x86_64 /Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationSegue.swift (in target 'Magellan' from project 'Magellan')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationSegue.swift:21:14: warning: call to main actor-isolated initializer 'init(identifier:source:destination:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            .init(identifier: nil, source: context.sourceViewController, destination: context.destinationViewController)
             ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIStoryboardSegue.h:22:1: note: calls to initializer 'init(identifier:source:destination:)' from outside of its actor context are implicitly asynchronous
- (instancetype)initWithIdentifier:(nullable NSString *)identifier source:(UIViewController *)source destination:(UIViewController *)destination NS_DESIGNATED_INITIALIZER;
^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationSegue.swift:19:15: note: add '@MainActor' to make instance method 'show' part of global actor 'MainActor'
    open func show(_ context: NavigationContext) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationSegue.swift:23:15: warning: call to main actor-isolated instance method 'perform()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        segue.perform()
              ^
UIKit.UIStoryboardSegue.perform:2:22: note: calls to instance method 'perform()' from outside of its actor context are implicitly asynchronous
@MainActor open func perform()}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationSegue.swift:19:15: note: add '@MainActor' to make instance method 'show' part of global actor 'MainActor'
    open func show(_ context: NavigationContext) {
              ^
    @MainActor
SwiftDriverJobDiscovery normal x86_64 Compiling NavigationContext.swift (in target 'Magellan' from project 'Magellan')
SwiftCompile normal x86_64 Compiling\ PresentingContext.swift /Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/PresentingContext.swift (in target 'Magellan' from project 'Magellan')
SwiftCompile normal x86_64 /Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/PresentingContext.swift (in target 'Magellan' from project 'Magellan')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/PresentingContext.swift:37:53: warning: main actor-isolated property 'navigation' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        guard let navigation = sourceViewController.navigation else {
                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:32:35: note: property declared here
    public internal(set) weak var navigation: Navigation? {
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/PresentingContext.swift:34:15: note: add '@MainActor' to make instance method 'terminate' part of global actor 'MainActor'
    open func terminate(_ status: TerminateStatus = .completed) {
              ^
    @MainActor
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1749885640411946-swift-frontend-Magellan-PresentingContext.swift-x86_64_apple_ios18.4_macabi-o-Onone-1572708902.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.7879 seconds (0.7920 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0451 ( 26.1%)   0.2726 ( 44.3%)   0.3177 ( 40.3%)   0.3191 ( 40.3%)  parse-and-resolve-imports
   0.0434 ( 25.1%)   0.2676 ( 43.5%)   0.3109 ( 39.5%)   0.3124 ( 39.4%)  Import resolution
   0.0173 ( 10.0%)   0.0132 (  2.1%)   0.0305 (  3.9%)   0.0307 (  3.9%)  perform-sema
   0.0173 ( 10.0%)   0.0131 (  2.1%)   0.0304 (  3.9%)   0.0306 (  3.9%)  Type checking and Semantic analysis
   0.0149 (  8.6%)   0.0122 (  2.0%)   0.0271 (  3.4%)   0.0272 (  3.4%)  typecheck-decl
   0.0081 (  4.7%)   0.0075 (  1.2%)   0.0155 (  2.0%)   0.0156 (  2.0%)  IRGen
   0.0040 (  2.3%)   0.0111 (  1.8%)   0.0151 (  1.9%)   0.0153 (  1.9%)  import-clang-decl
   0.0053 (  3.1%)   0.0068 (  1.1%)   0.0121 (  1.5%)   0.0123 (  1.5%)  typecheck-stmt
   0.0053 (  3.1%)   0.0068 (  1.1%)   0.0121 (  1.5%)   0.0122 (  1.5%)  typecheck-expr
   0.0038 (  2.2%)   0.0016 (  0.3%)   0.0054 (  0.7%)   0.0054 (  0.7%)  build-rewrite-system
   0.0027 (  1.5%)   0.0009 (  0.1%)   0.0035 (  0.4%)   0.0035 (  0.4%)  SILGen
   0.0032 (  1.8%)   0.0001 (  0.0%)   0.0032 (  0.4%)   0.0032 (  0.4%)  SIL optimization
   0.0009 (  0.5%)   0.0016 (  0.3%)   0.0025 (  0.3%)   0.0025 (  0.3%)  load-stdlib
   0.0014 (  0.8%)   0.0004 (  0.1%)   0.0018 (  0.2%)   0.0018 (  0.2%)  SILGen-function
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  precheck-target
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.1727 (100.0%)   0.6152 (100.0%)   0.7879 (100.0%)   0.7920 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.3941 seconds (0.3971 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0916 (100.0%)   0.3024 (100.0%)   0.3941 (100.0%)   0.3971 (100.0%)  Building Target
   0.0916 (100.0%)   0.3024 (100.0%)   0.3941 (100.0%)   0.3971 (100.0%)  Total
SwiftDriverJobDiscovery normal arm64 Compiling Navigation.swift (in target 'Magellan' from project 'Magellan')
SwiftCompile normal arm64 Compiling\ UIViewController+Nabigeta.swift /Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift (in target 'Magellan' from project 'Magellan')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift (in target 'Magellan' from project 'Magellan')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:14:20: warning: static property 'ShownContext' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var ShownContext = "ShownContextAttr"
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:14:20: note: convert 'ShownContext' to a 'let' constant to make 'Sendable' shared state immutable
        static var ShownContext = "ShownContextAttr"
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:14:20: note: add '@MainActor' to make static property 'ShownContext' part of global actor 'MainActor'
        static var ShownContext = "ShownContextAttr"
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:14:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var ShownContext = "ShownContextAttr"
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:15:20: warning: static property 'ShowingContext' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var ShowingContext = "ShowingContextAttr"
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:15:20: note: convert 'ShowingContext' to a 'let' constant to make 'Sendable' shared state immutable
        static var ShowingContext = "ShowingContextAttr"
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:15:20: note: add '@MainActor' to make static property 'ShowingContext' part of global actor 'MainActor'
        static var ShowingContext = "ShowingContextAttr"
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:15:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var ShowingContext = "ShowingContextAttr"
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:16:20: warning: static property 'Navigation' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var Navigation = "NavigationAttr"
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:16:20: note: convert 'Navigation' to a 'let' constant to make 'Sendable' shared state immutable
        static var Navigation = "NavigationAttr"
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:16:20: note: add '@MainActor' to make static property 'Navigation' part of global actor 'MainActor'
        static var Navigation = "NavigationAttr"
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:16:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var Navigation = "NavigationAttr"
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:21:53: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
        get { return objc_getAssociatedObject(self, &Keys.ShownContext) as? PresentingContext }
                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:22:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
        set { objc_setAssociatedObject(self, &Keys.ShownContext, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) }
                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:27:53: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
        get { return objc_getAssociatedObject(self, &Keys.ShowingContext) as? PresentingContext }
                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:28:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
        set { objc_setAssociatedObject(self, &Keys.ShowingContext, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) }
                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:33:53: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
        get { return objc_getAssociatedObject(self, &Keys.Navigation) as? Navigation ?? self.parent?.navigation }
                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:34:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
        set { objc_setAssociatedObject(self, &Keys.Navigation, newValue, .OBJC_ASSOCIATION_ASSIGN) }
                                             ^
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1749885640424638-swift-frontend-Magellan-UIViewController_Nabigeta.swift-arm64_apple_ios18.4_macabi-o-Onone-1608068443.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.7885 seconds (0.7908 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0480 ( 28.2%)   0.2850 ( 46.1%)   0.3329 ( 42.2%)   0.3339 ( 42.2%)  parse-and-resolve-imports
   0.0462 ( 27.1%)   0.2826 ( 45.7%)   0.3288 ( 41.7%)   0.3297 ( 41.7%)  Import resolution
   0.0169 (  9.9%)   0.0105 (  1.7%)   0.0274 (  3.5%)   0.0274 (  3.5%)  perform-sema
   0.0168 (  9.9%)   0.0105 (  1.7%)   0.0273 (  3.5%)   0.0274 (  3.5%)  Type checking and Semantic analysis
   0.0077 (  4.5%)   0.0081 (  1.3%)   0.0158 (  2.0%)   0.0159 (  2.0%)  typecheck-decl
   0.0070 (  4.1%)   0.0073 (  1.2%)   0.0143 (  1.8%)   0.0143 (  1.8%)  IRGen
   0.0084 (  4.9%)   0.0022 (  0.4%)   0.0106 (  1.3%)   0.0107 (  1.3%)  typecheck-stmt
   0.0032 (  1.9%)   0.0065 (  1.1%)   0.0097 (  1.2%)   0.0097 (  1.2%)  import-clang-decl
   0.0029 (  1.7%)   0.0012 (  0.2%)   0.0041 (  0.5%)   0.0041 (  0.5%)  typecheck-expr
   0.0040 (  2.4%)   0.0001 (  0.0%)   0.0041 (  0.5%)   0.0041 (  0.5%)  SIL optimization
   0.0033 (  1.9%)   0.0008 (  0.1%)   0.0041 (  0.5%)   0.0041 (  0.5%)  SILGen
   0.0011 (  0.6%)   0.0023 (  0.4%)   0.0034 (  0.4%)   0.0037 (  0.5%)  load-stdlib
   0.0026 (  1.5%)   0.0006 (  0.1%)   0.0032 (  0.4%)   0.0032 (  0.4%)  SILGen-function
   0.0016 (  1.0%)   0.0003 (  0.1%)   0.0020 (  0.2%)   0.0020 (  0.2%)  precheck-target
   0.0005 (  0.3%)   0.0002 (  0.0%)   0.0008 (  0.1%)   0.0008 (  0.1%)  build-rewrite-system
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.1702 (100.0%)   0.6182 (100.0%)   0.7885 (100.0%)   0.7908 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.4156 seconds (0.4185 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.1015 (100.0%)   0.3142 (100.0%)   0.4156 (100.0%)   0.4185 (100.0%)  Building Target
   0.1015 (100.0%)   0.3142 (100.0%)   0.4156 (100.0%)   0.4185 (100.0%)  Total
SwiftDriverJobDiscovery normal arm64 Compiling Route.swift (in target 'Magellan' from project 'Magellan')
SwiftCompile normal x86_64 Compiling\ PresentationPush.swift /Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPush.swift (in target 'Magellan' from project 'Magellan')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1749885640433345-swift-frontend-Magellan-PresentationPush.swift-x86_64_apple_ios18.4_macabi-o-Onone-2452844038.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.8149 seconds (0.8185 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0466 ( 22.5%)   0.2675 ( 44.0%)   0.3141 ( 38.5%)   0.3157 ( 38.6%)  parse-and-resolve-imports
   0.0451 ( 21.7%)   0.2656 ( 43.7%)   0.3107 ( 38.1%)   0.3123 ( 38.2%)  Import resolution
   0.0242 ( 11.6%)   0.0130 (  2.1%)   0.0372 (  4.6%)   0.0372 (  4.5%)  perform-sema
   0.0241 ( 11.6%)   0.0130 (  2.1%)   0.0371 (  4.6%)   0.0371 (  4.5%)  Type checking and Semantic analysis
   0.0217 ( 10.4%)   0.0121 (  2.0%)   0.0338 (  4.1%)   0.0338 (  4.1%)  typecheck-decl
   0.0103 (  5.0%)   0.0063 (  1.0%)   0.0166 (  2.0%)   0.0167 (  2.0%)  typecheck-stmt
   0.0100 (  4.8%)   0.0063 (  1.0%)   0.0163 (  2.0%)   0.0164 (  2.0%)  typecheck-expr
   0.0065 (  3.1%)   0.0074 (  1.2%)   0.0139 (  1.7%)   0.0140 (  1.7%)  IRGen
   0.0052 (  2.5%)   0.0087 (  1.4%)   0.0139 (  1.7%)   0.0139 (  1.7%)  import-clang-decl
   0.0013 (  0.6%)   0.0048 (  0.8%)   0.0060 (  0.7%)   0.0063 (  0.8%)  load-stdlib
   0.0035 (  1.7%)   0.0011 (  0.2%)   0.0047 (  0.6%)   0.0047 (  0.6%)  build-rewrite-system
   0.0033 (  1.6%)   0.0009 (  0.1%)   0.0042 (  0.5%)   0.0042 (  0.5%)  SILGen
   0.0025 (  1.2%)   0.0007 (  0.1%)   0.0032 (  0.4%)   0.0032 (  0.4%)  SILGen-function
   0.0030 (  1.5%)   0.0001 (  0.0%)   0.0031 (  0.4%)   0.0031 (  0.4%)  SIL optimization
   0.0001 (  0.0%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  precheck-target
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.2074 (100.0%)   0.6074 (100.0%)   0.8149 (100.0%)   0.8185 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.3991 seconds (0.4012 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0990 (100.0%)   0.3001 (100.0%)   0.3991 (100.0%)   0.4012 (100.0%)  Building Target
   0.0990 (100.0%)   0.3001 (100.0%)   0.3991 (100.0%)   0.4012 (100.0%)  Total
SwiftCompile normal x86_64 /Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPush.swift (in target 'Magellan' from project 'Magellan')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPush.swift:28:70: warning: main actor-isolated property 'navigationController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        let stackController = navigationContext.sourceViewController.navigationController!
                                                                     ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h:131:72: note: property declared here
@property(nullable, nonatomic,readonly,strong) UINavigationController *navigationController; // If this view controller has been pushed onto a navigation controller, return it.
                                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPush.swift:26:15: note: add '@MainActor' to make instance method 'show' part of global actor 'MainActor'
    open func show(_ navigationContext: NavigationContext) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPush.swift:32:29: warning: call to main actor-isolated instance method 'show(_:sender:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            stackController.show(destinationViewController, sender: navigationContext.sourceViewController)
                            ^
UIKit.UINavigationController.show:3:24: note: calls to instance method 'show(_:sender:)' from outside of its actor context are implicitly asynchronous
  @MainActor open func show(_ vc: UIViewController, sender: Any?)}
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPush.swift:26:15: note: add '@MainActor' to make instance method 'show' part of global actor 'MainActor'
    open func show(_ navigationContext: NavigationContext) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPush.swift:34:29: warning: call to main actor-isolated instance method 'showDetailViewController(_:sender:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            stackController.showDetailViewController(destinationViewController, sender: navigationContext.sourceViewController)
                            ^
UIKit.UIViewController.showDetailViewController:3:24: note: calls to instance method 'showDetailViewController(_:sender:)' from outside of its actor context are implicitly asynchronous
  @MainActor open func showDetailViewController(_ vc: UIViewController, sender: Any?)}
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPush.swift:26:15: note: add '@MainActor' to make instance method 'show' part of global actor 'MainActor'
    open func show(_ navigationContext: NavigationContext) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPush.swift:43:14: warning: call to main actor-isolated instance method 'popToViewController(_:animated:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            .popToViewController(context.sourceViewController, animated: true)
             ^
UIKit.UINavigationController.popToViewController:2:22: note: calls to instance method 'popToViewController(_:animated:)' from outside of its actor context are implicitly asynchronous
@MainActor open func popToViewController(_ viewController: UIViewController, animated: Bool) -> [UIViewController]?}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPush.swift:39:15: note: add '@MainActor' to make instance method 'dismiss' part of global actor 'MainActor'
    open func dismiss(_ context: NavigationContext) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPush.swift:42:14: warning: main actor-isolated property 'navigationController' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
            .navigationController?
             ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UINavigationController.h:131:72: note: property declared here
@property(nullable, nonatomic,readonly,strong) UINavigationController *navigationController; // If this view controller has been pushed onto a navigation controller, return it.
                                                                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationPush.swift:39:15: note: add '@MainActor' to make instance method 'dismiss' part of global actor 'MainActor'
    open func dismiss(_ context: NavigationContext) {
              ^
    @MainActor
SwiftDriverJobDiscovery normal arm64 Compiling PresentationModal.swift (in target 'Magellan' from project 'Magellan')
SwiftCompile normal x86_64 Compiling\ PresentationStrategy.swift /Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/PresentationStrategy.swift (in target 'Magellan' from project 'Magellan')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1749885640435590-swift-frontend-Magellan-PresentationStrategy.swift-x86_64_apple_ios18.4_macabi-o-Onone-2576938826.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.6530 seconds (0.6567 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0462 ( 46.9%)   0.2716 ( 49.0%)   0.3177 ( 48.7%)   0.3196 ( 48.7%)  parse-and-resolve-imports
   0.0445 ( 45.3%)   0.2692 ( 48.5%)   0.3137 ( 48.0%)   0.3156 ( 48.1%)  Import resolution
   0.0041 (  4.2%)   0.0073 (  1.3%)   0.0114 (  1.8%)   0.0114 (  1.7%)  IRGen
   0.0012 (  1.2%)   0.0042 (  0.8%)   0.0054 (  0.8%)   0.0054 (  0.8%)  load-stdlib
   0.0006 (  0.6%)   0.0010 (  0.2%)   0.0016 (  0.2%)   0.0016 (  0.2%)  import-clang-decl
   0.0006 (  0.6%)   0.0005 (  0.1%)   0.0011 (  0.2%)   0.0011 (  0.2%)  perform-sema
   0.0005 (  0.5%)   0.0005 (  0.1%)   0.0010 (  0.2%)   0.0010 (  0.2%)  Type checking and Semantic analysis
   0.0005 (  0.5%)   0.0004 (  0.1%)   0.0008 (  0.1%)   0.0008 (  0.1%)  typecheck-decl
   0.0001 (  0.1%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  build-rewrite-system
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SILGen
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0984 (100.0%)   0.5546 (100.0%)   0.6530 (100.0%)   0.6567 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.3432 seconds (0.3450 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0547 (100.0%)   0.2885 (100.0%)   0.3432 (100.0%)   0.3450 (100.0%)  Building Target
   0.0547 (100.0%)   0.2885 (100.0%)   0.3432 (100.0%)   0.3450 (100.0%)  Total
SwiftCompile normal x86_64 /Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/PresentationStrategy.swift (in target 'Magellan' from project 'Magellan')
    cd /Users/admin/builder/spi-builder-workspace

SwiftDriverJobDiscovery normal arm64 Compiling PresentationPopover.swift (in target 'Magellan' from project 'Magellan')
SwiftCompile normal x86_64 Compiling\ UIViewController+Nabigeta.swift /Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift (in target 'Magellan' from project 'Magellan')
SwiftCompile normal x86_64 /Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift (in target 'Magellan' from project 'Magellan')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:14:20: warning: static property 'ShownContext' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var ShownContext = "ShownContextAttr"
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:14:20: note: convert 'ShownContext' to a 'let' constant to make 'Sendable' shared state immutable
        static var ShownContext = "ShownContextAttr"
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:14:20: note: add '@MainActor' to make static property 'ShownContext' part of global actor 'MainActor'
        static var ShownContext = "ShownContextAttr"
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:14:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var ShownContext = "ShownContextAttr"
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:15:20: warning: static property 'ShowingContext' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var ShowingContext = "ShowingContextAttr"
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:15:20: note: convert 'ShowingContext' to a 'let' constant to make 'Sendable' shared state immutable
        static var ShowingContext = "ShowingContextAttr"
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:15:20: note: add '@MainActor' to make static property 'ShowingContext' part of global actor 'MainActor'
        static var ShowingContext = "ShowingContextAttr"
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:15:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var ShowingContext = "ShowingContextAttr"
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:16:20: warning: static property 'Navigation' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
        static var Navigation = "NavigationAttr"
                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:16:20: note: convert 'Navigation' to a 'let' constant to make 'Sendable' shared state immutable
        static var Navigation = "NavigationAttr"
               ~~~ ^
               let
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:16:20: note: add '@MainActor' to make static property 'Navigation' part of global actor 'MainActor'
        static var Navigation = "NavigationAttr"
                   ^
        @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:16:20: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
        static var Navigation = "NavigationAttr"
                   ^
        nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:21:53: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
        get { return objc_getAssociatedObject(self, &Keys.ShownContext) as? PresentingContext }
                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:22:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
        set { objc_setAssociatedObject(self, &Keys.ShownContext, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) }
                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:27:53: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
        get { return objc_getAssociatedObject(self, &Keys.ShowingContext) as? PresentingContext }
                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:28:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
        set { objc_setAssociatedObject(self, &Keys.ShowingContext, newValue, .OBJC_ASSOCIATION_RETAIN_NONATOMIC) }
                                             ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:33:53: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
        get { return objc_getAssociatedObject(self, &Keys.Navigation) as? Navigation ?? self.parent?.navigation }
                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:34:46: warning: forming 'UnsafeRawPointer' to an inout variable of type String exposes the internal representation rather than the string contents.
        set { objc_setAssociatedObject(self, &Keys.Navigation, newValue, .OBJC_ASSOCIATION_ASSIGN) }
                                             ^
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1749885640439012-swift-frontend-Magellan-UIViewController_Nabigeta.swift-x86_64_apple_ios18.4_macabi-o-Onone-1770844508.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.7602 seconds (0.7633 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0462 ( 27.4%)   0.2704 ( 45.7%)   0.3166 ( 41.6%)   0.3180 ( 41.7%)  parse-and-resolve-imports
   0.0445 ( 26.4%)   0.2679 ( 45.3%)   0.3124 ( 41.1%)   0.3138 ( 41.1%)  Import resolution
   0.0172 ( 10.2%)   0.0108 (  1.8%)   0.0281 (  3.7%)   0.0282 (  3.7%)  perform-sema
   0.0172 ( 10.2%)   0.0108 (  1.8%)   0.0280 (  3.7%)   0.0281 (  3.7%)  Type checking and Semantic analysis
   0.0082 (  4.9%)   0.0086 (  1.4%)   0.0168 (  2.2%)   0.0168 (  2.2%)  typecheck-decl
   0.0071 (  4.2%)   0.0070 (  1.2%)   0.0141 (  1.8%)   0.0141 (  1.8%)  IRGen
   0.0082 (  4.9%)   0.0021 (  0.4%)   0.0103 (  1.4%)   0.0104 (  1.4%)  typecheck-stmt
   0.0032 (  1.9%)   0.0071 (  1.2%)   0.0103 (  1.4%)   0.0103 (  1.3%)  import-clang-decl
   0.0011 (  0.7%)   0.0039 (  0.7%)   0.0050 (  0.7%)   0.0050 (  0.7%)  load-stdlib
   0.0037 (  2.2%)   0.0008 (  0.1%)   0.0046 (  0.6%)   0.0046 (  0.6%)  SILGen
   0.0039 (  2.3%)   0.0001 (  0.0%)   0.0040 (  0.5%)   0.0040 (  0.5%)  SIL optimization
   0.0028 (  1.7%)   0.0011 (  0.2%)   0.0039 (  0.5%)   0.0039 (  0.5%)  typecheck-expr
   0.0029 (  1.7%)   0.0006 (  0.1%)   0.0035 (  0.5%)   0.0035 (  0.5%)  SILGen-function
   0.0015 (  0.9%)   0.0004 (  0.1%)   0.0020 (  0.3%)   0.0020 (  0.3%)  precheck-target
   0.0006 (  0.3%)   0.0002 (  0.0%)   0.0008 (  0.1%)   0.0008 (  0.1%)  build-rewrite-system
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.1684 (100.0%)   0.5918 (100.0%)   0.7602 (100.0%)   0.7633 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.4016 seconds (0.4044 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.1003 (100.0%)   0.3013 (100.0%)   0.4016 (100.0%)   0.4044 (100.0%)  Building Target
   0.1003 (100.0%)   0.3013 (100.0%)   0.4016 (100.0%)   0.4044 (100.0%)  Total
SwiftDriverJobDiscovery normal arm64 Compiling NavigationContext.swift (in target 'Magellan' from project 'Magellan')
SwiftCompile normal x86_64 Compiling\ PresentationModal.swift /Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationModal.swift (in target 'Magellan' from project 'Magellan')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1749885640442466-swift-frontend-Magellan-PresentationModal.swift-x86_64_apple_ios18.4_macabi-o-Onone-2936880282.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.7468 seconds (0.7507 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0463 ( 28.2%)   0.2708 ( 46.5%)   0.3171 ( 42.5%)   0.3188 ( 42.5%)  parse-and-resolve-imports
   0.0441 ( 26.9%)   0.2680 ( 46.0%)   0.3122 ( 41.8%)   0.3139 ( 41.8%)  Import resolution
   0.0158 (  9.6%)   0.0086 (  1.5%)   0.0244 (  3.3%)   0.0245 (  3.3%)  perform-sema
   0.0157 (  9.6%)   0.0086 (  1.5%)   0.0243 (  3.3%)   0.0244 (  3.3%)  Type checking and Semantic analysis
   0.0092 (  5.6%)   0.0030 (  0.5%)   0.0122 (  1.6%)   0.0122 (  1.6%)  typecheck-expr
   0.0091 (  5.6%)   0.0029 (  0.5%)   0.0120 (  1.6%)   0.0120 (  1.6%)  typecheck-stmt
   0.0062 (  3.8%)   0.0055 (  0.9%)   0.0117 (  1.6%)   0.0117 (  1.6%)  typecheck-decl
   0.0058 (  3.5%)   0.0059 (  1.0%)   0.0116 (  1.6%)   0.0116 (  1.6%)  IRGen
   0.0041 (  2.5%)   0.0062 (  1.1%)   0.0103 (  1.4%)   0.0103 (  1.4%)  import-clang-decl
   0.0010 (  0.6%)   0.0026 (  0.4%)   0.0036 (  0.5%)   0.0038 (  0.5%)  load-stdlib
   0.0032 (  2.0%)   0.0001 (  0.0%)   0.0033 (  0.4%)   0.0033 (  0.4%)  SIL optimization
   0.0015 (  0.9%)   0.0004 (  0.1%)   0.0020 (  0.3%)   0.0020 (  0.3%)  SILGen
   0.0011 (  0.7%)   0.0003 (  0.1%)   0.0015 (  0.2%)   0.0015 (  0.2%)  SILGen-function
   0.0002 (  0.1%)   0.0000 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  precheck-target
   0.0001 (  0.1%)   0.0001 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  build-rewrite-system
   0.0001 (  0.1%)   0.0000 (  0.0%)   0.0002 (  0.0%)   0.0002 (  0.0%)  load-all-members
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.1638 (100.0%)   0.5830 (100.0%)   0.7468 (100.0%)   0.7507 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.3821 seconds (0.3842 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0871 (100.0%)   0.2950 (100.0%)   0.3821 (100.0%)   0.3842 (100.0%)  Building Target
   0.0871 (100.0%)   0.2950 (100.0%)   0.3821 (100.0%)   0.3842 (100.0%)  Total
SwiftCompile normal x86_64 /Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationModal.swift (in target 'Magellan' from project 'Magellan')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationModal.swift:19:31: warning: call to main actor-isolated initializer 'init()' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        self.init(useWrapper: UINavigationController(), presentation: presentation, transition: transition)
                              ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/objc/NSObject.h:66:1: note: calls to initializer 'init()' from outside of its actor context are implicitly asynchronous
- (instancetype)init
^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationModal.swift:36:30: warning: main actor-isolated property 'modalPresentationStyle' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
            stackController?.modalPresentationStyle = presentation
                             ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:282:54: note: mutation of this property is only permitted within the actor
@property(nonatomic,assign) UIModalPresentationStyle modalPresentationStyle API_AVAILABLE(ios(3.2));
                                                     ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationModal.swift:30:15: note: add '@MainActor' to make instance method 'show' part of global actor 'MainActor'
    open func show(_ navigationContext: NavigationContext) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationModal.swift:40:30: warning: main actor-isolated property 'modalTransitionStyle' can not be mutated from a nonisolated context; this is an error in the Swift 6 language mode
            stackController?.modalTransitionStyle = transition
                             ^
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks/UIKit.framework/Headers/UIViewController.h:267:52: note: mutation of this property is only permitted within the actor
@property(nonatomic,assign) UIModalTransitionStyle modalTransitionStyle API_AVAILABLE(ios(3.0));
                                                   ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationModal.swift:30:15: note: add '@MainActor' to make instance method 'show' part of global actor 'MainActor'
    open func show(_ navigationContext: NavigationContext) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationModal.swift:43:26: warning: call to main actor-isolated instance method 'pushViewController(_:animated:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        stackController?.pushViewController(destinationController, animated: false)
                         ^
UIKit.UINavigationController.pushViewController:2:22: note: calls to instance method 'pushViewController(_:animated:)' from outside of its actor context are implicitly asynchronous
@MainActor open func pushViewController(_ viewController: UIViewController, animated: Bool)}
                     ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationModal.swift:30:15: note: add '@MainActor' to make instance method 'show' part of global actor 'MainActor'
    open func show(_ navigationContext: NavigationContext) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationModal.swift:46:52: warning: call to main actor-isolated instance method 'present(_:animated:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            navigationContext.sourceViewController.present(stackController, animated: true, completion: nil)
                                                   ^
UIKit.UIViewController.present:3:24: note: calls to instance method 'present(_:animated:completion:)' from outside of its actor context are implicitly asynchronous
  @MainActor open func present(_ viewControllerToPresent: UIViewController, animated flag: Bool, completion: (() -> Void)? = nil)}
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationModal.swift:30:15: note: add '@MainActor' to make instance method 'show' part of global actor 'MainActor'
    open func show(_ navigationContext: NavigationContext) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationModal.swift:49:52: warning: call to main actor-isolated instance method 'present(_:animated:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
            navigationContext.sourceViewController.present(destinationController, animated: true, completion: nil)
                                                   ^
UIKit.UIViewController.present:3:24: note: calls to instance method 'present(_:animated:completion:)' from outside of its actor context are implicitly asynchronous
  @MainActor open func present(_ viewControllerToPresent: UIViewController, animated flag: Bool, completion: (() -> Void)? = nil)}
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationModal.swift:30:15: note: add '@MainActor' to make instance method 'show' part of global actor 'MainActor'
    open func show(_ navigationContext: NavigationContext) {
              ^
    @MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationModal.swift:54:38: warning: call to main actor-isolated instance method 'dismiss(animated:completion:)' in a synchronous nonisolated context; this is an error in the Swift 6 language mode
        context.sourceViewController.dismiss(animated: true, completion: nil)
                                     ^
UIKit.UIViewController.dismiss:3:24: note: calls to instance method 'dismiss(animated:completion:)' from outside of its actor context are implicitly asynchronous
  @MainActor open func dismiss(animated flag: Bool, completion: (() -> Void)? = nil)}
                       ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/Strategy/PresentationModal.swift:53:15: note: add '@MainActor' to make instance method 'dismiss' part of global actor 'MainActor'
    open func dismiss(_ context: NavigationContext) {
              ^
    @MainActor
SwiftDriverJobDiscovery normal arm64 Compiling PresentationPush.swift (in target 'Magellan' from project 'Magellan')
SwiftCompile normal arm64 Compiling\ PresentingContext.swift /Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/PresentingContext.swift (in target 'Magellan' from project 'Magellan')
Error opening -stats-output-dir file '/Users/admin/builder/spi-builder-workspace/.stats/stats-1749885640446192-swift-frontend-Magellan-PresentingContext.swift-arm64_apple_ios18.4_macabi-o-Onone-2265047267.json' for writing
===-------------------------------------------------------------------------===
                               Swift compilation
===-------------------------------------------------------------------------===
  Total Execution Time: 0.7636 seconds (0.7690 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0474 ( 27.7%)   0.2688 ( 45.4%)   0.3162 ( 41.4%)   0.3183 ( 41.4%)  parse-and-resolve-imports
   0.0456 ( 26.6%)   0.2669 ( 45.1%)   0.3125 ( 40.9%)   0.3146 ( 40.9%)  Import resolution
   0.0158 (  9.2%)   0.0092 (  1.6%)   0.0249 (  3.3%)   0.0251 (  3.3%)  perform-sema
   0.0157 (  9.2%)   0.0092 (  1.5%)   0.0249 (  3.3%)   0.0251 (  3.3%)  Type checking and Semantic analysis
   0.0134 (  7.8%)   0.0086 (  1.4%)   0.0220 (  2.9%)   0.0222 (  2.9%)  typecheck-decl
   0.0074 (  4.3%)   0.0078 (  1.3%)   0.0152 (  2.0%)   0.0152 (  2.0%)  IRGen
   0.0056 (  3.2%)   0.0050 (  0.9%)   0.0106 (  1.4%)   0.0108 (  1.4%)  typecheck-expr
   0.0055 (  3.2%)   0.0049 (  0.8%)   0.0104 (  1.4%)   0.0105 (  1.4%)  typecheck-stmt
   0.0035 (  2.0%)   0.0065 (  1.1%)   0.0100 (  1.3%)   0.0102 (  1.3%)  import-clang-decl
   0.0038 (  2.2%)   0.0014 (  0.2%)   0.0052 (  0.7%)   0.0052 (  0.7%)  build-rewrite-system
   0.0010 (  0.6%)   0.0029 (  0.5%)   0.0039 (  0.5%)   0.0040 (  0.5%)  load-stdlib
   0.0030 (  1.8%)   0.0001 (  0.0%)   0.0031 (  0.4%)   0.0031 (  0.4%)  SIL optimization
   0.0023 (  1.4%)   0.0006 (  0.1%)   0.0029 (  0.4%)   0.0029 (  0.4%)  SILGen
   0.0014 (  0.8%)   0.0003 (  0.1%)   0.0017 (  0.2%)   0.0017 (  0.2%)  SILGen-function
   0.0001 (  0.1%)   0.0000 (  0.0%)   0.0001 (  0.0%)   0.0001 (  0.0%)  precheck-target
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  module-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, pre-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  perform-whole-module-type-checking
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  SIL verification, post-optimization
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  source-file-populate-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  populate-source-file-class-member-cache
   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)   0.0000 (  0.0%)  AST verification
   0.1714 (100.0%)   0.5922 (100.0%)   0.7636 (100.0%)   0.7690 (100.0%)  Total
===-------------------------------------------------------------------------===
                                Running Program
===-------------------------------------------------------------------------===
  Total Execution Time: 0.3858 seconds (0.3883 wall clock)
   ---User Time---   --System Time--   --User+System--   ---Wall Time---  --- Name ---
   0.0902 (100.0%)   0.2957 (100.0%)   0.3858 (100.0%)   0.3883 (100.0%)  Building Target
   0.0902 (100.0%)   0.2957 (100.0%)   0.3858 (100.0%)   0.3883 (100.0%)  Total
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/PresentingContext.swift (in target 'Magellan' from project 'Magellan')
    cd /Users/admin/builder/spi-builder-workspace

/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/PresentingContext.swift:37:53: warning: main actor-isolated property 'navigation' can not be referenced from a nonisolated context; this is an error in the Swift 6 language mode
        guard let navigation = sourceViewController.navigation else {
                                                    ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/UIKit/UIViewController+Nabigeta.swift:32:35: note: property declared here
    public internal(set) weak var navigation: Navigation? {
                                  ^
/Users/admin/builder/spi-builder-workspace/Sources/Magellan/Presentation/PresentingContext.swift:34:15: note: add '@MainActor' to make instance method 'terminate' part of global actor 'MainActor'
    open func terminate(_ status: TerminateStatus = .completed) {
              ^
    @MainActor
SwiftDriverJobDiscovery normal x86_64 Compiling Navigation.swift (in target 'Magellan' from project 'Magellan')
SwiftDriverJobDiscovery normal x86_64 Compiling Route.swift (in target 'Magellan' from project 'Magellan')
SwiftDriverJobDiscovery normal x86_64 Compiling PresentationStrategy.swift (in target 'Magellan' from project 'Magellan')
SwiftDriverJobDiscovery normal x86_64 Compiling PresentationSegue.swift (in target 'Magellan' from project 'Magellan')
SwiftDriverJobDiscovery normal x86_64 Compiling PresentationPopover.swift (in target 'Magellan' from project 'Magellan')
SwiftDriverJobDiscovery normal x86_64 Compiling PresentingContext.swift (in target 'Magellan' from project 'Magellan')
SwiftDriverJobDiscovery normal x86_64 Compiling PresentationModal.swift (in target 'Magellan' from project 'Magellan')
SwiftDriverJobDiscovery normal arm64 Compiling PresentingContext.swift (in target 'Magellan' from project 'Magellan')
SwiftDriverJobDiscovery normal x86_64 Compiling PresentationPush.swift (in target 'Magellan' from project 'Magellan')
SwiftDriverJobDiscovery normal arm64 Compiling UIViewController+Nabigeta.swift (in target 'Magellan' from project 'Magellan')
SwiftDriverJobDiscovery normal x86_64 Compiling UIViewController+Nabigeta.swift (in target 'Magellan' from project 'Magellan')
SwiftDriver\ Compilation Magellan normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Magellan' from project 'Magellan')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Magellan -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/arm64/Magellan.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 -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target arm64-apple-ios18.4-macabi -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4.2 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -Fsystem /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/arm64/Magellan-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/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/arm64/Magellan.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/Magellan.build/Debug-maccatalyst/Magellan.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/arm64/Magellan_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/include -Xcc -isystem -Xcc /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/usr/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/arm64/Magellan-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation Magellan normal x86_64 com.apple.xcode.tools.swift.compiler (in target 'Magellan' from project 'Magellan')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Magellan -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/x86_64/Magellan.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 -enable-bare-slash-regex -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -target x86_64-apple-ios18.4-macabi -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 4.2 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -Fsystem /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.4-24E241-8287b8f5db97e746a1562fbca0c9d29b.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/x86_64/Magellan-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/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/x86_64/Magellan.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/Magellan.build/Debug-maccatalyst/Magellan.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/x86_64/Magellan_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/include -Xcc -isystem -Xcc /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/usr/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/DerivedSources-normal/x86_64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/DerivedSources/x86_64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/DerivedSources -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/x86_64/Magellan-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/arm64/Binary/Magellan normal arm64 (in target 'Magellan' from project 'Magellan')
    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-ios18.4-macabi -dynamiclib -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-maccatalyst -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/usr/lib -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/maccatalyst -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/usr/lib -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/maccatalyst -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-maccatalyst -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst -F/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/arm64/Magellan.LinkFileList -install_name @rpath/Magellan.framework/Versions/A/Magellan -Xlinker -rpath -Xlinker /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/arm64/Magellan_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/arm64/Magellan_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/System/iOSSupport/usr/lib/swift -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/arm64/Magellan.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/arm64/Binary/Magellan
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/x86_64/Binary/Magellan normal x86_64 (in target 'Magellan' from project 'Magellan')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target x86_64-apple-ios18.4-macabi -dynamiclib -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-maccatalyst -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/usr/lib -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/maccatalyst -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/usr/lib -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/maccatalyst -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-maccatalyst -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst -F/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/x86_64/Magellan.LinkFileList -install_name @rpath/Magellan.framework/Versions/A/Magellan -Xlinker -rpath -Xlinker /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/x86_64/Magellan_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/x86_64/Magellan_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/System/iOSSupport/usr/lib/swift -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/x86_64/Magellan.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/x86_64/Binary/Magellan
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/Magellan.framework/Versions/A/Magellan normal arm64\ x86_64 (in target 'Magellan' from project 'Magellan')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/arm64/Binary/Magellan /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/x86_64/Binary/Magellan -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/Magellan.framework/Versions/A/Magellan
ExtractAppIntentsMetadata (in target 'Magellan' from project 'Magellan')
    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 Magellan --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk --xcode-version 16E140 --platform-family macOS --deployment-target 15.4 --bundle-identifier Magellan --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/Magellan.framework/Versions/A/Resources --target-triple arm64-apple-ios18.4-macabi --target-triple x86_64-apple-ios18.4-macabi --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/Magellan.framework/Versions/A/Magellan --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/arm64/Magellan_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/x86_64/Magellan_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/x86_64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/arm64/Magellan.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/x86_64/Magellan.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Magellan.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Magellan.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/arm64/Magellan.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Magellan.build/Debug-maccatalyst/Magellan.build/Objects-normal/x86_64/Magellan.SwiftConstValuesFileList --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-06-14 00:20:41.132 appintentsmetadataprocessor[719:4241] Starting appintentsmetadataprocessor export
2025-06-14 00:20:41.136 appintentsmetadataprocessor[719:4241] warning: Metadata extraction skipped. No AppIntents.framework dependency found.
GenerateTAPI /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-maccatalyst/Magellan.framework/Versions/A/Magellan.tbd (in target 'Magellan' from project 'Magellan')
    cd /Users/admin/builder/spi-builder-workspace
    /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/tapi stubify -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst -F/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/System/Library/Frameworks -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/usr/lib -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/maccatalyst -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/iOSSupport/usr/lib -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/maccatalyst /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/Magellan.framework/Versions/A/Magellan -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-maccatalyst/Magellan.framework/Versions/A/Magellan.tbd
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/Magellan.framework (in target 'Magellan' from project 'Magellan')
    cd /Users/admin/builder/spi-builder-workspace
    builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/Magellan.framework
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/Magellan.framework (in target 'Magellan' from project 'Magellan')
    cd /Users/admin/builder/spi-builder-workspace
    /usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-maccatalyst/Magellan.framework
SymLink /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-maccatalyst/Magellan.framework/Magellan.tbd /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-maccatalyst/Magellan.framework/Versions/A/Magellan.tbd (in target 'Magellan' from project 'Magellan')
    cd /Users/admin/builder/spi-builder-workspace
    /bin/ln -sfh /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-maccatalyst/Magellan.framework/Versions/A/Magellan.tbd /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-maccatalyst/Magellan.framework/Magellan.tbd
** BUILD SUCCEEDED **
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:25db2f9f3c00b5bd8fa9631a3d741414cdc06b4c, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:25db2f9f3c00b5bd8fa9631a3d741414cdc06b4c, name:My Mac }
Build complete.
{
  "dependencies" : [
    {
      "identity" : "quick",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.3.2",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/Quick/quick"
    }
  ],
  "manifest_display_name" : "Magellan",
  "name" : "Magellan",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Magellan",
      "targets" : [
        "Magellan"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "Magellan",
      "module_type" : "SwiftTarget",
      "name" : "Magellan",
      "path" : "Sources/Magellan",
      "product_memberships" : [
        "Magellan"
      ],
      "sources" : [
        "Navigation/Navigation.swift",
        "Navigation/NavigationContext.swift",
        "Presentation/PresentationStrategy.swift",
        "Presentation/PresentingContext.swift",
        "Presentation/Strategy/PresentationModal.swift",
        "Presentation/Strategy/PresentationPopover.swift",
        "Presentation/Strategy/PresentationPush.swift",
        "Presentation/Strategy/PresentationSegue.swift",
        "Route/Route.swift",
        "UIKit/UIViewController+Nabigeta.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.2"
}
warning: 'spi-builder-workspace': Source files for target MagellanTests should be located under 'Tests/MagellanTests', or a custom sources path can be set with the 'path' property in Package.swift
Done.