Build Information
Failed to build NavigatorUI, reference main (c33b99
), with Swift 6.0 for macOS (SPM) on 12 Sep 2025 00:12:12 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64
Build Log
========================================
RunAll
========================================
Builder version: 4.67.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/hmlongco/Navigator.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/hmlongco/Navigator
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at c33b99f Update README
Cloned https://github.com/hmlongco/Navigator.git
Revision (git rev-parse @):
c33b99f54b114ed84bed6736b573eb008c166006
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/hmlongco/Navigator.git at main
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.0
Building package at path: $PWD
https://github.com/hmlongco/Navigator.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64
[1/1] Compiling plugin Swift-DocC
[2/2] Compiling plugin Swift-DocC Preview
Building for debugging...
[2/5] Copying PrivacyInfo.xcprivacy
[3/5] Write sources
[4/5] Write swift-version-5BDAB9E9C0126B9D.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[6/30] Emitting module NavigatorUI
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationAction.swift:24:1: error: 'nonisolated' modifier cannot be applied to this declaration
22 | }
23 |
24 | nonisolated public struct NavigationAction: Hashable {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
25 |
26 | public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationCheckpoint.swift:47:1: error: 'nonisolated' modifier cannot be applied to this declaration
45 | ///
46 | /// Defining with `{ checkpoint() }` ensures a unique name for each variable instance.
47 | nonisolated public struct NavigationCheckpoint<T>: Equatable, Hashable, Sendable {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
48 |
49 | public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationConfiguration.swift:29:1: error: 'nonisolated' modifier cannot be applied to this declaration
27 | /// }
28 | /// ```
29 | nonisolated public struct NavigationConfiguration {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
30 |
31 | /// Determines whether or not users should see animation steps when deep linking.
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:37:1: error: 'nonisolated' modifier cannot be applied to this declaration
35 | }
36 |
37 | nonisolated public struct NavigationEvent: CustomStringConvertible {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
38 |
39 | let verbosity: Verbosity
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:63:5: error: 'nonisolated' modifier cannot be applied to this declaration
61 | extension NavigationEvent {
62 |
63 | nonisolated public enum Event: CustomStringConvertible {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
64 |
65 | case lifecycle(LifecycleEvent)
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:93:9: error: 'nonisolated' modifier cannot be applied to this declaration
91 | }
92 |
93 | nonisolated public enum LifecycleEvent {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
94 | case configured
95 | case intialized
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:101:9: error: 'nonisolated' modifier cannot be applied to this declaration
99 | }
100 |
101 | nonisolated public enum NavigationEvent {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
102 | case presenting(any NavigationDestination)
103 | case pushing(any Hashable)
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:108:9: error: 'nonisolated' modifier cannot be applied to this declaration
106 | }
107 |
108 | nonisolated public enum SendEvent {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
109 | case performing(any Hashable)
110 | case sending(any Hashable)
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:114:9: error: 'nonisolated' modifier cannot be applied to this declaration
112 | }
113 |
114 | nonisolated public enum CheckpointEvent {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
115 | case adding(String)
116 | case removing(String)
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationMethod.swift:35:1: error: 'nonisolated' modifier cannot be applied to this declaration
33 | /// > Important: When using `NavigationLink(value:label:)` the method will be ignored and SwiftUI will push
34 | /// the value onto the navigation stack as it would normally.
35 | nonisolated public enum NavigationMethod: Int, Codable {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
36 | /// Pushes the destination onto the navigation stack path.
37 | case push
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationRoutes.swift:10:1: error: 'nonisolated' modifier cannot be applied to this declaration
8 | import SwiftUI
9 |
10 | nonisolated public protocol NavigationRoutes: Hashable {}
| `- error: 'nonisolated' modifier cannot be applied to this declaration
11 |
12 | extension Navigator {
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationSceneStorage.swift:11:1: error: 'nonisolated' modifier cannot be applied to this declaration
9 |
10 | /// Provides state restoration storage for named ManagedNavigationControllers.
11 | nonisolated internal struct NavigationSceneStorage: Codable {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
12 |
13 | let name: String?
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationState.swift:12:1: error: 'nonisolated' modifier cannot be applied to this declaration
10 |
11 | /// Persistent storage for Navigators.
12 | nonisolated public class NavigationState: ObservableObject, @unchecked Sendable {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
13 |
14 | public enum Owner: Int {
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/Navigator.swift:31:1: error: 'nonisolated' modifier cannot be applied to this declaration
29 | /// @Environmnt(\.navigator) var navigator
30 | /// ```
31 | nonisolated public struct Navigator: @unchecked Sendable {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
32 |
33 | internal let environmentID: Int
[7/32] Compiling NavigatorUI ManagedPresentationView.swift
[8/32] Compiling NavigatorUI resource_bundle_accessor.swift
[9/32] Compiling NavigatorUI NavigationMethod.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationMethod.swift:35:1: error: 'nonisolated' modifier cannot be applied to this declaration
33 | /// > Important: When using `NavigationLink(value:label:)` the method will be ignored and SwiftUI will push
34 | /// the value onto the navigation stack as it would normally.
35 | nonisolated public enum NavigationMethod: Int, Codable {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
36 | /// Pushes the destination onto the navigation stack path.
37 | case push
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationOperations.swift:241:49: error: use of protocol 'NavigationDestination' as a type must be written 'any NavigationDestination'
239 | internal func checkKnown(destination: Any) {
240 | #if DEBUG
241 | guard let destination = destination as? NavigationDestination, known(destination: destination) == false else {
| `- error: use of protocol 'NavigationDestination' as a type must be written 'any NavigationDestination'
242 | return
243 | }
[10/32] Compiling NavigatorUI NavigationOperations.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationMethod.swift:35:1: error: 'nonisolated' modifier cannot be applied to this declaration
33 | /// > Important: When using `NavigationLink(value:label:)` the method will be ignored and SwiftUI will push
34 | /// the value onto the navigation stack as it would normally.
35 | nonisolated public enum NavigationMethod: Int, Codable {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
36 | /// Pushes the destination onto the navigation stack path.
37 | case push
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationOperations.swift:241:49: error: use of protocol 'NavigationDestination' as a type must be written 'any NavigationDestination'
239 | internal func checkKnown(destination: Any) {
240 | #if DEBUG
241 | guard let destination = destination as? NavigationDestination, known(destination: destination) == false else {
| `- error: use of protocol 'NavigationDestination' as a type must be written 'any NavigationDestination'
242 | return
243 | }
[11/32] Compiling NavigatorUI NavigationPresentation.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationMethod.swift:35:1: error: 'nonisolated' modifier cannot be applied to this declaration
33 | /// > Important: When using `NavigationLink(value:label:)` the method will be ignored and SwiftUI will push
34 | /// the value onto the navigation stack as it would normally.
35 | nonisolated public enum NavigationMethod: Int, Codable {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
36 | /// Pushes the destination onto the navigation stack path.
37 | case push
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationOperations.swift:241:49: error: use of protocol 'NavigationDestination' as a type must be written 'any NavigationDestination'
239 | internal func checkKnown(destination: Any) {
240 | #if DEBUG
241 | guard let destination = destination as? NavigationDestination, known(destination: destination) == false else {
| `- error: use of protocol 'NavigationDestination' as a type must be written 'any NavigationDestination'
242 | return
243 | }
[12/32] Compiling NavigatorUI NavigationRoutes.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationRoutes.swift:10:1: error: 'nonisolated' modifier cannot be applied to this declaration
8 | import SwiftUI
9 |
10 | nonisolated public protocol NavigationRoutes: Hashable {}
| `- error: 'nonisolated' modifier cannot be applied to this declaration
11 |
12 | extension Navigator {
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationSceneStorage.swift:11:1: error: 'nonisolated' modifier cannot be applied to this declaration
9 |
10 | /// Provides state restoration storage for named ManagedNavigationControllers.
11 | nonisolated internal struct NavigationSceneStorage: Codable {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
12 |
13 | let name: String?
[13/32] Compiling NavigatorUI NavigationSceneStorage.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationRoutes.swift:10:1: error: 'nonisolated' modifier cannot be applied to this declaration
8 | import SwiftUI
9 |
10 | nonisolated public protocol NavigationRoutes: Hashable {}
| `- error: 'nonisolated' modifier cannot be applied to this declaration
11 |
12 | extension Navigator {
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationSceneStorage.swift:11:1: error: 'nonisolated' modifier cannot be applied to this declaration
9 |
10 | /// Provides state restoration storage for named ManagedNavigationControllers.
11 | nonisolated internal struct NavigationSceneStorage: Codable {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
12 |
13 | let name: String?
[14/32] Compiling NavigatorUI NavigationSend.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationRoutes.swift:10:1: error: 'nonisolated' modifier cannot be applied to this declaration
8 | import SwiftUI
9 |
10 | nonisolated public protocol NavigationRoutes: Hashable {}
| `- error: 'nonisolated' modifier cannot be applied to this declaration
11 |
12 | extension Navigator {
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationSceneStorage.swift:11:1: error: 'nonisolated' modifier cannot be applied to this declaration
9 |
10 | /// Provides state restoration storage for named ManagedNavigationControllers.
11 | nonisolated internal struct NavigationSceneStorage: Codable {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
12 |
13 | let name: String?
[15/32] Compiling NavigatorUI NavigationViewRouting.swift
[16/32] Compiling NavigatorUI ManagedNavigationStack.swift
[17/32] Compiling NavigatorUI Binding+Extension.swift
[18/32] Compiling NavigatorUI Callback.swift
[19/32] Compiling NavigatorUI NavigationURLHandler.swift
[20/32] Compiling NavigatorUI NavigationViewProviding.swift
[21/32] Compiling NavigatorUI NavigationConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationConfiguration.swift:29:1: error: 'nonisolated' modifier cannot be applied to this declaration
27 | /// }
28 | /// ```
29 | nonisolated public struct NavigationConfiguration {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
30 |
31 | /// Determines whether or not users should see animation steps when deep linking.
[22/32] Compiling NavigatorUI NavigationDestination.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationConfiguration.swift:29:1: error: 'nonisolated' modifier cannot be applied to this declaration
27 | /// }
28 | /// ```
29 | nonisolated public struct NavigationConfiguration {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
30 |
31 | /// Determines whether or not users should see animation steps when deep linking.
[23/32] Compiling NavigatorUI NavigationDismiss.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationConfiguration.swift:29:1: error: 'nonisolated' modifier cannot be applied to this declaration
27 | /// }
28 | /// ```
29 | nonisolated public struct NavigationConfiguration {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
30 |
31 | /// Determines whether or not users should see animation steps when deep linking.
[24/32] Compiling NavigatorUI AnyNavigationDestination.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationAction.swift:24:1: error: 'nonisolated' modifier cannot be applied to this declaration
22 | }
23 |
24 | nonisolated public struct NavigationAction: Hashable {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
25 |
26 | public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationCheckpoint.swift:47:1: error: 'nonisolated' modifier cannot be applied to this declaration
45 | ///
46 | /// Defining with `{ checkpoint() }` ensures a unique name for each variable instance.
47 | nonisolated public struct NavigationCheckpoint<T>: Equatable, Hashable, Sendable {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
48 |
49 | public let name: String
[25/32] Compiling NavigatorUI NavigationAction.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationAction.swift:24:1: error: 'nonisolated' modifier cannot be applied to this declaration
22 | }
23 |
24 | nonisolated public struct NavigationAction: Hashable {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
25 |
26 | public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationCheckpoint.swift:47:1: error: 'nonisolated' modifier cannot be applied to this declaration
45 | ///
46 | /// Defining with `{ checkpoint() }` ensures a unique name for each variable instance.
47 | nonisolated public struct NavigationCheckpoint<T>: Equatable, Hashable, Sendable {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
48 |
49 | public let name: String
[26/32] Compiling NavigatorUI NavigationCheckpoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationAction.swift:24:1: error: 'nonisolated' modifier cannot be applied to this declaration
22 | }
23 |
24 | nonisolated public struct NavigationAction: Hashable {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
25 |
26 | public let name: String
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationCheckpoint.swift:47:1: error: 'nonisolated' modifier cannot be applied to this declaration
45 | ///
46 | /// Defining with `{ checkpoint() }` ensures a unique name for each variable instance.
47 | nonisolated public struct NavigationCheckpoint<T>: Equatable, Hashable, Sendable {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
48 |
49 | public let name: String
[27/32] Compiling NavigatorUI NavigationState.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationState.swift:12:1: error: 'nonisolated' modifier cannot be applied to this declaration
10 |
11 | /// Persistent storage for Navigators.
12 | nonisolated public class NavigationState: ObservableObject, @unchecked Sendable {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
13 |
14 | public enum Owner: Int {
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/Navigator.swift:31:1: error: 'nonisolated' modifier cannot be applied to this declaration
29 | /// @Environmnt(\.navigator) var navigator
30 | /// ```
31 | nonisolated public struct Navigator: @unchecked Sendable {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
32 |
33 | internal let environmentID: Int
[28/32] Compiling NavigatorUI Navigator.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationState.swift:12:1: error: 'nonisolated' modifier cannot be applied to this declaration
10 |
11 | /// Persistent storage for Navigators.
12 | nonisolated public class NavigationState: ObservableObject, @unchecked Sendable {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
13 |
14 | public enum Owner: Int {
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/Navigator.swift:31:1: error: 'nonisolated' modifier cannot be applied to this declaration
29 | /// @Environmnt(\.navigator) var navigator
30 | /// ```
31 | nonisolated public struct Navigator: @unchecked Sendable {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
32 |
33 | internal let environmentID: Int
[29/32] Compiling NavigatorUI NavigationLink+Navigator.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationState.swift:12:1: error: 'nonisolated' modifier cannot be applied to this declaration
10 |
11 | /// Persistent storage for Navigators.
12 | nonisolated public class NavigationState: ObservableObject, @unchecked Sendable {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
13 |
14 | public enum Owner: Int {
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/Navigator.swift:31:1: error: 'nonisolated' modifier cannot be applied to this declaration
29 | /// @Environmnt(\.navigator) var navigator
30 | /// ```
31 | nonisolated public struct Navigator: @unchecked Sendable {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
32 |
33 | internal let environmentID: Int
[30/32] Compiling NavigatorUI NavigationEventLogging.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:37:1: error: 'nonisolated' modifier cannot be applied to this declaration
35 | }
36 |
37 | nonisolated public struct NavigationEvent: CustomStringConvertible {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
38 |
39 | let verbosity: Verbosity
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:63:5: error: 'nonisolated' modifier cannot be applied to this declaration
61 | extension NavigationEvent {
62 |
63 | nonisolated public enum Event: CustomStringConvertible {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
64 |
65 | case lifecycle(LifecycleEvent)
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:93:9: error: 'nonisolated' modifier cannot be applied to this declaration
91 | }
92 |
93 | nonisolated public enum LifecycleEvent {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
94 | case configured
95 | case intialized
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:101:9: error: 'nonisolated' modifier cannot be applied to this declaration
99 | }
100 |
101 | nonisolated public enum NavigationEvent {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
102 | case presenting(any NavigationDestination)
103 | case pushing(any Hashable)
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:108:9: error: 'nonisolated' modifier cannot be applied to this declaration
106 | }
107 |
108 | nonisolated public enum SendEvent {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
109 | case performing(any Hashable)
110 | case sending(any Hashable)
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:114:9: error: 'nonisolated' modifier cannot be applied to this declaration
112 | }
113 |
114 | nonisolated public enum CheckpointEvent {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
115 | case adding(String)
116 | case removing(String)
[31/32] Compiling NavigatorUI NavigationFind.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:37:1: error: 'nonisolated' modifier cannot be applied to this declaration
35 | }
36 |
37 | nonisolated public struct NavigationEvent: CustomStringConvertible {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
38 |
39 | let verbosity: Verbosity
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:63:5: error: 'nonisolated' modifier cannot be applied to this declaration
61 | extension NavigationEvent {
62 |
63 | nonisolated public enum Event: CustomStringConvertible {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
64 |
65 | case lifecycle(LifecycleEvent)
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:93:9: error: 'nonisolated' modifier cannot be applied to this declaration
91 | }
92 |
93 | nonisolated public enum LifecycleEvent {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
94 | case configured
95 | case intialized
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:101:9: error: 'nonisolated' modifier cannot be applied to this declaration
99 | }
100 |
101 | nonisolated public enum NavigationEvent {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
102 | case presenting(any NavigationDestination)
103 | case pushing(any Hashable)
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:108:9: error: 'nonisolated' modifier cannot be applied to this declaration
106 | }
107 |
108 | nonisolated public enum SendEvent {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
109 | case performing(any Hashable)
110 | case sending(any Hashable)
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:114:9: error: 'nonisolated' modifier cannot be applied to this declaration
112 | }
113 |
114 | nonisolated public enum CheckpointEvent {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
115 | case adding(String)
116 | case removing(String)
[32/32] Compiling NavigatorUI NavigationLocked.swift
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:37:1: error: 'nonisolated' modifier cannot be applied to this declaration
35 | }
36 |
37 | nonisolated public struct NavigationEvent: CustomStringConvertible {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
38 |
39 | let verbosity: Verbosity
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:63:5: error: 'nonisolated' modifier cannot be applied to this declaration
61 | extension NavigationEvent {
62 |
63 | nonisolated public enum Event: CustomStringConvertible {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
64 |
65 | case lifecycle(LifecycleEvent)
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:93:9: error: 'nonisolated' modifier cannot be applied to this declaration
91 | }
92 |
93 | nonisolated public enum LifecycleEvent {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
94 | case configured
95 | case intialized
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:101:9: error: 'nonisolated' modifier cannot be applied to this declaration
99 | }
100 |
101 | nonisolated public enum NavigationEvent {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
102 | case presenting(any NavigationDestination)
103 | case pushing(any Hashable)
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:108:9: error: 'nonisolated' modifier cannot be applied to this declaration
106 | }
107 |
108 | nonisolated public enum SendEvent {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
109 | case performing(any Hashable)
110 | case sending(any Hashable)
/Users/admin/builder/spi-builder-workspace/Sources/NavigatorUI/NavigatorUI/Core/NavigationEventLogging.swift:114:9: error: 'nonisolated' modifier cannot be applied to this declaration
112 | }
113 |
114 | nonisolated public enum CheckpointEvent {
| `- error: 'nonisolated' modifier cannot be applied to this declaration
115 | case adding(String)
116 | case removing(String)
Fetching https://github.com/apple/swift-docc-plugin
[1/2094] Fetching swift-docc-plugin
Fetched https://github.com/apple/swift-docc-plugin from cache (1.13s)
Computing version for https://github.com/apple/swift-docc-plugin
Computed https://github.com/apple/swift-docc-plugin at 1.4.5 (3.33s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3509] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.08s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.66s)
Creating working copy for https://github.com/apple/swift-docc-plugin
Working copy of https://github.com/apple/swift-docc-plugin resolved at 1.4.5
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
BUILD FAILURE 6.0 macosSpm