Build Information
Successful build of SystemKit, reference main (3879b2
), with Swift 6.1 for macOS (SPM) on 29 Apr 2025 06:41:20 UTC.
Swift 6 data race errors: 24
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Build Log
30 |
31 | // MARK: - Object Properties
32 | public static var label: String = "com.SystemKit.SKCrashReporter"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | public static var identifier: String = "4552D8B1-1522-4EB0-B02F-95DFC9598169"
34 |
/Users/admin/builder/spi-builder-workspace/Sources/SKCrashReporter.swift:33:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | // MARK: - Object Properties
32 | public static var label: String = "com.SystemKit.SKCrashReporter"
33 | public static var identifier: String = "4552D8B1-1522-4EB0-B02F-95DFC9598169"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | public var crashReporter: Optional<PLCrashReporter> = nil
/Users/admin/builder/spi-builder-workspace/Sources/SKFileLock.swift:43:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
41 |
42 | // MARK: - Object Properties
43 | public static var label = "com.SystemKit.SKFileLock"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 | public static var identifier = "7777529A-98A3-4E43-A3AA-AAFBE437BC3F"
45 |
/Users/admin/builder/spi-builder-workspace/Sources/SKFileLock.swift:44:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
42 | // MARK: - Object Properties
43 | public static var label = "com.SystemKit.SKFileLock"
44 | public static var identifier = "7777529A-98A3-4E43-A3AA-AAFBE437BC3F"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | private let filePath: String
/Users/admin/builder/spi-builder-workspace/Sources/SKFinderExtension.swift:34:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKFinderExtension' may have shared mutable state; this is an error in the Swift 6 language mode
29 | - Authors: `ChangYeop-Yang`
30 | */
31 | public class SKFinderExtension: NSObject, SKClass {
| `- note: class 'SKFinderExtension' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Object Properties
34 | public static let shared: SKFinderExtension = SKFinderExtension()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKFinderExtension' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | public static let label: String = "com.SystemKit.SKFinderExtension"
36 | public static let identifier: String = "18EF2C59-D9A8-4908-8898-1E64C6E116BF"
/Users/admin/builder/spi-builder-workspace/Sources/SKSignal.swift:40:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 |
39 | // MARK: - Object Properties
40 | public static var label: String = "com.SystemKit.SKSignal"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | public static var identifier: String = "45F971FC-B05F-4CF5-9927-AD793F461718"
42 |
/Users/admin/builder/spi-builder-workspace/Sources/SKSignal.swift:41:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
39 | // MARK: - Object Properties
40 | public static var label: String = "com.SystemKit.SKSignal"
41 | public static var identifier: String = "45F971FC-B05F-4CF5-9927-AD793F461718"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | private let result: SKSignalResult
/Users/admin/builder/spi-builder-workspace/Sources/SKSignal.swift:33:14: warning: class 'SKSignal' must restate inherited '@unchecked Sendable' conformance
31 | - Authors: `ChangYeop-Yang`
32 | */
33 | public class SKSignal: SKAsyncOperation {
| `- warning: class 'SKSignal' must restate inherited '@unchecked Sendable' conformance
34 |
35 | // MARK: - Typealias
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystem.swift:31:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKSystem' may have shared mutable state; this is an error in the Swift 6 language mode
26 | import SystemConfiguration
27 |
28 | public class SKSystem: NSObject, SKClass {
| `- note: class 'SKSystem' does not conform to the 'Sendable' protocol
29 |
30 | // MARK: - Object Properties
31 | public static let shared: SKSystem = SKSystem()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKSystem' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | public static let label: String = "com.SystemKit.SKSystem"
33 | public static let identifier: String = "1735CFB1-19CC-4581-8CB7-F2DC3E16C678"
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemProcessResource.swift:31:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKSystemProcessResource' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import Foundation
25 |
26 | public class SKSystemProcessResource: SKClass {
| `- note: class 'SKSystemProcessResource' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Object Properties
29 | public static let label: String = "com.SystemKit.SKSystemResource"
30 | public static let identifier: String = "D6217410-E762-478B-A97F-D5E8EC05D0CA"
31 | public static let shared: SKSystemProcessResource = SKSystemProcessResource()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKSystemProcessResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 | // MARK: - Initalize
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemResource.swift:32:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKSystemResource' may have shared mutable state; this is an error in the Swift 6 language mode
25 | import Foundation
26 |
27 | public class SKSystemResource: SKClass {
| `- note: class 'SKSystemResource' does not conform to the 'Sendable' protocol
28 |
29 | // MARK: - Object Properties
30 | public static let label: String = "com.SystemKit.SKSystemResource"
31 | public static let identifier: String = "0DEE36A9-02C6-4CEE-9FA7-A8CB6A4093A6"
32 | public static let shared: SKSystemResource = SKSystemResource()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKSystemResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 | public var previousSystemResource: host_cpu_load_info = host_cpu_load_info()
[86/130] Compiling SystemKit SKData+Extension.swift
/Users/admin/builder/spi-builder-workspace/Sources/Communication/SKMessagePort.swift:29:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
27 |
28 | // MARK: - Object Properties
29 | public static var label: String = "com.SystemKit.SKMessagePort"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | public static var identifier: String = "368027F0-C77F-4F81-B352-F92B7B0370DB"
31 |
/Users/admin/builder/spi-builder-workspace/Sources/Communication/SKMessagePort.swift:30:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | // MARK: - Object Properties
29 | public static var label: String = "com.SystemKit.SKMessagePort"
30 | public static var identifier: String = "368027F0-C77F-4F81-B352-F92B7B0370DB"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | private var portName: CFString
[87/130] Compiling SystemKit SKDouble+Extension.swift
/Users/admin/builder/spi-builder-workspace/Sources/Communication/SKMessagePort.swift:29:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
27 |
28 | // MARK: - Object Properties
29 | public static var label: String = "com.SystemKit.SKMessagePort"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | public static var identifier: String = "368027F0-C77F-4F81-B352-F92B7B0370DB"
31 |
/Users/admin/builder/spi-builder-workspace/Sources/Communication/SKMessagePort.swift:30:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | // MARK: - Object Properties
29 | public static var label: String = "com.SystemKit.SKMessagePort"
30 | public static var identifier: String = "368027F0-C77F-4F81-B352-F92B7B0370DB"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | private var portName: CFString
[88/130] Compiling SystemKit SKString+Extension.swift
/Users/admin/builder/spi-builder-workspace/Sources/Communication/SKMessagePort.swift:29:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
27 |
28 | // MARK: - Object Properties
29 | public static var label: String = "com.SystemKit.SKMessagePort"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | public static var identifier: String = "368027F0-C77F-4F81-B352-F92B7B0370DB"
31 |
/Users/admin/builder/spi-builder-workspace/Sources/Communication/SKMessagePort.swift:30:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | // MARK: - Object Properties
29 | public static var label: String = "com.SystemKit.SKMessagePort"
30 | public static var identifier: String = "368027F0-C77F-4F81-B352-F92B7B0370DB"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | private var portName: CFString
[89/130] Compiling SystemKit SKMessagePort+Define.swift
/Users/admin/builder/spi-builder-workspace/Sources/Communication/SKMessagePort.swift:29:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
27 |
28 | // MARK: - Object Properties
29 | public static var label: String = "com.SystemKit.SKMessagePort"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | public static var identifier: String = "368027F0-C77F-4F81-B352-F92B7B0370DB"
31 |
/Users/admin/builder/spi-builder-workspace/Sources/Communication/SKMessagePort.swift:30:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | // MARK: - Object Properties
29 | public static var label: String = "com.SystemKit.SKMessagePort"
30 | public static var identifier: String = "368027F0-C77F-4F81-B352-F92B7B0370DB"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | private var portName: CFString
[90/130] Compiling SystemKit SKMessagePort.swift
/Users/admin/builder/spi-builder-workspace/Sources/Communication/SKMessagePort.swift:29:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
27 |
28 | // MARK: - Object Properties
29 | public static var label: String = "com.SystemKit.SKMessagePort"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
30 | public static var identifier: String = "368027F0-C77F-4F81-B352-F92B7B0370DB"
31 |
/Users/admin/builder/spi-builder-workspace/Sources/Communication/SKMessagePort.swift:30:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
28 | // MARK: - Object Properties
29 | public static var label: String = "com.SystemKit.SKMessagePort"
30 | public static var identifier: String = "368027F0-C77F-4F81-B352-F92B7B0370DB"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
31 |
32 | private var portName: CFString
[91/130] Compiling SystemKit SKIOBattery.swift
/Users/admin/builder/spi-builder-workspace/Sources/IO/SKIOResult.swift:39:24: warning: static property 'battery' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
37 |
38 | // MARK: Static Properties
39 | private static var battery: SKIOBattery = SKIOBattery()
| |- warning: static property 'battery' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'battery' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'battery' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 | // MARK: String Properties
/Users/admin/builder/spi-builder-workspace/Sources/IO/SKIOSystem.swift:46:35: warning: reference to var 'vm_kernel_page_size' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
44 | public struct SKIOSystem {
45 |
46 | public static let PAGE_SIZE = vm_kernel_page_size
| `- warning: reference to var 'vm_kernel_page_size' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
47 |
48 | // MARK: - Enum
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/mach/vm_page_size.h:59:25: note: var declared here
57 |
58 |
59 | extern vm_size_t vm_kernel_page_size __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_7_0);
| `- note: var declared here
60 | extern vm_size_t vm_kernel_page_mask __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_7_0);
61 | extern int vm_kernel_page_shift __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_7_0);
[92/130] Compiling SystemKit SKIOProcess.swift
/Users/admin/builder/spi-builder-workspace/Sources/IO/SKIOResult.swift:39:24: warning: static property 'battery' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
37 |
38 | // MARK: Static Properties
39 | private static var battery: SKIOBattery = SKIOBattery()
| |- warning: static property 'battery' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'battery' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'battery' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 | // MARK: String Properties
/Users/admin/builder/spi-builder-workspace/Sources/IO/SKIOSystem.swift:46:35: warning: reference to var 'vm_kernel_page_size' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
44 | public struct SKIOSystem {
45 |
46 | public static let PAGE_SIZE = vm_kernel_page_size
| `- warning: reference to var 'vm_kernel_page_size' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
47 |
48 | // MARK: - Enum
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/mach/vm_page_size.h:59:25: note: var declared here
57 |
58 |
59 | extern vm_size_t vm_kernel_page_size __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_7_0);
| `- note: var declared here
60 | extern vm_size_t vm_kernel_page_mask __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_7_0);
61 | extern int vm_kernel_page_shift __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_7_0);
[93/130] Compiling SystemKit SKIOResult.swift
/Users/admin/builder/spi-builder-workspace/Sources/IO/SKIOResult.swift:39:24: warning: static property 'battery' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
37 |
38 | // MARK: Static Properties
39 | private static var battery: SKIOBattery = SKIOBattery()
| |- warning: static property 'battery' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'battery' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'battery' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 | // MARK: String Properties
/Users/admin/builder/spi-builder-workspace/Sources/IO/SKIOSystem.swift:46:35: warning: reference to var 'vm_kernel_page_size' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
44 | public struct SKIOSystem {
45 |
46 | public static let PAGE_SIZE = vm_kernel_page_size
| `- warning: reference to var 'vm_kernel_page_size' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
47 |
48 | // MARK: - Enum
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/mach/vm_page_size.h:59:25: note: var declared here
57 |
58 |
59 | extern vm_size_t vm_kernel_page_size __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_7_0);
| `- note: var declared here
60 | extern vm_size_t vm_kernel_page_mask __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_7_0);
61 | extern int vm_kernel_page_shift __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_7_0);
[94/130] Compiling SystemKit SKIOReturn.swift
/Users/admin/builder/spi-builder-workspace/Sources/IO/SKIOResult.swift:39:24: warning: static property 'battery' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
37 |
38 | // MARK: Static Properties
39 | private static var battery: SKIOBattery = SKIOBattery()
| |- warning: static property 'battery' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'battery' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'battery' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 | // MARK: String Properties
/Users/admin/builder/spi-builder-workspace/Sources/IO/SKIOSystem.swift:46:35: warning: reference to var 'vm_kernel_page_size' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
44 | public struct SKIOSystem {
45 |
46 | public static let PAGE_SIZE = vm_kernel_page_size
| `- warning: reference to var 'vm_kernel_page_size' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
47 |
48 | // MARK: - Enum
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/mach/vm_page_size.h:59:25: note: var declared here
57 |
58 |
59 | extern vm_size_t vm_kernel_page_size __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_7_0);
| `- note: var declared here
60 | extern vm_size_t vm_kernel_page_mask __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_7_0);
61 | extern int vm_kernel_page_shift __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_7_0);
[95/130] Compiling SystemKit SKIOSystem.swift
/Users/admin/builder/spi-builder-workspace/Sources/IO/SKIOResult.swift:39:24: warning: static property 'battery' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
37 |
38 | // MARK: Static Properties
39 | private static var battery: SKIOBattery = SKIOBattery()
| |- warning: static property 'battery' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'battery' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'battery' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
40 |
41 | // MARK: String Properties
/Users/admin/builder/spi-builder-workspace/Sources/IO/SKIOSystem.swift:46:35: warning: reference to var 'vm_kernel_page_size' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
44 | public struct SKIOSystem {
45 |
46 | public static let PAGE_SIZE = vm_kernel_page_size
| `- warning: reference to var 'vm_kernel_page_size' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
47 |
48 | // MARK: - Enum
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/mach/vm_page_size.h:59:25: note: var declared here
57 |
58 |
59 | extern vm_size_t vm_kernel_page_size __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_7_0);
| `- note: var declared here
60 | extern vm_size_t vm_kernel_page_mask __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_7_0);
61 | extern int vm_kernel_page_shift __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_7_0);
[96/130] Compiling SystemKit SKSystemProcessResource+Additions.swift
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemProcessResource.swift:31:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKSystemProcessResource' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import Foundation
25 |
26 | public class SKSystemProcessResource: SKClass {
| `- note: class 'SKSystemProcessResource' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Object Properties
29 | public static let label: String = "com.SystemKit.SKSystemResource"
30 | public static let identifier: String = "D6217410-E762-478B-A97F-D5E8EC05D0CA"
31 | public static let shared: SKSystemProcessResource = SKSystemProcessResource()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKSystemProcessResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 | // MARK: - Initalize
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemResource+Additions.swift:80:17: warning: initialization of immutable value 'totalSpaceGB' was never used; consider replacing with assignment to '_' or removing it
78 | guard let freeSpace = attributes[FileAttributeKey.systemFreeSize] as? NSNumber else { return nil }
79 |
80 | let totalSpaceGB = ByteCountFormatter.string(fromByteCount: totalSpace.int64Value,
| `- warning: initialization of immutable value 'totalSpaceGB' was never used; consider replacing with assignment to '_' or removing it
81 | countStyle: .decimal)
82 | let freeSpaceGB = ByteCountFormatter.string(fromByteCount: freeSpace.int64Value,
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemResource+Additions.swift:82:17: warning: initialization of immutable value 'freeSpaceGB' was never used; consider replacing with assignment to '_' or removing it
80 | let totalSpaceGB = ByteCountFormatter.string(fromByteCount: totalSpace.int64Value,
81 | countStyle: .decimal)
82 | let freeSpaceGB = ByteCountFormatter.string(fromByteCount: freeSpace.int64Value,
| `- warning: initialization of immutable value 'freeSpaceGB' was never used; consider replacing with assignment to '_' or removing it
83 | countStyle: .decimal)
84 | let usedSpaceGB = ByteCountFormatter.string(fromByteCount: totalSpace.int64Value - freeSpace.int64Value,
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemResource+Additions.swift:84:17: warning: initialization of immutable value 'usedSpaceGB' was never used; consider replacing with assignment to '_' or removing it
82 | let freeSpaceGB = ByteCountFormatter.string(fromByteCount: freeSpace.int64Value,
83 | countStyle: .decimal)
84 | let usedSpaceGB = ByteCountFormatter.string(fromByteCount: totalSpace.int64Value - freeSpace.int64Value,
| `- warning: initialization of immutable value 'usedSpaceGB' was never used; consider replacing with assignment to '_' or removing it
85 | countStyle: .decimal)
86 |
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemResource+Additions.swift:124:27: warning: reference to var 'vm_kernel_page_size' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
122 |
123 | let load = getStatisticsWithMemory()
124 | let unit = Double(vm_kernel_page_size) / type.rawValue
| `- warning: reference to var 'vm_kernel_page_size' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
125 |
126 | let active = Double(load.active_count) * unit
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/mach/vm_page_size.h:59:25: note: var declared here
57 |
58 |
59 | extern vm_size_t vm_kernel_page_size __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_7_0);
| `- note: var declared here
60 | extern vm_size_t vm_kernel_page_mask __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_7_0);
61 | extern int vm_kernel_page_shift __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_7_0);
[97/130] Compiling SystemKit SKSystemProcessResource+Define.swift
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemProcessResource.swift:31:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKSystemProcessResource' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import Foundation
25 |
26 | public class SKSystemProcessResource: SKClass {
| `- note: class 'SKSystemProcessResource' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Object Properties
29 | public static let label: String = "com.SystemKit.SKSystemResource"
30 | public static let identifier: String = "D6217410-E762-478B-A97F-D5E8EC05D0CA"
31 | public static let shared: SKSystemProcessResource = SKSystemProcessResource()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKSystemProcessResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 | // MARK: - Initalize
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemResource+Additions.swift:80:17: warning: initialization of immutable value 'totalSpaceGB' was never used; consider replacing with assignment to '_' or removing it
78 | guard let freeSpace = attributes[FileAttributeKey.systemFreeSize] as? NSNumber else { return nil }
79 |
80 | let totalSpaceGB = ByteCountFormatter.string(fromByteCount: totalSpace.int64Value,
| `- warning: initialization of immutable value 'totalSpaceGB' was never used; consider replacing with assignment to '_' or removing it
81 | countStyle: .decimal)
82 | let freeSpaceGB = ByteCountFormatter.string(fromByteCount: freeSpace.int64Value,
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemResource+Additions.swift:82:17: warning: initialization of immutable value 'freeSpaceGB' was never used; consider replacing with assignment to '_' or removing it
80 | let totalSpaceGB = ByteCountFormatter.string(fromByteCount: totalSpace.int64Value,
81 | countStyle: .decimal)
82 | let freeSpaceGB = ByteCountFormatter.string(fromByteCount: freeSpace.int64Value,
| `- warning: initialization of immutable value 'freeSpaceGB' was never used; consider replacing with assignment to '_' or removing it
83 | countStyle: .decimal)
84 | let usedSpaceGB = ByteCountFormatter.string(fromByteCount: totalSpace.int64Value - freeSpace.int64Value,
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemResource+Additions.swift:84:17: warning: initialization of immutable value 'usedSpaceGB' was never used; consider replacing with assignment to '_' or removing it
82 | let freeSpaceGB = ByteCountFormatter.string(fromByteCount: freeSpace.int64Value,
83 | countStyle: .decimal)
84 | let usedSpaceGB = ByteCountFormatter.string(fromByteCount: totalSpace.int64Value - freeSpace.int64Value,
| `- warning: initialization of immutable value 'usedSpaceGB' was never used; consider replacing with assignment to '_' or removing it
85 | countStyle: .decimal)
86 |
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemResource+Additions.swift:124:27: warning: reference to var 'vm_kernel_page_size' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
122 |
123 | let load = getStatisticsWithMemory()
124 | let unit = Double(vm_kernel_page_size) / type.rawValue
| `- warning: reference to var 'vm_kernel_page_size' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
125 |
126 | let active = Double(load.active_count) * unit
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/mach/vm_page_size.h:59:25: note: var declared here
57 |
58 |
59 | extern vm_size_t vm_kernel_page_size __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_7_0);
| `- note: var declared here
60 | extern vm_size_t vm_kernel_page_mask __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_7_0);
61 | extern int vm_kernel_page_shift __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_7_0);
[98/130] Compiling SystemKit SKSystemProcessResource.swift
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemProcessResource.swift:31:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKSystemProcessResource' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import Foundation
25 |
26 | public class SKSystemProcessResource: SKClass {
| `- note: class 'SKSystemProcessResource' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Object Properties
29 | public static let label: String = "com.SystemKit.SKSystemResource"
30 | public static let identifier: String = "D6217410-E762-478B-A97F-D5E8EC05D0CA"
31 | public static let shared: SKSystemProcessResource = SKSystemProcessResource()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKSystemProcessResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 | // MARK: - Initalize
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemResource+Additions.swift:80:17: warning: initialization of immutable value 'totalSpaceGB' was never used; consider replacing with assignment to '_' or removing it
78 | guard let freeSpace = attributes[FileAttributeKey.systemFreeSize] as? NSNumber else { return nil }
79 |
80 | let totalSpaceGB = ByteCountFormatter.string(fromByteCount: totalSpace.int64Value,
| `- warning: initialization of immutable value 'totalSpaceGB' was never used; consider replacing with assignment to '_' or removing it
81 | countStyle: .decimal)
82 | let freeSpaceGB = ByteCountFormatter.string(fromByteCount: freeSpace.int64Value,
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemResource+Additions.swift:82:17: warning: initialization of immutable value 'freeSpaceGB' was never used; consider replacing with assignment to '_' or removing it
80 | let totalSpaceGB = ByteCountFormatter.string(fromByteCount: totalSpace.int64Value,
81 | countStyle: .decimal)
82 | let freeSpaceGB = ByteCountFormatter.string(fromByteCount: freeSpace.int64Value,
| `- warning: initialization of immutable value 'freeSpaceGB' was never used; consider replacing with assignment to '_' or removing it
83 | countStyle: .decimal)
84 | let usedSpaceGB = ByteCountFormatter.string(fromByteCount: totalSpace.int64Value - freeSpace.int64Value,
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemResource+Additions.swift:84:17: warning: initialization of immutable value 'usedSpaceGB' was never used; consider replacing with assignment to '_' or removing it
82 | let freeSpaceGB = ByteCountFormatter.string(fromByteCount: freeSpace.int64Value,
83 | countStyle: .decimal)
84 | let usedSpaceGB = ByteCountFormatter.string(fromByteCount: totalSpace.int64Value - freeSpace.int64Value,
| `- warning: initialization of immutable value 'usedSpaceGB' was never used; consider replacing with assignment to '_' or removing it
85 | countStyle: .decimal)
86 |
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemResource+Additions.swift:124:27: warning: reference to var 'vm_kernel_page_size' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
122 |
123 | let load = getStatisticsWithMemory()
124 | let unit = Double(vm_kernel_page_size) / type.rawValue
| `- warning: reference to var 'vm_kernel_page_size' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
125 |
126 | let active = Double(load.active_count) * unit
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/mach/vm_page_size.h:59:25: note: var declared here
57 |
58 |
59 | extern vm_size_t vm_kernel_page_size __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_7_0);
| `- note: var declared here
60 | extern vm_size_t vm_kernel_page_mask __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_7_0);
61 | extern int vm_kernel_page_shift __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_7_0);
[99/130] Compiling SystemKit SKSystemResource+Additions.swift
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemProcessResource.swift:31:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKSystemProcessResource' may have shared mutable state; this is an error in the Swift 6 language mode
24 | import Foundation
25 |
26 | public class SKSystemProcessResource: SKClass {
| `- note: class 'SKSystemProcessResource' does not conform to the 'Sendable' protocol
27 |
28 | // MARK: - Object Properties
29 | public static let label: String = "com.SystemKit.SKSystemResource"
30 | public static let identifier: String = "D6217410-E762-478B-A97F-D5E8EC05D0CA"
31 | public static let shared: SKSystemProcessResource = SKSystemProcessResource()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKSystemProcessResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 |
33 | // MARK: - Initalize
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemResource+Additions.swift:80:17: warning: initialization of immutable value 'totalSpaceGB' was never used; consider replacing with assignment to '_' or removing it
78 | guard let freeSpace = attributes[FileAttributeKey.systemFreeSize] as? NSNumber else { return nil }
79 |
80 | let totalSpaceGB = ByteCountFormatter.string(fromByteCount: totalSpace.int64Value,
| `- warning: initialization of immutable value 'totalSpaceGB' was never used; consider replacing with assignment to '_' or removing it
81 | countStyle: .decimal)
82 | let freeSpaceGB = ByteCountFormatter.string(fromByteCount: freeSpace.int64Value,
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemResource+Additions.swift:82:17: warning: initialization of immutable value 'freeSpaceGB' was never used; consider replacing with assignment to '_' or removing it
80 | let totalSpaceGB = ByteCountFormatter.string(fromByteCount: totalSpace.int64Value,
81 | countStyle: .decimal)
82 | let freeSpaceGB = ByteCountFormatter.string(fromByteCount: freeSpace.int64Value,
| `- warning: initialization of immutable value 'freeSpaceGB' was never used; consider replacing with assignment to '_' or removing it
83 | countStyle: .decimal)
84 | let usedSpaceGB = ByteCountFormatter.string(fromByteCount: totalSpace.int64Value - freeSpace.int64Value,
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemResource+Additions.swift:84:17: warning: initialization of immutable value 'usedSpaceGB' was never used; consider replacing with assignment to '_' or removing it
82 | let freeSpaceGB = ByteCountFormatter.string(fromByteCount: freeSpace.int64Value,
83 | countStyle: .decimal)
84 | let usedSpaceGB = ByteCountFormatter.string(fromByteCount: totalSpace.int64Value - freeSpace.int64Value,
| `- warning: initialization of immutable value 'usedSpaceGB' was never used; consider replacing with assignment to '_' or removing it
85 | countStyle: .decimal)
86 |
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemResource+Additions.swift:124:27: warning: reference to var 'vm_kernel_page_size' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
122 |
123 | let load = getStatisticsWithMemory()
124 | let unit = Double(vm_kernel_page_size) / type.rawValue
| `- warning: reference to var 'vm_kernel_page_size' is not concurrency-safe because it involves shared mutable state; this is an error in the Swift 6 language mode
125 |
126 | let active = Double(load.active_count) * unit
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/usr/include/mach/vm_page_size.h:59:25: note: var declared here
57 |
58 |
59 | extern vm_size_t vm_kernel_page_size __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_7_0);
| `- note: var declared here
60 | extern vm_size_t vm_kernel_page_mask __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_7_0);
61 | extern int vm_kernel_page_shift __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_7_0);
[100/130] Compiling SystemKit SKOperation+Protocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/SKAsyncOperation.swift:26:12: warning: class 'SKAsyncOperation' must restate inherited '@unchecked Sendable' conformance
24 | import Foundation
25 |
26 | open class SKAsyncOperation: Operation {
| `- warning: class 'SKAsyncOperation' must restate inherited '@unchecked Sendable' conformance
27 |
28 | // MARK: - Enum
/Users/admin/builder/spi-builder-workspace/Sources/SKCrashReporter.swift:32:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | // MARK: - Object Properties
32 | public static var label: String = "com.SystemKit.SKCrashReporter"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | public static var identifier: String = "4552D8B1-1522-4EB0-B02F-95DFC9598169"
34 |
/Users/admin/builder/spi-builder-workspace/Sources/SKCrashReporter.swift:33:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | // MARK: - Object Properties
32 | public static var label: String = "com.SystemKit.SKCrashReporter"
33 | public static var identifier: String = "4552D8B1-1522-4EB0-B02F-95DFC9598169"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | public var crashReporter: Optional<PLCrashReporter> = nil
[101/130] Compiling SystemKit SKAsyncOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/SKAsyncOperation.swift:26:12: warning: class 'SKAsyncOperation' must restate inherited '@unchecked Sendable' conformance
24 | import Foundation
25 |
26 | open class SKAsyncOperation: Operation {
| `- warning: class 'SKAsyncOperation' must restate inherited '@unchecked Sendable' conformance
27 |
28 | // MARK: - Enum
/Users/admin/builder/spi-builder-workspace/Sources/SKCrashReporter.swift:32:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | // MARK: - Object Properties
32 | public static var label: String = "com.SystemKit.SKCrashReporter"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | public static var identifier: String = "4552D8B1-1522-4EB0-B02F-95DFC9598169"
34 |
/Users/admin/builder/spi-builder-workspace/Sources/SKCrashReporter.swift:33:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | // MARK: - Object Properties
32 | public static var label: String = "com.SystemKit.SKCrashReporter"
33 | public static var identifier: String = "4552D8B1-1522-4EB0-B02F-95DFC9598169"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | public var crashReporter: Optional<PLCrashReporter> = nil
[102/130] Compiling SystemKit SKAtomicValue.swift
/Users/admin/builder/spi-builder-workspace/Sources/SKAsyncOperation.swift:26:12: warning: class 'SKAsyncOperation' must restate inherited '@unchecked Sendable' conformance
24 | import Foundation
25 |
26 | open class SKAsyncOperation: Operation {
| `- warning: class 'SKAsyncOperation' must restate inherited '@unchecked Sendable' conformance
27 |
28 | // MARK: - Enum
/Users/admin/builder/spi-builder-workspace/Sources/SKCrashReporter.swift:32:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | // MARK: - Object Properties
32 | public static var label: String = "com.SystemKit.SKCrashReporter"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | public static var identifier: String = "4552D8B1-1522-4EB0-B02F-95DFC9598169"
34 |
/Users/admin/builder/spi-builder-workspace/Sources/SKCrashReporter.swift:33:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | // MARK: - Object Properties
32 | public static var label: String = "com.SystemKit.SKCrashReporter"
33 | public static var identifier: String = "4552D8B1-1522-4EB0-B02F-95DFC9598169"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | public var crashReporter: Optional<PLCrashReporter> = nil
[103/130] Compiling SystemKit SKCrashReporter.swift
/Users/admin/builder/spi-builder-workspace/Sources/SKAsyncOperation.swift:26:12: warning: class 'SKAsyncOperation' must restate inherited '@unchecked Sendable' conformance
24 | import Foundation
25 |
26 | open class SKAsyncOperation: Operation {
| `- warning: class 'SKAsyncOperation' must restate inherited '@unchecked Sendable' conformance
27 |
28 | // MARK: - Enum
/Users/admin/builder/spi-builder-workspace/Sources/SKCrashReporter.swift:32:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | // MARK: - Object Properties
32 | public static var label: String = "com.SystemKit.SKCrashReporter"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | public static var identifier: String = "4552D8B1-1522-4EB0-B02F-95DFC9598169"
34 |
/Users/admin/builder/spi-builder-workspace/Sources/SKCrashReporter.swift:33:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | // MARK: - Object Properties
32 | public static var label: String = "com.SystemKit.SKCrashReporter"
33 | public static var identifier: String = "4552D8B1-1522-4EB0-B02F-95DFC9598169"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | public var crashReporter: Optional<PLCrashReporter> = nil
[104/130] Compiling SystemKit SKNetworkInterface.swift
/Users/admin/builder/spi-builder-workspace/Sources/Network/SKNetworkInterface.swift:35:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKNetworkInterface' may have shared mutable state; this is an error in the Swift 6 language mode
28 | import Logging
29 |
30 | @objc public class SKNetworkInterface: NSObject, SKClass {
| `- note: class 'SKNetworkInterface' does not conform to the 'Sendable' protocol
31 |
32 | // MARK: - Object Properties
33 | public static let label: String = "com.SystemKit.SKNetworkInterface"
34 | public static let identifier: String = "45BC7AF3-346F-44DE-A370-96BA0E14AC40"
35 | public static let shared: SKNetworkInterface = SKNetworkInterface()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKNetworkInterface' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | // MARK: - Initalize
/Users/admin/builder/spi-builder-workspace/Sources/Network/SKNetworkMonitor.swift:36:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 |
35 | // MARK: - Object Properties
36 | public static var label: String = "com.SystemKit.SKNetworkMonitor"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | public static var identifier: String = "5C6F96D5-C21E-4A48-9AED-15794E19A4E9"
38 |
/Users/admin/builder/spi-builder-workspace/Sources/Network/SKNetworkMonitor.swift:37:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
35 | // MARK: - Object Properties
36 | public static var label: String = "com.SystemKit.SKNetworkMonitor"
37 | public static var identifier: String = "5C6F96D5-C21E-4A48-9AED-15794E19A4E9"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |
39 | private let monitor: NWPathMonitor = NWPathMonitor()
/Users/admin/builder/spi-builder-workspace/Sources/Network/SKNetworkMonitor.swift:68:13: warning: capture of 'self' with non-sendable type 'SKNetworkMonitor' in a '@Sendable' closure; this is an error in the Swift 6 language mode
27 |
28 | @available(iOS 12.0, macOS 10.14, *)
29 | public class SKNetworkMonitor: SKClass {
| `- note: class 'SKNetworkMonitor' does not conform to the 'Sendable' protocol
30 |
31 | // MARK: - Typealias
:
66 |
67 | let result: SKNetworkMonitorStatus = SKNetworkMonitorStatus(newPath)
68 | self.pathUpdateHandler(result)
| `- warning: capture of 'self' with non-sendable type 'SKNetworkMonitor' in a '@Sendable' closure; this is an error in the Swift 6 language mode
69 | }
70 |
[105/130] Compiling SystemKit SKNetworkInterfaceDefine.swift
/Users/admin/builder/spi-builder-workspace/Sources/Network/SKNetworkInterface.swift:35:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKNetworkInterface' may have shared mutable state; this is an error in the Swift 6 language mode
28 | import Logging
29 |
30 | @objc public class SKNetworkInterface: NSObject, SKClass {
| `- note: class 'SKNetworkInterface' does not conform to the 'Sendable' protocol
31 |
32 | // MARK: - Object Properties
33 | public static let label: String = "com.SystemKit.SKNetworkInterface"
34 | public static let identifier: String = "45BC7AF3-346F-44DE-A370-96BA0E14AC40"
35 | public static let shared: SKNetworkInterface = SKNetworkInterface()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKNetworkInterface' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | // MARK: - Initalize
/Users/admin/builder/spi-builder-workspace/Sources/Network/SKNetworkMonitor.swift:36:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 |
35 | // MARK: - Object Properties
36 | public static var label: String = "com.SystemKit.SKNetworkMonitor"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | public static var identifier: String = "5C6F96D5-C21E-4A48-9AED-15794E19A4E9"
38 |
/Users/admin/builder/spi-builder-workspace/Sources/Network/SKNetworkMonitor.swift:37:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
35 | // MARK: - Object Properties
36 | public static var label: String = "com.SystemKit.SKNetworkMonitor"
37 | public static var identifier: String = "5C6F96D5-C21E-4A48-9AED-15794E19A4E9"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |
39 | private let monitor: NWPathMonitor = NWPathMonitor()
/Users/admin/builder/spi-builder-workspace/Sources/Network/SKNetworkMonitor.swift:68:13: warning: capture of 'self' with non-sendable type 'SKNetworkMonitor' in a '@Sendable' closure; this is an error in the Swift 6 language mode
27 |
28 | @available(iOS 12.0, macOS 10.14, *)
29 | public class SKNetworkMonitor: SKClass {
| `- note: class 'SKNetworkMonitor' does not conform to the 'Sendable' protocol
30 |
31 | // MARK: - Typealias
:
66 |
67 | let result: SKNetworkMonitorStatus = SKNetworkMonitorStatus(newPath)
68 | self.pathUpdateHandler(result)
| `- warning: capture of 'self' with non-sendable type 'SKNetworkMonitor' in a '@Sendable' closure; this is an error in the Swift 6 language mode
69 | }
70 |
[106/130] Compiling SystemKit SKNetworkMonitor.swift
/Users/admin/builder/spi-builder-workspace/Sources/Network/SKNetworkInterface.swift:35:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKNetworkInterface' may have shared mutable state; this is an error in the Swift 6 language mode
28 | import Logging
29 |
30 | @objc public class SKNetworkInterface: NSObject, SKClass {
| `- note: class 'SKNetworkInterface' does not conform to the 'Sendable' protocol
31 |
32 | // MARK: - Object Properties
33 | public static let label: String = "com.SystemKit.SKNetworkInterface"
34 | public static let identifier: String = "45BC7AF3-346F-44DE-A370-96BA0E14AC40"
35 | public static let shared: SKNetworkInterface = SKNetworkInterface()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKNetworkInterface' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | // MARK: - Initalize
/Users/admin/builder/spi-builder-workspace/Sources/Network/SKNetworkMonitor.swift:36:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 |
35 | // MARK: - Object Properties
36 | public static var label: String = "com.SystemKit.SKNetworkMonitor"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | public static var identifier: String = "5C6F96D5-C21E-4A48-9AED-15794E19A4E9"
38 |
/Users/admin/builder/spi-builder-workspace/Sources/Network/SKNetworkMonitor.swift:37:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
35 | // MARK: - Object Properties
36 | public static var label: String = "com.SystemKit.SKNetworkMonitor"
37 | public static var identifier: String = "5C6F96D5-C21E-4A48-9AED-15794E19A4E9"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |
39 | private let monitor: NWPathMonitor = NWPathMonitor()
/Users/admin/builder/spi-builder-workspace/Sources/Network/SKNetworkMonitor.swift:68:13: warning: capture of 'self' with non-sendable type 'SKNetworkMonitor' in a '@Sendable' closure; this is an error in the Swift 6 language mode
27 |
28 | @available(iOS 12.0, macOS 10.14, *)
29 | public class SKNetworkMonitor: SKClass {
| `- note: class 'SKNetworkMonitor' does not conform to the 'Sendable' protocol
30 |
31 | // MARK: - Typealias
:
66 |
67 | let result: SKNetworkMonitorStatus = SKNetworkMonitorStatus(newPath)
68 | self.pathUpdateHandler(result)
| `- warning: capture of 'self' with non-sendable type 'SKNetworkMonitor' in a '@Sendable' closure; this is an error in the Swift 6 language mode
69 | }
70 |
[107/130] Compiling SystemKit SKNetworkMonitorDefine.swift
/Users/admin/builder/spi-builder-workspace/Sources/Network/SKNetworkInterface.swift:35:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKNetworkInterface' may have shared mutable state; this is an error in the Swift 6 language mode
28 | import Logging
29 |
30 | @objc public class SKNetworkInterface: NSObject, SKClass {
| `- note: class 'SKNetworkInterface' does not conform to the 'Sendable' protocol
31 |
32 | // MARK: - Object Properties
33 | public static let label: String = "com.SystemKit.SKNetworkInterface"
34 | public static let identifier: String = "45BC7AF3-346F-44DE-A370-96BA0E14AC40"
35 | public static let shared: SKNetworkInterface = SKNetworkInterface()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKNetworkInterface' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | // MARK: - Initalize
/Users/admin/builder/spi-builder-workspace/Sources/Network/SKNetworkMonitor.swift:36:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 |
35 | // MARK: - Object Properties
36 | public static var label: String = "com.SystemKit.SKNetworkMonitor"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | public static var identifier: String = "5C6F96D5-C21E-4A48-9AED-15794E19A4E9"
38 |
/Users/admin/builder/spi-builder-workspace/Sources/Network/SKNetworkMonitor.swift:37:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
35 | // MARK: - Object Properties
36 | public static var label: String = "com.SystemKit.SKNetworkMonitor"
37 | public static var identifier: String = "5C6F96D5-C21E-4A48-9AED-15794E19A4E9"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |
39 | private let monitor: NWPathMonitor = NWPathMonitor()
/Users/admin/builder/spi-builder-workspace/Sources/Network/SKNetworkMonitor.swift:68:13: warning: capture of 'self' with non-sendable type 'SKNetworkMonitor' in a '@Sendable' closure; this is an error in the Swift 6 language mode
27 |
28 | @available(iOS 12.0, macOS 10.14, *)
29 | public class SKNetworkMonitor: SKClass {
| `- note: class 'SKNetworkMonitor' does not conform to the 'Sendable' protocol
30 |
31 | // MARK: - Typealias
:
66 |
67 | let result: SKNetworkMonitorStatus = SKNetworkMonitorStatus(newPath)
68 | self.pathUpdateHandler(result)
| `- warning: capture of 'self' with non-sendable type 'SKNetworkMonitor' in a '@Sendable' closure; this is an error in the Swift 6 language mode
69 | }
70 |
[108/130] Compiling SystemKit SKPermissionDefine.swift
/Users/admin/builder/spi-builder-workspace/Sources/Network/SKNetworkInterface.swift:35:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKNetworkInterface' may have shared mutable state; this is an error in the Swift 6 language mode
28 | import Logging
29 |
30 | @objc public class SKNetworkInterface: NSObject, SKClass {
| `- note: class 'SKNetworkInterface' does not conform to the 'Sendable' protocol
31 |
32 | // MARK: - Object Properties
33 | public static let label: String = "com.SystemKit.SKNetworkInterface"
34 | public static let identifier: String = "45BC7AF3-346F-44DE-A370-96BA0E14AC40"
35 | public static let shared: SKNetworkInterface = SKNetworkInterface()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKNetworkInterface' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | // MARK: - Initalize
/Users/admin/builder/spi-builder-workspace/Sources/Network/SKNetworkMonitor.swift:36:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
34 |
35 | // MARK: - Object Properties
36 | public static var label: String = "com.SystemKit.SKNetworkMonitor"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
37 | public static var identifier: String = "5C6F96D5-C21E-4A48-9AED-15794E19A4E9"
38 |
/Users/admin/builder/spi-builder-workspace/Sources/Network/SKNetworkMonitor.swift:37:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
35 | // MARK: - Object Properties
36 | public static var label: String = "com.SystemKit.SKNetworkMonitor"
37 | public static var identifier: String = "5C6F96D5-C21E-4A48-9AED-15794E19A4E9"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
38 |
39 | private let monitor: NWPathMonitor = NWPathMonitor()
/Users/admin/builder/spi-builder-workspace/Sources/Network/SKNetworkMonitor.swift:68:13: warning: capture of 'self' with non-sendable type 'SKNetworkMonitor' in a '@Sendable' closure; this is an error in the Swift 6 language mode
27 |
28 | @available(iOS 12.0, macOS 10.14, *)
29 | public class SKNetworkMonitor: SKClass {
| `- note: class 'SKNetworkMonitor' does not conform to the 'Sendable' protocol
30 |
31 | // MARK: - Typealias
:
66 |
67 | let result: SKNetworkMonitorStatus = SKNetworkMonitorStatus(newPath)
68 | self.pathUpdateHandler(result)
| `- warning: capture of 'self' with non-sendable type 'SKNetworkMonitor' in a '@Sendable' closure; this is an error in the Swift 6 language mode
69 | }
70 |
[109/130] Compiling SystemKit SKSystemResource+Define.swift
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemResource.swift:32:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKSystemResource' may have shared mutable state; this is an error in the Swift 6 language mode
25 | import Foundation
26 |
27 | public class SKSystemResource: SKClass {
| `- note: class 'SKSystemResource' does not conform to the 'Sendable' protocol
28 |
29 | // MARK: - Object Properties
30 | public static let label: String = "com.SystemKit.SKSystemResource"
31 | public static let identifier: String = "0DEE36A9-02C6-4CEE-9FA7-A8CB6A4093A6"
32 | public static let shared: SKSystemResource = SKSystemResource()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKSystemResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 | public var previousSystemResource: host_cpu_load_info = host_cpu_load_info()
[110/130] Compiling SystemKit SKSystemResource.swift
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemResource.swift:32:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKSystemResource' may have shared mutable state; this is an error in the Swift 6 language mode
25 | import Foundation
26 |
27 | public class SKSystemResource: SKClass {
| `- note: class 'SKSystemResource' does not conform to the 'Sendable' protocol
28 |
29 | // MARK: - Object Properties
30 | public static let label: String = "com.SystemKit.SKSystemResource"
31 | public static let identifier: String = "0DEE36A9-02C6-4CEE-9FA7-A8CB6A4093A6"
32 | public static let shared: SKSystemResource = SKSystemResource()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKSystemResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 | public var previousSystemResource: host_cpu_load_info = host_cpu_load_info()
[111/130] Compiling SystemKit SystemKit.swift
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemResource.swift:32:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKSystemResource' may have shared mutable state; this is an error in the Swift 6 language mode
25 | import Foundation
26 |
27 | public class SKSystemResource: SKClass {
| `- note: class 'SKSystemResource' does not conform to the 'Sendable' protocol
28 |
29 | // MARK: - Object Properties
30 | public static let label: String = "com.SystemKit.SKSystemResource"
31 | public static let identifier: String = "0DEE36A9-02C6-4CEE-9FA7-A8CB6A4093A6"
32 | public static let shared: SKSystemResource = SKSystemResource()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKSystemResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 | public var previousSystemResource: host_cpu_load_info = host_cpu_load_info()
[112/130] Compiling SystemKit resource_bundle_accessor.swift
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemResource.swift:32:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKSystemResource' may have shared mutable state; this is an error in the Swift 6 language mode
25 | import Foundation
26 |
27 | public class SKSystemResource: SKClass {
| `- note: class 'SKSystemResource' does not conform to the 'Sendable' protocol
28 |
29 | // MARK: - Object Properties
30 | public static let label: String = "com.SystemKit.SKSystemResource"
31 | public static let identifier: String = "0DEE36A9-02C6-4CEE-9FA7-A8CB6A4093A6"
32 | public static let shared: SKSystemResource = SKSystemResource()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKSystemResource' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 | public var previousSystemResource: host_cpu_load_info = host_cpu_load_info()
[113/130] Compiling SystemKit SKPreferencePaneDefine.swift
/Users/admin/builder/spi-builder-workspace/Sources/Process/SKProcess.swift:34:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKProcess' may have shared mutable state; this is an error in the Swift 6 language mode
25 |
26 | @available(macOS 10.12, *)
27 | public class SKProcess: NSObject, SKClass {
| `- note: class 'SKProcess' does not conform to the 'Sendable' protocol
28 |
29 | // MARK: - Typealias
:
32 |
33 | // MARK: - Object Properties
34 | public static let shared: SKProcess = SKProcess()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKProcess' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | public static let label: String = "com.SystemKit.SKProcess"
36 | public static let identifier: String = "B275BF0C-3E1B-4897-B6CB-CA3DC7FFD3EB"
/Users/admin/builder/spi-builder-workspace/Sources/Process/SKProcess.swift:89:36: warning: assigning non-sendable parameter 'terminationHandler' to a @Sendable closure
81 | waitUntilExit: Bool = false,
82 | qualityOfService: QualityOfService = .default,
83 | terminationHandler: Optional<SKProcessTerminationHandler> = nil,
| `- note: parameter 'terminationHandler' is implicitly non-sendable
84 | errorCompletionHandler: Optional<SKProcessErrorResult> = nil) -> Int32 {
85 |
:
87 | process.launchPath = launchPath
88 | process.arguments = arguments
89 | process.terminationHandler = terminationHandler
| `- warning: assigning non-sendable parameter 'terminationHandler' to a @Sendable closure
90 | process.standardInput = standardInput
91 | process.standardOutput = standardOutput
/Users/admin/builder/spi-builder-workspace/Sources/Process/SKProcessMonitor.swift:31:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | // MARK: - Object Properties
31 | public static var label: String = "com.SystemKit.SKProcessMonitor"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | public static var identifier: String = "A4031B25-241F-4457-9DF4-B711D022C4EA"
33 |
/Users/admin/builder/spi-builder-workspace/Sources/Process/SKProcessMonitor.swift:32:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 | // MARK: - Object Properties
31 | public static var label: String = "com.SystemKit.SKProcessMonitor"
32 | public static var identifier: String = "A4031B25-241F-4457-9DF4-B711D022C4EA"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 | private var info: ProcessMonitorInfo
/Users/admin/builder/spi-builder-workspace/Sources/Process/SKProcessMonitor.swift:28:14: warning: class 'SKProcessMonitor' must restate inherited '@unchecked Sendable' conformance
26 | import CoreFoundation
27 |
28 | public class SKProcessMonitor: SKAsyncOperation {
| `- warning: class 'SKProcessMonitor' must restate inherited '@unchecked Sendable' conformance
29 |
30 | // MARK: - Object Properties
[114/130] Compiling SystemKit SKProcess.swift
/Users/admin/builder/spi-builder-workspace/Sources/Process/SKProcess.swift:34:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKProcess' may have shared mutable state; this is an error in the Swift 6 language mode
25 |
26 | @available(macOS 10.12, *)
27 | public class SKProcess: NSObject, SKClass {
| `- note: class 'SKProcess' does not conform to the 'Sendable' protocol
28 |
29 | // MARK: - Typealias
:
32 |
33 | // MARK: - Object Properties
34 | public static let shared: SKProcess = SKProcess()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKProcess' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | public static let label: String = "com.SystemKit.SKProcess"
36 | public static let identifier: String = "B275BF0C-3E1B-4897-B6CB-CA3DC7FFD3EB"
/Users/admin/builder/spi-builder-workspace/Sources/Process/SKProcess.swift:89:36: warning: assigning non-sendable parameter 'terminationHandler' to a @Sendable closure
81 | waitUntilExit: Bool = false,
82 | qualityOfService: QualityOfService = .default,
83 | terminationHandler: Optional<SKProcessTerminationHandler> = nil,
| `- note: parameter 'terminationHandler' is implicitly non-sendable
84 | errorCompletionHandler: Optional<SKProcessErrorResult> = nil) -> Int32 {
85 |
:
87 | process.launchPath = launchPath
88 | process.arguments = arguments
89 | process.terminationHandler = terminationHandler
| `- warning: assigning non-sendable parameter 'terminationHandler' to a @Sendable closure
90 | process.standardInput = standardInput
91 | process.standardOutput = standardOutput
/Users/admin/builder/spi-builder-workspace/Sources/Process/SKProcessMonitor.swift:31:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | // MARK: - Object Properties
31 | public static var label: String = "com.SystemKit.SKProcessMonitor"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | public static var identifier: String = "A4031B25-241F-4457-9DF4-B711D022C4EA"
33 |
/Users/admin/builder/spi-builder-workspace/Sources/Process/SKProcessMonitor.swift:32:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 | // MARK: - Object Properties
31 | public static var label: String = "com.SystemKit.SKProcessMonitor"
32 | public static var identifier: String = "A4031B25-241F-4457-9DF4-B711D022C4EA"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 | private var info: ProcessMonitorInfo
/Users/admin/builder/spi-builder-workspace/Sources/Process/SKProcessMonitor.swift:28:14: warning: class 'SKProcessMonitor' must restate inherited '@unchecked Sendable' conformance
26 | import CoreFoundation
27 |
28 | public class SKProcessMonitor: SKAsyncOperation {
| `- warning: class 'SKProcessMonitor' must restate inherited '@unchecked Sendable' conformance
29 |
30 | // MARK: - Object Properties
[115/130] Compiling SystemKit SKProcessMonitor.swift
/Users/admin/builder/spi-builder-workspace/Sources/Process/SKProcess.swift:34:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKProcess' may have shared mutable state; this is an error in the Swift 6 language mode
25 |
26 | @available(macOS 10.12, *)
27 | public class SKProcess: NSObject, SKClass {
| `- note: class 'SKProcess' does not conform to the 'Sendable' protocol
28 |
29 | // MARK: - Typealias
:
32 |
33 | // MARK: - Object Properties
34 | public static let shared: SKProcess = SKProcess()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKProcess' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | public static let label: String = "com.SystemKit.SKProcess"
36 | public static let identifier: String = "B275BF0C-3E1B-4897-B6CB-CA3DC7FFD3EB"
/Users/admin/builder/spi-builder-workspace/Sources/Process/SKProcess.swift:89:36: warning: assigning non-sendable parameter 'terminationHandler' to a @Sendable closure
81 | waitUntilExit: Bool = false,
82 | qualityOfService: QualityOfService = .default,
83 | terminationHandler: Optional<SKProcessTerminationHandler> = nil,
| `- note: parameter 'terminationHandler' is implicitly non-sendable
84 | errorCompletionHandler: Optional<SKProcessErrorResult> = nil) -> Int32 {
85 |
:
87 | process.launchPath = launchPath
88 | process.arguments = arguments
89 | process.terminationHandler = terminationHandler
| `- warning: assigning non-sendable parameter 'terminationHandler' to a @Sendable closure
90 | process.standardInput = standardInput
91 | process.standardOutput = standardOutput
/Users/admin/builder/spi-builder-workspace/Sources/Process/SKProcessMonitor.swift:31:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | // MARK: - Object Properties
31 | public static var label: String = "com.SystemKit.SKProcessMonitor"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | public static var identifier: String = "A4031B25-241F-4457-9DF4-B711D022C4EA"
33 |
/Users/admin/builder/spi-builder-workspace/Sources/Process/SKProcessMonitor.swift:32:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 | // MARK: - Object Properties
31 | public static var label: String = "com.SystemKit.SKProcessMonitor"
32 | public static var identifier: String = "A4031B25-241F-4457-9DF4-B711D022C4EA"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 | private var info: ProcessMonitorInfo
/Users/admin/builder/spi-builder-workspace/Sources/Process/SKProcessMonitor.swift:28:14: warning: class 'SKProcessMonitor' must restate inherited '@unchecked Sendable' conformance
26 | import CoreFoundation
27 |
28 | public class SKProcessMonitor: SKAsyncOperation {
| `- warning: class 'SKProcessMonitor' must restate inherited '@unchecked Sendable' conformance
29 |
30 | // MARK: - Object Properties
[116/130] Compiling SystemKit SKProcessMonitorDefine.swift
/Users/admin/builder/spi-builder-workspace/Sources/Process/SKProcess.swift:34:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKProcess' may have shared mutable state; this is an error in the Swift 6 language mode
25 |
26 | @available(macOS 10.12, *)
27 | public class SKProcess: NSObject, SKClass {
| `- note: class 'SKProcess' does not conform to the 'Sendable' protocol
28 |
29 | // MARK: - Typealias
:
32 |
33 | // MARK: - Object Properties
34 | public static let shared: SKProcess = SKProcess()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKProcess' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | public static let label: String = "com.SystemKit.SKProcess"
36 | public static let identifier: String = "B275BF0C-3E1B-4897-B6CB-CA3DC7FFD3EB"
/Users/admin/builder/spi-builder-workspace/Sources/Process/SKProcess.swift:89:36: warning: assigning non-sendable parameter 'terminationHandler' to a @Sendable closure
81 | waitUntilExit: Bool = false,
82 | qualityOfService: QualityOfService = .default,
83 | terminationHandler: Optional<SKProcessTerminationHandler> = nil,
| `- note: parameter 'terminationHandler' is implicitly non-sendable
84 | errorCompletionHandler: Optional<SKProcessErrorResult> = nil) -> Int32 {
85 |
:
87 | process.launchPath = launchPath
88 | process.arguments = arguments
89 | process.terminationHandler = terminationHandler
| `- warning: assigning non-sendable parameter 'terminationHandler' to a @Sendable closure
90 | process.standardInput = standardInput
91 | process.standardOutput = standardOutput
/Users/admin/builder/spi-builder-workspace/Sources/Process/SKProcessMonitor.swift:31:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | // MARK: - Object Properties
31 | public static var label: String = "com.SystemKit.SKProcessMonitor"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | public static var identifier: String = "A4031B25-241F-4457-9DF4-B711D022C4EA"
33 |
/Users/admin/builder/spi-builder-workspace/Sources/Process/SKProcessMonitor.swift:32:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 | // MARK: - Object Properties
31 | public static var label: String = "com.SystemKit.SKProcessMonitor"
32 | public static var identifier: String = "A4031B25-241F-4457-9DF4-B711D022C4EA"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 | private var info: ProcessMonitorInfo
/Users/admin/builder/spi-builder-workspace/Sources/Process/SKProcessMonitor.swift:28:14: warning: class 'SKProcessMonitor' must restate inherited '@unchecked Sendable' conformance
26 | import CoreFoundation
27 |
28 | public class SKProcessMonitor: SKAsyncOperation {
| `- warning: class 'SKProcessMonitor' must restate inherited '@unchecked Sendable' conformance
29 |
30 | // MARK: - Object Properties
[117/130] Compiling SystemKit SKClass+Protocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/Process/SKProcess.swift:34:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKProcess' may have shared mutable state; this is an error in the Swift 6 language mode
25 |
26 | @available(macOS 10.12, *)
27 | public class SKProcess: NSObject, SKClass {
| `- note: class 'SKProcess' does not conform to the 'Sendable' protocol
28 |
29 | // MARK: - Typealias
:
32 |
33 | // MARK: - Object Properties
34 | public static let shared: SKProcess = SKProcess()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKProcess' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | public static let label: String = "com.SystemKit.SKProcess"
36 | public static let identifier: String = "B275BF0C-3E1B-4897-B6CB-CA3DC7FFD3EB"
/Users/admin/builder/spi-builder-workspace/Sources/Process/SKProcess.swift:89:36: warning: assigning non-sendable parameter 'terminationHandler' to a @Sendable closure
81 | waitUntilExit: Bool = false,
82 | qualityOfService: QualityOfService = .default,
83 | terminationHandler: Optional<SKProcessTerminationHandler> = nil,
| `- note: parameter 'terminationHandler' is implicitly non-sendable
84 | errorCompletionHandler: Optional<SKProcessErrorResult> = nil) -> Int32 {
85 |
:
87 | process.launchPath = launchPath
88 | process.arguments = arguments
89 | process.terminationHandler = terminationHandler
| `- warning: assigning non-sendable parameter 'terminationHandler' to a @Sendable closure
90 | process.standardInput = standardInput
91 | process.standardOutput = standardOutput
/Users/admin/builder/spi-builder-workspace/Sources/Process/SKProcessMonitor.swift:31:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
29 |
30 | // MARK: - Object Properties
31 | public static var label: String = "com.SystemKit.SKProcessMonitor"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | public static var identifier: String = "A4031B25-241F-4457-9DF4-B711D022C4EA"
33 |
/Users/admin/builder/spi-builder-workspace/Sources/Process/SKProcessMonitor.swift:32:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 | // MARK: - Object Properties
31 | public static var label: String = "com.SystemKit.SKProcessMonitor"
32 | public static var identifier: String = "A4031B25-241F-4457-9DF4-B711D022C4EA"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 |
34 | private var info: ProcessMonitorInfo
/Users/admin/builder/spi-builder-workspace/Sources/Process/SKProcessMonitor.swift:28:14: warning: class 'SKProcessMonitor' must restate inherited '@unchecked Sendable' conformance
26 | import CoreFoundation
27 |
28 | public class SKProcessMonitor: SKAsyncOperation {
| `- warning: class 'SKProcessMonitor' must restate inherited '@unchecked Sendable' conformance
29 |
30 | // MARK: - Object Properties
[118/130] Compiling SystemKit SKDispatchFile.swift
/Users/admin/builder/spi-builder-workspace/Sources/Dispatch/SKDispatchFile.swift:34:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
32 |
33 | // MARK: - Object Properties
34 | public static var label: String = "com.SystemKit.SKDispatchFile"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | public static var identifier: String = "870EBBA7-3167-4147-BE3A-82E0C4A108A2"
36 |
/Users/admin/builder/spi-builder-workspace/Sources/Dispatch/SKDispatchFile.swift:35:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
33 | // MARK: - Object Properties
34 | public static var label: String = "com.SystemKit.SKDispatchFile"
35 | public static var identifier: String = "870EBBA7-3167-4147-BE3A-82E0C4A108A2"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | private let mode: mode_t
/Users/admin/builder/spi-builder-workspace/Sources/Dispatch/SKDispatchTimer.swift:32:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | // MARK: - Object Properties
32 | public static var label: String = "com.SystemKit.SKDispatchTimer"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | public static var identifier: String = "A42D0B47-D7B3-4A23-8F30-B3E51555471E"
34 |
/Users/admin/builder/spi-builder-workspace/Sources/Dispatch/SKDispatchTimer.swift:33:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | // MARK: - Object Properties
32 | public static var label: String = "com.SystemKit.SKDispatchTimer"
33 | public static var identifier: String = "A42D0B47-D7B3-4A23-8F30-B3E51555471E"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | private var interval = TimeInterval.zero
/Users/admin/builder/spi-builder-workspace/Sources/Dispatch/SKDispatchTimer.swift:79:54: warning: capture of 'handler' with non-sendable type 'SKDispatchTimer.SKDispatchTimerHandler' (aka '() -> ()') in a '@Sendable' closure
77 | final func withLock(_ handler: @escaping SKDispatchTimerHandler) {
78 |
79 | self.implementQueue.async(flags: .barrier) { handler() }
| |- warning: capture of 'handler' with non-sendable type 'SKDispatchTimer.SKDispatchTimerHandler' (aka '() -> ()') in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
80 | }
81 | }
[119/130] Compiling SystemKit SKDispatchFileMonitor+Define.swift
/Users/admin/builder/spi-builder-workspace/Sources/Dispatch/SKDispatchFile.swift:34:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
32 |
33 | // MARK: - Object Properties
34 | public static var label: String = "com.SystemKit.SKDispatchFile"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | public static var identifier: String = "870EBBA7-3167-4147-BE3A-82E0C4A108A2"
36 |
/Users/admin/builder/spi-builder-workspace/Sources/Dispatch/SKDispatchFile.swift:35:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
33 | // MARK: - Object Properties
34 | public static var label: String = "com.SystemKit.SKDispatchFile"
35 | public static var identifier: String = "870EBBA7-3167-4147-BE3A-82E0C4A108A2"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | private let mode: mode_t
/Users/admin/builder/spi-builder-workspace/Sources/Dispatch/SKDispatchTimer.swift:32:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | // MARK: - Object Properties
32 | public static var label: String = "com.SystemKit.SKDispatchTimer"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | public static var identifier: String = "A42D0B47-D7B3-4A23-8F30-B3E51555471E"
34 |
/Users/admin/builder/spi-builder-workspace/Sources/Dispatch/SKDispatchTimer.swift:33:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | // MARK: - Object Properties
32 | public static var label: String = "com.SystemKit.SKDispatchTimer"
33 | public static var identifier: String = "A42D0B47-D7B3-4A23-8F30-B3E51555471E"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | private var interval = TimeInterval.zero
/Users/admin/builder/spi-builder-workspace/Sources/Dispatch/SKDispatchTimer.swift:79:54: warning: capture of 'handler' with non-sendable type 'SKDispatchTimer.SKDispatchTimerHandler' (aka '() -> ()') in a '@Sendable' closure
77 | final func withLock(_ handler: @escaping SKDispatchTimerHandler) {
78 |
79 | self.implementQueue.async(flags: .barrier) { handler() }
| |- warning: capture of 'handler' with non-sendable type 'SKDispatchTimer.SKDispatchTimerHandler' (aka '() -> ()') in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
80 | }
81 | }
[120/130] Compiling SystemKit SKDispatchFileMonitor.swift
/Users/admin/builder/spi-builder-workspace/Sources/Dispatch/SKDispatchFile.swift:34:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
32 |
33 | // MARK: - Object Properties
34 | public static var label: String = "com.SystemKit.SKDispatchFile"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | public static var identifier: String = "870EBBA7-3167-4147-BE3A-82E0C4A108A2"
36 |
/Users/admin/builder/spi-builder-workspace/Sources/Dispatch/SKDispatchFile.swift:35:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
33 | // MARK: - Object Properties
34 | public static var label: String = "com.SystemKit.SKDispatchFile"
35 | public static var identifier: String = "870EBBA7-3167-4147-BE3A-82E0C4A108A2"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | private let mode: mode_t
/Users/admin/builder/spi-builder-workspace/Sources/Dispatch/SKDispatchTimer.swift:32:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | // MARK: - Object Properties
32 | public static var label: String = "com.SystemKit.SKDispatchTimer"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | public static var identifier: String = "A42D0B47-D7B3-4A23-8F30-B3E51555471E"
34 |
/Users/admin/builder/spi-builder-workspace/Sources/Dispatch/SKDispatchTimer.swift:33:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | // MARK: - Object Properties
32 | public static var label: String = "com.SystemKit.SKDispatchTimer"
33 | public static var identifier: String = "A42D0B47-D7B3-4A23-8F30-B3E51555471E"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | private var interval = TimeInterval.zero
/Users/admin/builder/spi-builder-workspace/Sources/Dispatch/SKDispatchTimer.swift:79:54: warning: capture of 'handler' with non-sendable type 'SKDispatchTimer.SKDispatchTimerHandler' (aka '() -> ()') in a '@Sendable' closure
77 | final func withLock(_ handler: @escaping SKDispatchTimerHandler) {
78 |
79 | self.implementQueue.async(flags: .barrier) { handler() }
| |- warning: capture of 'handler' with non-sendable type 'SKDispatchTimer.SKDispatchTimerHandler' (aka '() -> ()') in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
80 | }
81 | }
[121/130] Compiling SystemKit SKDispatchTimer+Define.swift
/Users/admin/builder/spi-builder-workspace/Sources/Dispatch/SKDispatchFile.swift:34:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
32 |
33 | // MARK: - Object Properties
34 | public static var label: String = "com.SystemKit.SKDispatchFile"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | public static var identifier: String = "870EBBA7-3167-4147-BE3A-82E0C4A108A2"
36 |
/Users/admin/builder/spi-builder-workspace/Sources/Dispatch/SKDispatchFile.swift:35:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
33 | // MARK: - Object Properties
34 | public static var label: String = "com.SystemKit.SKDispatchFile"
35 | public static var identifier: String = "870EBBA7-3167-4147-BE3A-82E0C4A108A2"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | private let mode: mode_t
/Users/admin/builder/spi-builder-workspace/Sources/Dispatch/SKDispatchTimer.swift:32:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | // MARK: - Object Properties
32 | public static var label: String = "com.SystemKit.SKDispatchTimer"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | public static var identifier: String = "A42D0B47-D7B3-4A23-8F30-B3E51555471E"
34 |
/Users/admin/builder/spi-builder-workspace/Sources/Dispatch/SKDispatchTimer.swift:33:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | // MARK: - Object Properties
32 | public static var label: String = "com.SystemKit.SKDispatchTimer"
33 | public static var identifier: String = "A42D0B47-D7B3-4A23-8F30-B3E51555471E"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | private var interval = TimeInterval.zero
/Users/admin/builder/spi-builder-workspace/Sources/Dispatch/SKDispatchTimer.swift:79:54: warning: capture of 'handler' with non-sendable type 'SKDispatchTimer.SKDispatchTimerHandler' (aka '() -> ()') in a '@Sendable' closure
77 | final func withLock(_ handler: @escaping SKDispatchTimerHandler) {
78 |
79 | self.implementQueue.async(flags: .barrier) { handler() }
| |- warning: capture of 'handler' with non-sendable type 'SKDispatchTimer.SKDispatchTimerHandler' (aka '() -> ()') in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
80 | }
81 | }
[122/130] Compiling SystemKit SKDispatchTimer.swift
/Users/admin/builder/spi-builder-workspace/Sources/Dispatch/SKDispatchFile.swift:34:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
32 |
33 | // MARK: - Object Properties
34 | public static var label: String = "com.SystemKit.SKDispatchFile"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | public static var identifier: String = "870EBBA7-3167-4147-BE3A-82E0C4A108A2"
36 |
/Users/admin/builder/spi-builder-workspace/Sources/Dispatch/SKDispatchFile.swift:35:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
33 | // MARK: - Object Properties
34 | public static var label: String = "com.SystemKit.SKDispatchFile"
35 | public static var identifier: String = "870EBBA7-3167-4147-BE3A-82E0C4A108A2"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
36 |
37 | private let mode: mode_t
/Users/admin/builder/spi-builder-workspace/Sources/Dispatch/SKDispatchTimer.swift:32:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
30 |
31 | // MARK: - Object Properties
32 | public static var label: String = "com.SystemKit.SKDispatchTimer"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
33 | public static var identifier: String = "A42D0B47-D7B3-4A23-8F30-B3E51555471E"
34 |
/Users/admin/builder/spi-builder-workspace/Sources/Dispatch/SKDispatchTimer.swift:33:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
31 | // MARK: - Object Properties
32 | public static var label: String = "com.SystemKit.SKDispatchTimer"
33 | public static var identifier: String = "A42D0B47-D7B3-4A23-8F30-B3E51555471E"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
34 |
35 | private var interval = TimeInterval.zero
/Users/admin/builder/spi-builder-workspace/Sources/Dispatch/SKDispatchTimer.swift:79:54: warning: capture of 'handler' with non-sendable type 'SKDispatchTimer.SKDispatchTimerHandler' (aka '() -> ()') in a '@Sendable' closure
77 | final func withLock(_ handler: @escaping SKDispatchTimerHandler) {
78 |
79 | self.implementQueue.async(flags: .barrier) { handler() }
| |- warning: capture of 'handler' with non-sendable type 'SKDispatchTimer.SKDispatchTimerHandler' (aka '() -> ()') in a '@Sendable' closure
| `- note: a function type must be marked '@Sendable' to conform to 'Sendable'
80 | }
81 | }
[123/130] Compiling SystemKit SKFileLock.swift
/Users/admin/builder/spi-builder-workspace/Sources/SKFileLock.swift:43:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
41 |
42 | // MARK: - Object Properties
43 | public static var label = "com.SystemKit.SKFileLock"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 | public static var identifier = "7777529A-98A3-4E43-A3AA-AAFBE437BC3F"
45 |
/Users/admin/builder/spi-builder-workspace/Sources/SKFileLock.swift:44:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
42 | // MARK: - Object Properties
43 | public static var label = "com.SystemKit.SKFileLock"
44 | public static var identifier = "7777529A-98A3-4E43-A3AA-AAFBE437BC3F"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | private let filePath: String
/Users/admin/builder/spi-builder-workspace/Sources/SKFinderExtension.swift:34:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKFinderExtension' may have shared mutable state; this is an error in the Swift 6 language mode
29 | - Authors: `ChangYeop-Yang`
30 | */
31 | public class SKFinderExtension: NSObject, SKClass {
| `- note: class 'SKFinderExtension' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Object Properties
34 | public static let shared: SKFinderExtension = SKFinderExtension()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKFinderExtension' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | public static let label: String = "com.SystemKit.SKFinderExtension"
36 | public static let identifier: String = "18EF2C59-D9A8-4908-8898-1E64C6E116BF"
/Users/admin/builder/spi-builder-workspace/Sources/SKSignal.swift:40:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 |
39 | // MARK: - Object Properties
40 | public static var label: String = "com.SystemKit.SKSignal"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | public static var identifier: String = "45F971FC-B05F-4CF5-9927-AD793F461718"
42 |
/Users/admin/builder/spi-builder-workspace/Sources/SKSignal.swift:41:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
39 | // MARK: - Object Properties
40 | public static var label: String = "com.SystemKit.SKSignal"
41 | public static var identifier: String = "45F971FC-B05F-4CF5-9927-AD793F461718"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | private let result: SKSignalResult
/Users/admin/builder/spi-builder-workspace/Sources/SKSignal.swift:33:14: warning: class 'SKSignal' must restate inherited '@unchecked Sendable' conformance
31 | - Authors: `ChangYeop-Yang`
32 | */
33 | public class SKSignal: SKAsyncOperation {
| `- warning: class 'SKSignal' must restate inherited '@unchecked Sendable' conformance
34 |
35 | // MARK: - Typealias
[124/130] Compiling SystemKit SKFinderExtension.swift
/Users/admin/builder/spi-builder-workspace/Sources/SKFileLock.swift:43:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
41 |
42 | // MARK: - Object Properties
43 | public static var label = "com.SystemKit.SKFileLock"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 | public static var identifier = "7777529A-98A3-4E43-A3AA-AAFBE437BC3F"
45 |
/Users/admin/builder/spi-builder-workspace/Sources/SKFileLock.swift:44:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
42 | // MARK: - Object Properties
43 | public static var label = "com.SystemKit.SKFileLock"
44 | public static var identifier = "7777529A-98A3-4E43-A3AA-AAFBE437BC3F"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | private let filePath: String
/Users/admin/builder/spi-builder-workspace/Sources/SKFinderExtension.swift:34:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKFinderExtension' may have shared mutable state; this is an error in the Swift 6 language mode
29 | - Authors: `ChangYeop-Yang`
30 | */
31 | public class SKFinderExtension: NSObject, SKClass {
| `- note: class 'SKFinderExtension' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Object Properties
34 | public static let shared: SKFinderExtension = SKFinderExtension()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKFinderExtension' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | public static let label: String = "com.SystemKit.SKFinderExtension"
36 | public static let identifier: String = "18EF2C59-D9A8-4908-8898-1E64C6E116BF"
/Users/admin/builder/spi-builder-workspace/Sources/SKSignal.swift:40:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 |
39 | // MARK: - Object Properties
40 | public static var label: String = "com.SystemKit.SKSignal"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | public static var identifier: String = "45F971FC-B05F-4CF5-9927-AD793F461718"
42 |
/Users/admin/builder/spi-builder-workspace/Sources/SKSignal.swift:41:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
39 | // MARK: - Object Properties
40 | public static var label: String = "com.SystemKit.SKSignal"
41 | public static var identifier: String = "45F971FC-B05F-4CF5-9927-AD793F461718"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | private let result: SKSignalResult
/Users/admin/builder/spi-builder-workspace/Sources/SKSignal.swift:33:14: warning: class 'SKSignal' must restate inherited '@unchecked Sendable' conformance
31 | - Authors: `ChangYeop-Yang`
32 | */
33 | public class SKSignal: SKAsyncOperation {
| `- warning: class 'SKSignal' must restate inherited '@unchecked Sendable' conformance
34 |
35 | // MARK: - Typealias
[125/130] Compiling SystemKit SKSignal.swift
/Users/admin/builder/spi-builder-workspace/Sources/SKFileLock.swift:43:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
41 |
42 | // MARK: - Object Properties
43 | public static var label = "com.SystemKit.SKFileLock"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 | public static var identifier = "7777529A-98A3-4E43-A3AA-AAFBE437BC3F"
45 |
/Users/admin/builder/spi-builder-workspace/Sources/SKFileLock.swift:44:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
42 | // MARK: - Object Properties
43 | public static var label = "com.SystemKit.SKFileLock"
44 | public static var identifier = "7777529A-98A3-4E43-A3AA-AAFBE437BC3F"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | private let filePath: String
/Users/admin/builder/spi-builder-workspace/Sources/SKFinderExtension.swift:34:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKFinderExtension' may have shared mutable state; this is an error in the Swift 6 language mode
29 | - Authors: `ChangYeop-Yang`
30 | */
31 | public class SKFinderExtension: NSObject, SKClass {
| `- note: class 'SKFinderExtension' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Object Properties
34 | public static let shared: SKFinderExtension = SKFinderExtension()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKFinderExtension' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | public static let label: String = "com.SystemKit.SKFinderExtension"
36 | public static let identifier: String = "18EF2C59-D9A8-4908-8898-1E64C6E116BF"
/Users/admin/builder/spi-builder-workspace/Sources/SKSignal.swift:40:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 |
39 | // MARK: - Object Properties
40 | public static var label: String = "com.SystemKit.SKSignal"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | public static var identifier: String = "45F971FC-B05F-4CF5-9927-AD793F461718"
42 |
/Users/admin/builder/spi-builder-workspace/Sources/SKSignal.swift:41:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
39 | // MARK: - Object Properties
40 | public static var label: String = "com.SystemKit.SKSignal"
41 | public static var identifier: String = "45F971FC-B05F-4CF5-9927-AD793F461718"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | private let result: SKSignalResult
/Users/admin/builder/spi-builder-workspace/Sources/SKSignal.swift:33:14: warning: class 'SKSignal' must restate inherited '@unchecked Sendable' conformance
31 | - Authors: `ChangYeop-Yang`
32 | */
33 | public class SKSignal: SKAsyncOperation {
| `- warning: class 'SKSignal' must restate inherited '@unchecked Sendable' conformance
34 |
35 | // MARK: - Typealias
[126/130] Compiling SystemKit SKUserDefault.swift
/Users/admin/builder/spi-builder-workspace/Sources/SKFileLock.swift:43:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
41 |
42 | // MARK: - Object Properties
43 | public static var label = "com.SystemKit.SKFileLock"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
44 | public static var identifier = "7777529A-98A3-4E43-A3AA-AAFBE437BC3F"
45 |
/Users/admin/builder/spi-builder-workspace/Sources/SKFileLock.swift:44:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
42 | // MARK: - Object Properties
43 | public static var label = "com.SystemKit.SKFileLock"
44 | public static var identifier = "7777529A-98A3-4E43-A3AA-AAFBE437BC3F"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
45 |
46 | private let filePath: String
/Users/admin/builder/spi-builder-workspace/Sources/SKFinderExtension.swift:34:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKFinderExtension' may have shared mutable state; this is an error in the Swift 6 language mode
29 | - Authors: `ChangYeop-Yang`
30 | */
31 | public class SKFinderExtension: NSObject, SKClass {
| `- note: class 'SKFinderExtension' does not conform to the 'Sendable' protocol
32 |
33 | // MARK: - Object Properties
34 | public static let shared: SKFinderExtension = SKFinderExtension()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKFinderExtension' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
35 | public static let label: String = "com.SystemKit.SKFinderExtension"
36 | public static let identifier: String = "18EF2C59-D9A8-4908-8898-1E64C6E116BF"
/Users/admin/builder/spi-builder-workspace/Sources/SKSignal.swift:40:23: warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
38 |
39 | // MARK: - Object Properties
40 | public static var label: String = "com.SystemKit.SKSignal"
| |- warning: static property 'label' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'label' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'label' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
41 | public static var identifier: String = "45F971FC-B05F-4CF5-9927-AD793F461718"
42 |
/Users/admin/builder/spi-builder-workspace/Sources/SKSignal.swift:41:23: warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
39 | // MARK: - Object Properties
40 | public static var label: String = "com.SystemKit.SKSignal"
41 | public static var identifier: String = "45F971FC-B05F-4CF5-9927-AD793F461718"
| |- warning: static property 'identifier' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'identifier' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'identifier' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
42 |
43 | private let result: SKSignalResult
/Users/admin/builder/spi-builder-workspace/Sources/SKSignal.swift:33:14: warning: class 'SKSignal' must restate inherited '@unchecked Sendable' conformance
31 | - Authors: `ChangYeop-Yang`
32 | */
33 | public class SKSignal: SKAsyncOperation {
| `- warning: class 'SKSignal' must restate inherited '@unchecked Sendable' conformance
34 |
35 | // MARK: - Typealias
[127/130] Compiling SystemKit SKSystem+iOS.swift
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystem.swift:31:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKSystem' may have shared mutable state; this is an error in the Swift 6 language mode
26 | import SystemConfiguration
27 |
28 | public class SKSystem: NSObject, SKClass {
| `- note: class 'SKSystem' does not conform to the 'Sendable' protocol
29 |
30 | // MARK: - Object Properties
31 | public static let shared: SKSystem = SKSystem()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKSystem' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | public static let label: String = "com.SystemKit.SKSystem"
33 | public static let identifier: String = "1735CFB1-19CC-4581-8CB7-F2DC3E16C678"
[128/130] Compiling SystemKit SKSystem+macOS.swift
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystem.swift:31:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKSystem' may have shared mutable state; this is an error in the Swift 6 language mode
26 | import SystemConfiguration
27 |
28 | public class SKSystem: NSObject, SKClass {
| `- note: class 'SKSystem' does not conform to the 'Sendable' protocol
29 |
30 | // MARK: - Object Properties
31 | public static let shared: SKSystem = SKSystem()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKSystem' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | public static let label: String = "com.SystemKit.SKSystem"
33 | public static let identifier: String = "1735CFB1-19CC-4581-8CB7-F2DC3E16C678"
[129/130] Compiling SystemKit SKSystem.swift
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystem.swift:31:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKSystem' may have shared mutable state; this is an error in the Swift 6 language mode
26 | import SystemConfiguration
27 |
28 | public class SKSystem: NSObject, SKClass {
| `- note: class 'SKSystem' does not conform to the 'Sendable' protocol
29 |
30 | // MARK: - Object Properties
31 | public static let shared: SKSystem = SKSystem()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKSystem' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | public static let label: String = "com.SystemKit.SKSystem"
33 | public static let identifier: String = "1735CFB1-19CC-4581-8CB7-F2DC3E16C678"
[130/130] Compiling SystemKit SKSystemDefine.swift
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystem.swift:31:23: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKSystem' may have shared mutable state; this is an error in the Swift 6 language mode
26 | import SystemConfiguration
27 |
28 | public class SKSystem: NSObject, SKClass {
| `- note: class 'SKSystem' does not conform to the 'Sendable' protocol
29 |
30 | // MARK: - Object Properties
31 | public static let shared: SKSystem = SKSystem()
| |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'SKSystem' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
32 | public static let label: String = "com.SystemKit.SKSystem"
33 | public static let identifier: String = "1735CFB1-19CC-4581-8CB7-F2DC3E16C678"
Build complete! (19.18s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-log",
"requirement" : {
"range" : [
{
"lower_bound" : "1.6.1",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-log.git"
},
{
"identity" : "swift-http-types",
"requirement" : {
"range" : [
{
"lower_bound" : "1.3.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-http-types.git"
},
{
"identity" : "plcrashreporter",
"requirement" : {
"range" : [
{
"lower_bound" : "1.11.2",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/microsoft/plcrashreporter.git"
},
{
"identity" : "swift-docc-plugin",
"requirement" : {
"range" : [
{
"lower_bound" : "1.3.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-docc-plugin.git"
}
],
"manifest_display_name" : "SystemKit",
"name" : "SystemKit",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "ios",
"version" : "13.0"
}
],
"products" : [
{
"name" : "SystemKit",
"targets" : [
"SystemKit"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "SystemKit_Objc",
"targets" : [
"SystemKit_Objc"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "SystemKit_Objc",
"module_type" : "ClangTarget",
"name" : "SystemKit_Objc",
"path" : "ObjcSources",
"product_memberships" : [
"SystemKit_Objc"
],
"sources" : [
"Cryptor/SKSecurity.mm"
],
"type" : "library"
},
{
"c99name" : "SystemKit",
"module_type" : "SwiftTarget",
"name" : "SystemKit",
"path" : "Sources",
"product_dependencies" : [
"Logging",
"HTTPTypes",
"CrashReporter"
],
"product_memberships" : [
"SystemKit"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/PrivacyInfo.xcprivacy",
"rule" : {
"process" : {
}
}
}
],
"sources" : [
"Common/SKData+Extension.swift",
"Common/SKDouble+Extension.swift",
"Common/SKString+Extension.swift",
"Communication/SKMessagePort+Define.swift",
"Communication/SKMessagePort.swift",
"Dispatch/SKDispatchFile.swift",
"Dispatch/SKDispatchFileMonitor+Define.swift",
"Dispatch/SKDispatchFileMonitor.swift",
"Dispatch/SKDispatchTimer+Define.swift",
"Dispatch/SKDispatchTimer.swift",
"IO/SKIOBattery.swift",
"IO/SKIOProcess.swift",
"IO/SKIOResult.swift",
"IO/SKIOReturn.swift",
"IO/SKIOSystem.swift",
"Network/SKNetworkInterface.swift",
"Network/SKNetworkInterfaceDefine.swift",
"Network/SKNetworkMonitor.swift",
"Network/SKNetworkMonitorDefine.swift",
"Permission/SKPermissionDefine.swift",
"Permission/SKPreferencePaneDefine.swift",
"Process/SKProcess.swift",
"Process/SKProcessMonitor.swift",
"Process/SKProcessMonitorDefine.swift",
"Protocol/SKClass+Protocol.swift",
"Protocol/SKOperation+Protocol.swift",
"SKAsyncOperation.swift",
"SKAtomicValue.swift",
"SKCrashReporter.swift",
"SKFileLock.swift",
"SKFinderExtension.swift",
"SKSignal.swift",
"SKUserDefault.swift",
"System/SKSystem+iOS.swift",
"System/SKSystem+macOS.swift",
"System/SKSystem.swift",
"System/SKSystemDefine.swift",
"System/SKSystemProcessResource+Additions.swift",
"System/SKSystemProcessResource+Define.swift",
"System/SKSystemProcessResource.swift",
"System/SKSystemResource+Additions.swift",
"System/SKSystemResource+Define.swift",
"System/SKSystemResource.swift",
"SystemKit.swift"
],
"type" : "library"
}
],
"tools_version" : "5.4"
}
✅ Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path: $PWD/.docs/changyeop-yang/universal-systemkit/main
Repository: ChangYeop-Yang/Universal-SystemKit
Swift version used: 6.1
/// 🌎 [Swift-docc-plugin - GitHub](https://github.com/apple/swift-docc-plugin)
return "https://github.com/apple/swift-docc-plugin.git"
// https://github.com/apple/swift-docc-plugin/releases/tag/1.3.0
Target: SystemKit
Extracting symbol information for 'SystemKit'...
Finished extracting symbol information for 'SystemKit'. (5.53s)
Building documentation for 'SystemKit'...
warning: Parameter 'sysname' not found in type method declaration
--> Sources/IO/SKIOSystem.swift:273:13-273:68
271 |
272 | - Parameters:
273 + - sysname: Name of the operating system implementation.
| ╰─suggestion: Remove 'sysname' parameter documentation
274 | - nodename: Network name of this machine.
275 | - release: Release level of the operating system.
warning: Parameter 'nodename' not found in type method declaration
--> Sources/IO/SKIOSystem.swift:274:13-274:54
272 | - Parameters:
273 | - sysname: Name of the operating system implementation.
274 + - nodename: Network name of this machine.
| ╰─suggestion: Remove 'nodename' parameter documentation
275 | - release: Release level of the operating system.
276 | - version: Version level of the operating system.
warning: Parameter 'release' not found in type method declaration
--> Sources/IO/SKIOSystem.swift:275:13-275:62
273 | - sysname: Name of the operating system implementation.
274 | - nodename: Network name of this machine.
275 + - release: Release level of the operating system.
| ╰─suggestion: Remove 'release' parameter documentation
276 | - version: Version level of the operating system.
277 | - machine: Machine hardware platform.
warning: Parameter 'version' not found in type method declaration
--> Sources/IO/SKIOSystem.swift:276:13-276:62
274 | - nodename: Network name of this machine.
275 | - release: Release level of the operating system.
276 + - version: Version level of the operating system.
| ╰─suggestion: Remove 'version' parameter documentation
277 | - machine: Machine hardware platform.
278 | */
warning: Parameter 'machine' not found in type method declaration
--> Sources/IO/SKIOSystem.swift:277:13-277:50
275 | - release: Release level of the operating system.
276 | - version: Version level of the operating system.
277 + - machine: Machine hardware platform.
| ╰─suggestion: Remove 'machine' parameter documentation
278 | */
279 | static func uname() -> (sysname: String, nodename: String, release: String, version: String, machine: String) {
warning: Parameter 'processorSpeed' not found in type method declaration
--> Sources/IO/SKIOSystem.swift:414:13-414:142
412 |
413 | - Parameters:
414 + - processorSpeed: Defines the speed & voltage limits placed on the CPU. Represented as a percentage (0-100) of maximum CPU speed.
| ╰─suggestion: Remove 'processorSpeed' parameter documentation
415 | - processorCount: Reflects how many, if any, CPUs have been taken offline. Represented as an integer number of CPUs (0 - Max CPUs).
416 | - schedulerTime: Represents the percentage (0-100) of CPU time available. 100% at normal operation. The OS may limit this time for a percentage less than 100%.
warning: Parameter 'processorCount' not found in type method declaration
--> Sources/IO/SKIOSystem.swift:415:13-415:144
413 | - Parameters:
414 | - processorSpeed: Defines the speed & voltage limits placed on the CPU. Represented as a percentage (0-100) of maximum CPU speed.
415 + - processorCount: Reflects how many, if any, CPUs have been taken offline. Represented as an integer number of CPUs (0 - Max CPUs).
| ╰─suggestion: Remove 'processorCount' parameter documentation
416 | - schedulerTime: Represents the percentage (0-100) of CPU time available. 100% at normal operation. The OS may limit this time for a percentage less than 100%.
417 | - NOTE: This doesn't sound quite correct, as pmset treats it as the number of CPUs available, NOT taken offline. The return value suggests the same.
warning: Parameter 'schedulerTime' not found in type method declaration
--> Sources/IO/SKIOSystem.swift:416:13-416:173
414 | - processorSpeed: Defines the speed & voltage limits placed on the CPU. Represented as a percentage (0-100) of maximum CPU speed.
415 | - processorCount: Reflects how many, if any, CPUs have been taken offline. Represented as an integer number of CPUs (0 - Max CPUs).
416 + - schedulerTime: Represents the percentage (0-100) of CPU time available. 100% at normal operation. The OS may limit this time for a percentage less than 100%.
| ╰─suggestion: Remove 'schedulerTime' parameter documentation
417 | - NOTE: This doesn't sound quite correct, as pmset treats it as the number of CPUs available, NOT taken offline. The return value suggests the same.
418 | */
warning: Return value documented for instance method returning void
--> Sources/System/SKSystem+macOS.swift:302:9-302:26
300 | - service: `SKPermissionServiceName` 입력받는 변수
301 | - bundlePath: Application Bundle Path를 입력받는 변수
302 + - Returns: `Bool`
| ╰─suggestion: Remove return value documentation
303 | */
304 | @available(macOS 10.12, *)
warning: External name 'ofPath' used to document parameter
--> Sources/System/SKSystem+macOS.swift:315:15-315:21
313 |
314 | - Parameters:
315 + - ofPath: 코드 서명 (Code Signing) 검증 작업을 수행 할 파일 경로를 입력받는 변수
| ╰─suggestion: Replace 'ofPath' with 'filePath'
316 | - Returns: `Bool`
317 | */
Finished building documentation for 'SystemKit' (0.42s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/changyeop-yang/universal-systemkit/main
Building for debugging...
[0/8] Write sources
[1/8] Write snippet-extract-tool-entitlement.plist
[1/8] Write sources
[4/8] Write swift-version-2F0A5646E1D333AE.txt
[6/53] Compiling SymbolKit Relationship.swift
[7/53] Compiling SymbolKit RelationshipKind.swift
[8/53] Compiling SymbolKit SourceOrigin.swift
[9/53] Compiling SymbolKit GenericConstraints.swift
[10/53] Compiling SymbolKit Swift.swift
[11/57] Compiling SymbolKit SemanticVersion.swift
[12/57] Compiling SymbolKit AccessControl.swift
[13/57] Compiling SymbolKit Availability.swift
[14/57] Compiling SymbolKit AvailabilityItem.swift
[15/57] Compiling SymbolKit Domain.swift
[16/57] Compiling SymbolKit GenericConstraint.swift
[17/57] Compiling SymbolKit GenericParameter.swift
[18/57] Compiling SymbolKit Generics.swift
[19/57] Compiling SymbolKit Namespace.swift
[20/57] Compiling SymbolKit Names.swift
[21/57] Compiling SymbolKit SPI.swift
[22/57] Compiling SymbolKit Snippet.swift
[23/57] Compiling SymbolKit Extension.swift
[24/57] Compiling SymbolKit DeclarationFragments.swift
[25/57] Compiling SymbolKit Fragment.swift
[26/57] Compiling SymbolKit FragmentKind.swift
[27/57] Compiling SymbolKit FunctionParameter.swift
[28/57] Compiling SymbolKit FunctionSignature.swift
[29/57] Compiling SymbolKit Mixin+Equals.swift
[30/57] Compiling SymbolKit Mixin+Hash.swift
[31/57] Compiling SymbolKit Mixin.swift
[32/57] Compiling SymbolKit LineList.swift
[33/57] Compiling SymbolKit Position.swift
[34/57] Compiling SymbolKit SourceRange.swift
[35/57] Compiling SymbolKit Metadata.swift
[36/57] Compiling SymbolKit Module.swift
[37/57] Compiling SymbolKit OperatingSystem.swift
[38/57] Compiling SymbolKit Platform.swift
[39/57] Emitting module SymbolKit
[40/57] Compiling SymbolKit Identifier.swift
[41/57] Compiling SymbolKit KindIdentifier.swift
[42/57] Compiling SymbolKit Location.swift
[43/57] Compiling SymbolKit Mutability.swift
[44/57] Compiling SymbolKit Symbol.swift
[45/57] Compiling SymbolKit SymbolKind.swift
[46/57] Compiling SymbolKit SymbolGraph.swift
[47/57] Compiling SymbolKit GraphCollector.swift
[48/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[49/57] Compiling SymbolKit UnifiedSymbol.swift
[50/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[51/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[52/57] Compiling Snippets SnippetParser.swift
[53/57] Emitting module Snippets
[54/57] Compiling Snippets Snippet.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Emitting module snippet_extract
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (3.82s)
Building for debugging...
[0/1] Write swift-version-2F0A5646E1D333AE.txt
[2/15] Compiling HTTPTypes NIOLock.swift
[3/15] Compiling HTTPTypes ISOLatin1String.swift
[4/15] Emitting module HTTPTypes
[5/15] Compiling HTTPTypes HTTPField.swift
[6/15] Compiling HTTPTypes HTTPRequest.swift
[7/15] Compiling HTTPTypes HTTPResponse.swift
[8/15] Compiling HTTPTypes HTTPParsedFields.swift
[9/15] Compiling HTTPTypes HTTPFieldName.swift
[10/15] Compiling HTTPTypes HTTPFields.swift
[11/15] Compiling Logging MetadataProvider.swift
[12/15] Compiling Logging LogHandler.swift
[13/15] Compiling Logging Logging.swift
[14/15] Compiling Logging Locks.swift
[15/15] Emitting module Logging
[16/57] Compiling SystemKit SKData+Extension.swift
[17/57] Compiling SystemKit SKDouble+Extension.swift
[18/57] Compiling SystemKit SKString+Extension.swift
[19/57] Compiling SystemKit SKMessagePort+Define.swift
[20/57] Compiling SystemKit SKMessagePort.swift
[21/61] Compiling SystemKit SKOperation+Protocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/SKAsyncOperation.swift:26:12: warning: class 'SKAsyncOperation' must restate inherited '@unchecked Sendable' conformance
24 | import Foundation
25 |
26 | open class SKAsyncOperation: Operation {
| `- warning: class 'SKAsyncOperation' must restate inherited '@unchecked Sendable' conformance
27 |
28 | // MARK: - Enum
[22/61] Compiling SystemKit SKAsyncOperation.swift
/Users/admin/builder/spi-builder-workspace/Sources/SKAsyncOperation.swift:26:12: warning: class 'SKAsyncOperation' must restate inherited '@unchecked Sendable' conformance
24 | import Foundation
25 |
26 | open class SKAsyncOperation: Operation {
| `- warning: class 'SKAsyncOperation' must restate inherited '@unchecked Sendable' conformance
27 |
28 | // MARK: - Enum
[23/61] Compiling SystemKit SKAtomicValue.swift
/Users/admin/builder/spi-builder-workspace/Sources/SKAsyncOperation.swift:26:12: warning: class 'SKAsyncOperation' must restate inherited '@unchecked Sendable' conformance
24 | import Foundation
25 |
26 | open class SKAsyncOperation: Operation {
| `- warning: class 'SKAsyncOperation' must restate inherited '@unchecked Sendable' conformance
27 |
28 | // MARK: - Enum
[24/61] Compiling SystemKit SKCrashReporter.swift
/Users/admin/builder/spi-builder-workspace/Sources/SKAsyncOperation.swift:26:12: warning: class 'SKAsyncOperation' must restate inherited '@unchecked Sendable' conformance
24 | import Foundation
25 |
26 | open class SKAsyncOperation: Operation {
| `- warning: class 'SKAsyncOperation' must restate inherited '@unchecked Sendable' conformance
27 |
28 | // MARK: - Enum
[25/61] Compiling SystemKit SKSystemProcessResource+Additions.swift
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemResource+Additions.swift:80:17: warning: initialization of immutable value 'totalSpaceGB' was never used; consider replacing with assignment to '_' or removing it
78 | guard let freeSpace = attributes[FileAttributeKey.systemFreeSize] as? NSNumber else { return nil }
79 |
80 | let totalSpaceGB = ByteCountFormatter.string(fromByteCount: totalSpace.int64Value,
| `- warning: initialization of immutable value 'totalSpaceGB' was never used; consider replacing with assignment to '_' or removing it
81 | countStyle: .decimal)
82 | let freeSpaceGB = ByteCountFormatter.string(fromByteCount: freeSpace.int64Value,
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemResource+Additions.swift:82:17: warning: initialization of immutable value 'freeSpaceGB' was never used; consider replacing with assignment to '_' or removing it
80 | let totalSpaceGB = ByteCountFormatter.string(fromByteCount: totalSpace.int64Value,
81 | countStyle: .decimal)
82 | let freeSpaceGB = ByteCountFormatter.string(fromByteCount: freeSpace.int64Value,
| `- warning: initialization of immutable value 'freeSpaceGB' was never used; consider replacing with assignment to '_' or removing it
83 | countStyle: .decimal)
84 | let usedSpaceGB = ByteCountFormatter.string(fromByteCount: totalSpace.int64Value - freeSpace.int64Value,
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemResource+Additions.swift:84:17: warning: initialization of immutable value 'usedSpaceGB' was never used; consider replacing with assignment to '_' or removing it
82 | let freeSpaceGB = ByteCountFormatter.string(fromByteCount: freeSpace.int64Value,
83 | countStyle: .decimal)
84 | let usedSpaceGB = ByteCountFormatter.string(fromByteCount: totalSpace.int64Value - freeSpace.int64Value,
| `- warning: initialization of immutable value 'usedSpaceGB' was never used; consider replacing with assignment to '_' or removing it
85 | countStyle: .decimal)
86 |
[26/61] Compiling SystemKit SKSystemProcessResource+Define.swift
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemResource+Additions.swift:80:17: warning: initialization of immutable value 'totalSpaceGB' was never used; consider replacing with assignment to '_' or removing it
78 | guard let freeSpace = attributes[FileAttributeKey.systemFreeSize] as? NSNumber else { return nil }
79 |
80 | let totalSpaceGB = ByteCountFormatter.string(fromByteCount: totalSpace.int64Value,
| `- warning: initialization of immutable value 'totalSpaceGB' was never used; consider replacing with assignment to '_' or removing it
81 | countStyle: .decimal)
82 | let freeSpaceGB = ByteCountFormatter.string(fromByteCount: freeSpace.int64Value,
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemResource+Additions.swift:82:17: warning: initialization of immutable value 'freeSpaceGB' was never used; consider replacing with assignment to '_' or removing it
80 | let totalSpaceGB = ByteCountFormatter.string(fromByteCount: totalSpace.int64Value,
81 | countStyle: .decimal)
82 | let freeSpaceGB = ByteCountFormatter.string(fromByteCount: freeSpace.int64Value,
| `- warning: initialization of immutable value 'freeSpaceGB' was never used; consider replacing with assignment to '_' or removing it
83 | countStyle: .decimal)
84 | let usedSpaceGB = ByteCountFormatter.string(fromByteCount: totalSpace.int64Value - freeSpace.int64Value,
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemResource+Additions.swift:84:17: warning: initialization of immutable value 'usedSpaceGB' was never used; consider replacing with assignment to '_' or removing it
82 | let freeSpaceGB = ByteCountFormatter.string(fromByteCount: freeSpace.int64Value,
83 | countStyle: .decimal)
84 | let usedSpaceGB = ByteCountFormatter.string(fromByteCount: totalSpace.int64Value - freeSpace.int64Value,
| `- warning: initialization of immutable value 'usedSpaceGB' was never used; consider replacing with assignment to '_' or removing it
85 | countStyle: .decimal)
86 |
[27/61] Compiling SystemKit SKSystemProcessResource.swift
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemResource+Additions.swift:80:17: warning: initialization of immutable value 'totalSpaceGB' was never used; consider replacing with assignment to '_' or removing it
78 | guard let freeSpace = attributes[FileAttributeKey.systemFreeSize] as? NSNumber else { return nil }
79 |
80 | let totalSpaceGB = ByteCountFormatter.string(fromByteCount: totalSpace.int64Value,
| `- warning: initialization of immutable value 'totalSpaceGB' was never used; consider replacing with assignment to '_' or removing it
81 | countStyle: .decimal)
82 | let freeSpaceGB = ByteCountFormatter.string(fromByteCount: freeSpace.int64Value,
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemResource+Additions.swift:82:17: warning: initialization of immutable value 'freeSpaceGB' was never used; consider replacing with assignment to '_' or removing it
80 | let totalSpaceGB = ByteCountFormatter.string(fromByteCount: totalSpace.int64Value,
81 | countStyle: .decimal)
82 | let freeSpaceGB = ByteCountFormatter.string(fromByteCount: freeSpace.int64Value,
| `- warning: initialization of immutable value 'freeSpaceGB' was never used; consider replacing with assignment to '_' or removing it
83 | countStyle: .decimal)
84 | let usedSpaceGB = ByteCountFormatter.string(fromByteCount: totalSpace.int64Value - freeSpace.int64Value,
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemResource+Additions.swift:84:17: warning: initialization of immutable value 'usedSpaceGB' was never used; consider replacing with assignment to '_' or removing it
82 | let freeSpaceGB = ByteCountFormatter.string(fromByteCount: freeSpace.int64Value,
83 | countStyle: .decimal)
84 | let usedSpaceGB = ByteCountFormatter.string(fromByteCount: totalSpace.int64Value - freeSpace.int64Value,
| `- warning: initialization of immutable value 'usedSpaceGB' was never used; consider replacing with assignment to '_' or removing it
85 | countStyle: .decimal)
86 |
[28/61] Compiling SystemKit SKSystemResource+Additions.swift
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemResource+Additions.swift:80:17: warning: initialization of immutable value 'totalSpaceGB' was never used; consider replacing with assignment to '_' or removing it
78 | guard let freeSpace = attributes[FileAttributeKey.systemFreeSize] as? NSNumber else { return nil }
79 |
80 | let totalSpaceGB = ByteCountFormatter.string(fromByteCount: totalSpace.int64Value,
| `- warning: initialization of immutable value 'totalSpaceGB' was never used; consider replacing with assignment to '_' or removing it
81 | countStyle: .decimal)
82 | let freeSpaceGB = ByteCountFormatter.string(fromByteCount: freeSpace.int64Value,
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemResource+Additions.swift:82:17: warning: initialization of immutable value 'freeSpaceGB' was never used; consider replacing with assignment to '_' or removing it
80 | let totalSpaceGB = ByteCountFormatter.string(fromByteCount: totalSpace.int64Value,
81 | countStyle: .decimal)
82 | let freeSpaceGB = ByteCountFormatter.string(fromByteCount: freeSpace.int64Value,
| `- warning: initialization of immutable value 'freeSpaceGB' was never used; consider replacing with assignment to '_' or removing it
83 | countStyle: .decimal)
84 | let usedSpaceGB = ByteCountFormatter.string(fromByteCount: totalSpace.int64Value - freeSpace.int64Value,
/Users/admin/builder/spi-builder-workspace/Sources/System/SKSystemResource+Additions.swift:84:17: warning: initialization of immutable value 'usedSpaceGB' was never used; consider replacing with assignment to '_' or removing it
82 | let freeSpaceGB = ByteCountFormatter.string(fromByteCount: freeSpace.int64Value,
83 | countStyle: .decimal)
84 | let usedSpaceGB = ByteCountFormatter.string(fromByteCount: totalSpace.int64Value - freeSpace.int64Value,
| `- warning: initialization of immutable value 'usedSpaceGB' was never used; consider replacing with assignment to '_' or removing it
85 | countStyle: .decimal)
86 |
[29/61] Emitting module SystemKit
/Users/admin/builder/spi-builder-workspace/Sources/Process/SKProcessMonitor.swift:28:14: warning: class 'SKProcessMonitor' must restate inherited '@unchecked Sendable' conformance
26 | import CoreFoundation
27 |
28 | public class SKProcessMonitor: SKAsyncOperation {
| `- warning: class 'SKProcessMonitor' must restate inherited '@unchecked Sendable' conformance
29 |
30 | // MARK: - Object Properties
/Users/admin/builder/spi-builder-workspace/Sources/SKAsyncOperation.swift:26:12: warning: class 'SKAsyncOperation' must restate inherited '@unchecked Sendable' conformance
24 | import Foundation
25 |
26 | open class SKAsyncOperation: Operation {
| `- warning: class 'SKAsyncOperation' must restate inherited '@unchecked Sendable' conformance
27 |
28 | // MARK: - Enum
/Users/admin/builder/spi-builder-workspace/Sources/SKSignal.swift:33:14: warning: class 'SKSignal' must restate inherited '@unchecked Sendable' conformance
31 | - Authors: `ChangYeop-Yang`
32 | */
33 | public class SKSignal: SKAsyncOperation {
| `- warning: class 'SKSignal' must restate inherited '@unchecked Sendable' conformance
34 |
35 | // MARK: - Typealias
[30/61] Compiling SystemKit SKNetworkInterface.swift
[31/61] Compiling SystemKit SKNetworkInterfaceDefine.swift
[32/61] Compiling SystemKit SKNetworkMonitor.swift
[33/61] Compiling SystemKit SKNetworkMonitorDefine.swift
[34/61] Compiling SystemKit SKPermissionDefine.swift
[35/61] Compiling SystemKit SKPreferencePaneDefine.swift
/Users/admin/builder/spi-builder-workspace/Sources/Process/SKProcessMonitor.swift:28:14: warning: class 'SKProcessMonitor' must restate inherited '@unchecked Sendable' conformance
26 | import CoreFoundation
27 |
28 | public class SKProcessMonitor: SKAsyncOperation {
| `- warning: class 'SKProcessMonitor' must restate inherited '@unchecked Sendable' conformance
29 |
30 | // MARK: - Object Properties
[36/61] Compiling SystemKit SKProcess.swift
/Users/admin/builder/spi-builder-workspace/Sources/Process/SKProcessMonitor.swift:28:14: warning: class 'SKProcessMonitor' must restate inherited '@unchecked Sendable' conformance
26 | import CoreFoundation
27 |
28 | public class SKProcessMonitor: SKAsyncOperation {
| `- warning: class 'SKProcessMonitor' must restate inherited '@unchecked Sendable' conformance
29 |
30 | // MARK: - Object Properties
[37/61] Compiling SystemKit SKProcessMonitor.swift
/Users/admin/builder/spi-builder-workspace/Sources/Process/SKProcessMonitor.swift:28:14: warning: class 'SKProcessMonitor' must restate inherited '@unchecked Sendable' conformance
26 | import CoreFoundation
27 |
28 | public class SKProcessMonitor: SKAsyncOperation {
| `- warning: class 'SKProcessMonitor' must restate inherited '@unchecked Sendable' conformance
29 |
30 | // MARK: - Object Properties
[38/61] Compiling SystemKit SKProcessMonitorDefine.swift
/Users/admin/builder/spi-builder-workspace/Sources/Process/SKProcessMonitor.swift:28:14: warning: class 'SKProcessMonitor' must restate inherited '@unchecked Sendable' conformance
26 | import CoreFoundation
27 |
28 | public class SKProcessMonitor: SKAsyncOperation {
| `- warning: class 'SKProcessMonitor' must restate inherited '@unchecked Sendable' conformance
29 |
30 | // MARK: - Object Properties
[39/61] Compiling SystemKit SKClass+Protocol.swift
/Users/admin/builder/spi-builder-workspace/Sources/Process/SKProcessMonitor.swift:28:14: warning: class 'SKProcessMonitor' must restate inherited '@unchecked Sendable' conformance
26 | import CoreFoundation
27 |
28 | public class SKProcessMonitor: SKAsyncOperation {
| `- warning: class 'SKProcessMonitor' must restate inherited '@unchecked Sendable' conformance
29 |
30 | // MARK: - Object Properties
[40/61] Compiling SystemKit SKDispatchFile.swift
[41/61] Compiling SystemKit SKDispatchFileMonitor+Define.swift
[42/61] Compiling SystemKit SKDispatchFileMonitor.swift
[43/61] Compiling SystemKit SKDispatchTimer+Define.swift
[44/61] Compiling SystemKit SKDispatchTimer.swift
[45/61] Compiling SystemKit SKSystem+iOS.swift
[46/61] Compiling SystemKit SKSystem+macOS.swift
[47/61] Compiling SystemKit SKSystem.swift
[48/61] Compiling SystemKit SKSystemDefine.swift
[49/61] Compiling SystemKit SKSystemResource+Define.swift
[50/61] Compiling SystemKit SKSystemResource.swift
[51/61] Compiling SystemKit SystemKit.swift
[52/61] Compiling SystemKit resource_bundle_accessor.swift
[53/61] Compiling SystemKit SKFileLock.swift
/Users/admin/builder/spi-builder-workspace/Sources/SKSignal.swift:33:14: warning: class 'SKSignal' must restate inherited '@unchecked Sendable' conformance
31 | - Authors: `ChangYeop-Yang`
32 | */
33 | public class SKSignal: SKAsyncOperation {
| `- warning: class 'SKSignal' must restate inherited '@unchecked Sendable' conformance
34 |
35 | // MARK: - Typealias
[54/61] Compiling SystemKit SKFinderExtension.swift
/Users/admin/builder/spi-builder-workspace/Sources/SKSignal.swift:33:14: warning: class 'SKSignal' must restate inherited '@unchecked Sendable' conformance
31 | - Authors: `ChangYeop-Yang`
32 | */
33 | public class SKSignal: SKAsyncOperation {
| `- warning: class 'SKSignal' must restate inherited '@unchecked Sendable' conformance
34 |
35 | // MARK: - Typealias
[55/61] Compiling SystemKit SKSignal.swift
/Users/admin/builder/spi-builder-workspace/Sources/SKSignal.swift:33:14: warning: class 'SKSignal' must restate inherited '@unchecked Sendable' conformance
31 | - Authors: `ChangYeop-Yang`
32 | */
33 | public class SKSignal: SKAsyncOperation {
| `- warning: class 'SKSignal' must restate inherited '@unchecked Sendable' conformance
34 |
35 | // MARK: - Typealias
[56/61] Compiling SystemKit SKUserDefault.swift
/Users/admin/builder/spi-builder-workspace/Sources/SKSignal.swift:33:14: warning: class 'SKSignal' must restate inherited '@unchecked Sendable' conformance
31 | - Authors: `ChangYeop-Yang`
32 | */
33 | public class SKSignal: SKAsyncOperation {
| `- warning: class 'SKSignal' must restate inherited '@unchecked Sendable' conformance
34 |
35 | // MARK: - Typealias
[57/61] Compiling SystemKit SKIOBattery.swift
[58/61] Compiling SystemKit SKIOProcess.swift
[59/61] Compiling SystemKit SKIOResult.swift
[60/61] Compiling SystemKit SKIOReturn.swift
[61/61] Compiling SystemKit SKIOSystem.swift
Build of target: 'SystemKit' complete! (1.84s)
1424
8 /Users/admin/builder/spi-builder-workspace/.docs/changyeop-yang/universal-systemkit/main
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/changyeop-yang/universal-systemkit/main
File count: 1424
Doc size: 8.0MB
Preparing doc bundle ...
Uploading prod-changyeop-yang-universal-systemkit-main-ce998102.zip to s3://spi-docs-inbox/prod-changyeop-yang-universal-systemkit-main-ce998102.zip
Copying... [11%]
Copying... [22%]
Copying... [32%]
Copying... [43%]
Copying... [50%]
Copying... [61%]
Copying... [72%]
Copying... [83%]
Copying... [90%]
Copying... [100%]
Done.