Build Information
Successful build of Vortex, reference 1.0.3 (26e036
), with Swift 6.1 for watchOS using Xcode 16.3 on 30 Apr 2025 11:06:29 UTC.
Swift 6 data race errors: 78
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme Vortex -destination generic/platform=watchOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures
Build Log
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:79:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let lightGray = Color(red: 192/255, green: 192/255, blue: 192/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:82:27: warning: static property 'orange' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let orange = Color(red: 255/255, green: 149/255, blue: 0/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:82:27: note: add '@MainActor' to make static property 'orange' part of global actor 'MainActor'
public static let orange = Color(red: 255/255, green: 149/255, blue: 0/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:82:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let orange = Color(red: 255/255, green: 149/255, blue: 0/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:85:27: warning: static property 'pink' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let pink = Color(red: 255/255, green: 45/255, blue: 85/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:85:27: note: add '@MainActor' to make static property 'pink' part of global actor 'MainActor'
public static let pink = Color(red: 255/255, green: 45/255, blue: 85/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:85:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let pink = Color(red: 255/255, green: 45/255, blue: 85/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:88:27: warning: static property 'purple' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let purple = Color(red: 88/255, green: 86/255, blue: 214/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:88:27: note: add '@MainActor' to make static property 'purple' part of global actor 'MainActor'
public static let purple = Color(red: 88/255, green: 86/255, blue: 214/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:88:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let purple = Color(red: 88/255, green: 86/255, blue: 214/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:91:27: warning: static property 'red' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let red = Color(red: 255/255, green: 59/255, blue: 48/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:91:27: note: add '@MainActor' to make static property 'red' part of global actor 'MainActor'
public static let red = Color(red: 255/255, green: 59/255, blue: 48/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:91:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let red = Color(red: 255/255, green: 59/255, blue: 48/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:94:27: warning: static property 'teal' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let teal = Color(red: 90/255, green: 200/255, blue: 250/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:94:27: note: add '@MainActor' to make static property 'teal' part of global actor 'MainActor'
public static let teal = Color(red: 90/255, green: 200/255, blue: 250/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:94:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let teal = Color(red: 90/255, green: 200/255, blue: 250/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:97:27: warning: static property 'white' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let white = Color(red: 1, green: 1, blue: 1, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:97:27: note: add '@MainActor' to make static property 'white' part of global actor 'MainActor'
public static let white = Color(red: 1, green: 1, blue: 1, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:97:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let white = Color(red: 1, green: 1, blue: 1, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:100:27: warning: static property 'yellow' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let yellow = Color(red: 255/255, green: 204/255, blue: 0/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:100:27: note: add '@MainActor' to make static property 'yellow' part of global actor 'MainActor'
public static let yellow = Color(red: 255/255, green: 204/255, blue: 0/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:100:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let yellow = Color(red: 255/255, green: 204/255, blue: 0/255, opacity: 1)
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ DefaultSymbols.swift,\ Color.swift,\ ColorMode.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Resources/DefaultSymbols.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/ColorMode.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Resources/DefaultSymbols.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:55:27: warning: static property 'black' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let black = Color(red: 0, green: 0, blue: 0, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:55:27: note: add '@MainActor' to make static property 'black' part of global actor 'MainActor'
public static let black = Color(red: 0, green: 0, blue: 0, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:55:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let black = Color(red: 0, green: 0, blue: 0, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:58:27: warning: static property 'blue' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let blue = Color(red: 0/255, green: 122/255, blue: 255/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:58:27: note: add '@MainActor' to make static property 'blue' part of global actor 'MainActor'
public static let blue = Color(red: 0/255, green: 122/255, blue: 255/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:58:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let blue = Color(red: 0/255, green: 122/255, blue: 255/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:61:27: warning: static property 'brown' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let brown = Color(red: 78/255, green: 33/255, blue: 6/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:61:27: note: add '@MainActor' to make static property 'brown' part of global actor 'MainActor'
public static let brown = Color(red: 78/255, green: 33/255, blue: 6/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:61:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let brown = Color(red: 78/255, green: 33/255, blue: 6/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:64:27: warning: static property 'clear' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let clear = Color(red: 0, green: 0, blue: 0, opacity: 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:64:27: note: add '@MainActor' to make static property 'clear' part of global actor 'MainActor'
public static let clear = Color(red: 0, green: 0, blue: 0, opacity: 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:64:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let clear = Color(red: 0, green: 0, blue: 0, opacity: 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:67:27: warning: static property 'cyan' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let cyan = Color(red: 50/255, green: 173/255, blue: 230/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:67:27: note: add '@MainActor' to make static property 'cyan' part of global actor 'MainActor'
public static let cyan = Color(red: 50/255, green: 173/255, blue: 230/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:67:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let cyan = Color(red: 50/255, green: 173/255, blue: 230/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:70:27: warning: static property 'darkGray' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let darkGray = Color(red: 64/255, green: 64/255, blue: 64/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:70:27: note: add '@MainActor' to make static property 'darkGray' part of global actor 'MainActor'
public static let darkGray = Color(red: 64/255, green: 64/255, blue: 64/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:70:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let darkGray = Color(red: 64/255, green: 64/255, blue: 64/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:73:27: warning: static property 'gray' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let gray = Color(red: 128/255, green: 128/255, blue: 128/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:73:27: note: add '@MainActor' to make static property 'gray' part of global actor 'MainActor'
public static let gray = Color(red: 128/255, green: 128/255, blue: 128/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:73:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let gray = Color(red: 128/255, green: 128/255, blue: 128/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:76:27: warning: static property 'green' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let green = Color(red: 76/255, green: 217/255, blue: 100/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:76:27: note: add '@MainActor' to make static property 'green' part of global actor 'MainActor'
public static let green = Color(red: 76/255, green: 217/255, blue: 100/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:76:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let green = Color(red: 76/255, green: 217/255, blue: 100/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:79:27: warning: static property 'lightGray' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let lightGray = Color(red: 192/255, green: 192/255, blue: 192/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:79:27: note: add '@MainActor' to make static property 'lightGray' part of global actor 'MainActor'
public static let lightGray = Color(red: 192/255, green: 192/255, blue: 192/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:79:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let lightGray = Color(red: 192/255, green: 192/255, blue: 192/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:82:27: warning: static property 'orange' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let orange = Color(red: 255/255, green: 149/255, blue: 0/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:82:27: note: add '@MainActor' to make static property 'orange' part of global actor 'MainActor'
public static let orange = Color(red: 255/255, green: 149/255, blue: 0/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:82:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let orange = Color(red: 255/255, green: 149/255, blue: 0/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:85:27: warning: static property 'pink' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let pink = Color(red: 255/255, green: 45/255, blue: 85/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:85:27: note: add '@MainActor' to make static property 'pink' part of global actor 'MainActor'
public static let pink = Color(red: 255/255, green: 45/255, blue: 85/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:85:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let pink = Color(red: 255/255, green: 45/255, blue: 85/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:88:27: warning: static property 'purple' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let purple = Color(red: 88/255, green: 86/255, blue: 214/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:88:27: note: add '@MainActor' to make static property 'purple' part of global actor 'MainActor'
public static let purple = Color(red: 88/255, green: 86/255, blue: 214/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:88:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let purple = Color(red: 88/255, green: 86/255, blue: 214/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:91:27: warning: static property 'red' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let red = Color(red: 255/255, green: 59/255, blue: 48/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:91:27: note: add '@MainActor' to make static property 'red' part of global actor 'MainActor'
public static let red = Color(red: 255/255, green: 59/255, blue: 48/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:91:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let red = Color(red: 255/255, green: 59/255, blue: 48/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:94:27: warning: static property 'teal' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let teal = Color(red: 90/255, green: 200/255, blue: 250/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:94:27: note: add '@MainActor' to make static property 'teal' part of global actor 'MainActor'
public static let teal = Color(red: 90/255, green: 200/255, blue: 250/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:94:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let teal = Color(red: 90/255, green: 200/255, blue: 250/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:97:27: warning: static property 'white' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let white = Color(red: 1, green: 1, blue: 1, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:97:27: note: add '@MainActor' to make static property 'white' part of global actor 'MainActor'
public static let white = Color(red: 1, green: 1, blue: 1, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:97:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let white = Color(red: 1, green: 1, blue: 1, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:100:27: warning: static property 'yellow' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let yellow = Color(red: 255/255, green: 204/255, blue: 0/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:100:27: note: add '@MainActor' to make static property 'yellow' part of global actor 'MainActor'
public static let yellow = Color(red: 255/255, green: 204/255, blue: 0/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:100:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let yellow = Color(red: 255/255, green: 204/255, blue: 0/255, opacity: 1)
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/ColorMode.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k Compiling\ Particle.swift,\ Shape.swift,\ SpawnOccasion.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Particle.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Shape.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/SpawnOccasion.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Particle.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Shape.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/SpawnOccasion.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 Compiling\ Lerping.swift,\ RandomSpread.swift,\ Confetti.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Helpers/Lerping.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Helpers/RandomSpread.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Helpers/Lerping.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Helpers/RandomSpread.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:14:23: warning: static property 'confetti' is not concurrency-safe because non-'Sendable' type 'VortexSystem' may have shared mutable state; this is an error in the Swift 6 language mode
public static let confetti: VortexSystem = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift:11:14: note: class 'VortexSystem' does not conform to the 'Sendable' protocol
public class VortexSystem: Codable, Identifiable, Equatable, Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:14:23: note: add '@MainActor' to make static property 'confetti' part of global actor 'MainActor'
public static let confetti: VortexSystem = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:14:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let confetti: VortexSystem = {
^
nonisolated(unsafe)
SwiftCompile normal arm64 Compiling\ resource_bundle_accessor.swift,\ Angle+Codable.swift,\ Array-InterpolatedColor.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Helpers/Angle+Codable.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Helpers/Array-InterpolatedColor.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/DerivedSources/resource_bundle_accessor.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Helpers/Angle+Codable.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Helpers/Array-InterpolatedColor.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k Compiling\ DefaultSymbols.swift,\ Color.swift,\ ColorMode.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Resources/DefaultSymbols.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/ColorMode.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Resources/DefaultSymbols.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:55:27: warning: static property 'black' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let black = Color(red: 0, green: 0, blue: 0, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:55:27: note: add '@MainActor' to make static property 'black' part of global actor 'MainActor'
public static let black = Color(red: 0, green: 0, blue: 0, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:55:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let black = Color(red: 0, green: 0, blue: 0, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:58:27: warning: static property 'blue' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let blue = Color(red: 0/255, green: 122/255, blue: 255/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:58:27: note: add '@MainActor' to make static property 'blue' part of global actor 'MainActor'
public static let blue = Color(red: 0/255, green: 122/255, blue: 255/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:58:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let blue = Color(red: 0/255, green: 122/255, blue: 255/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:61:27: warning: static property 'brown' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let brown = Color(red: 78/255, green: 33/255, blue: 6/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:61:27: note: add '@MainActor' to make static property 'brown' part of global actor 'MainActor'
public static let brown = Color(red: 78/255, green: 33/255, blue: 6/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:61:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let brown = Color(red: 78/255, green: 33/255, blue: 6/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:64:27: warning: static property 'clear' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let clear = Color(red: 0, green: 0, blue: 0, opacity: 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:64:27: note: add '@MainActor' to make static property 'clear' part of global actor 'MainActor'
public static let clear = Color(red: 0, green: 0, blue: 0, opacity: 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:64:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let clear = Color(red: 0, green: 0, blue: 0, opacity: 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:67:27: warning: static property 'cyan' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let cyan = Color(red: 50/255, green: 173/255, blue: 230/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:67:27: note: add '@MainActor' to make static property 'cyan' part of global actor 'MainActor'
public static let cyan = Color(red: 50/255, green: 173/255, blue: 230/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:67:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let cyan = Color(red: 50/255, green: 173/255, blue: 230/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:70:27: warning: static property 'darkGray' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let darkGray = Color(red: 64/255, green: 64/255, blue: 64/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:70:27: note: add '@MainActor' to make static property 'darkGray' part of global actor 'MainActor'
public static let darkGray = Color(red: 64/255, green: 64/255, blue: 64/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:70:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let darkGray = Color(red: 64/255, green: 64/255, blue: 64/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:73:27: warning: static property 'gray' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let gray = Color(red: 128/255, green: 128/255, blue: 128/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:73:27: note: add '@MainActor' to make static property 'gray' part of global actor 'MainActor'
public static let gray = Color(red: 128/255, green: 128/255, blue: 128/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:73:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let gray = Color(red: 128/255, green: 128/255, blue: 128/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:76:27: warning: static property 'green' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let green = Color(red: 76/255, green: 217/255, blue: 100/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:76:27: note: add '@MainActor' to make static property 'green' part of global actor 'MainActor'
public static let green = Color(red: 76/255, green: 217/255, blue: 100/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:76:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let green = Color(red: 76/255, green: 217/255, blue: 100/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:79:27: warning: static property 'lightGray' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let lightGray = Color(red: 192/255, green: 192/255, blue: 192/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:79:27: note: add '@MainActor' to make static property 'lightGray' part of global actor 'MainActor'
public static let lightGray = Color(red: 192/255, green: 192/255, blue: 192/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:79:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let lightGray = Color(red: 192/255, green: 192/255, blue: 192/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:82:27: warning: static property 'orange' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let orange = Color(red: 255/255, green: 149/255, blue: 0/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:82:27: note: add '@MainActor' to make static property 'orange' part of global actor 'MainActor'
public static let orange = Color(red: 255/255, green: 149/255, blue: 0/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:82:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let orange = Color(red: 255/255, green: 149/255, blue: 0/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:85:27: warning: static property 'pink' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let pink = Color(red: 255/255, green: 45/255, blue: 85/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:85:27: note: add '@MainActor' to make static property 'pink' part of global actor 'MainActor'
public static let pink = Color(red: 255/255, green: 45/255, blue: 85/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:85:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let pink = Color(red: 255/255, green: 45/255, blue: 85/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:88:27: warning: static property 'purple' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let purple = Color(red: 88/255, green: 86/255, blue: 214/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:88:27: note: add '@MainActor' to make static property 'purple' part of global actor 'MainActor'
public static let purple = Color(red: 88/255, green: 86/255, blue: 214/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:88:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let purple = Color(red: 88/255, green: 86/255, blue: 214/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:91:27: warning: static property 'red' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let red = Color(red: 255/255, green: 59/255, blue: 48/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:91:27: note: add '@MainActor' to make static property 'red' part of global actor 'MainActor'
public static let red = Color(red: 255/255, green: 59/255, blue: 48/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:91:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let red = Color(red: 255/255, green: 59/255, blue: 48/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:94:27: warning: static property 'teal' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let teal = Color(red: 90/255, green: 200/255, blue: 250/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:94:27: note: add '@MainActor' to make static property 'teal' part of global actor 'MainActor'
public static let teal = Color(red: 90/255, green: 200/255, blue: 250/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:94:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let teal = Color(red: 90/255, green: 200/255, blue: 250/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:97:27: warning: static property 'white' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let white = Color(red: 1, green: 1, blue: 1, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:97:27: note: add '@MainActor' to make static property 'white' part of global actor 'MainActor'
public static let white = Color(red: 1, green: 1, blue: 1, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:97:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let white = Color(red: 1, green: 1, blue: 1, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:100:27: warning: static property 'yellow' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let yellow = Color(red: 255/255, green: 204/255, blue: 0/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:100:27: note: add '@MainActor' to make static property 'yellow' part of global actor 'MainActor'
public static let yellow = Color(red: 255/255, green: 204/255, blue: 0/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:100:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let yellow = Color(red: 255/255, green: 204/255, blue: 0/255, opacity: 1)
^
nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/ColorMode.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k Compiling\ Magic.swift,\ Rain.swift,\ Smoke.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Magic.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Rain.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Smoke.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Magic.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Magic.swift:13:23: warning: static property 'magic' is not concurrency-safe because non-'Sendable' type 'VortexSystem' may have shared mutable state; this is an error in the Swift 6 language mode
public static let magic: VortexSystem = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift:11:14: note: class 'VortexSystem' does not conform to the 'Sendable' protocol
public class VortexSystem: Codable, Identifiable, Equatable, Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Magic.swift:13:23: note: add '@MainActor' to make static property 'magic' part of global actor 'MainActor'
public static let magic: VortexSystem = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Magic.swift:13:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let magic: VortexSystem = {
^
nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Rain.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Rain.swift:12:23: warning: static property 'rain' is not concurrency-safe because non-'Sendable' type 'VortexSystem' may have shared mutable state; this is an error in the Swift 6 language mode
public static let rain: VortexSystem = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift:11:14: note: class 'VortexSystem' does not conform to the 'Sendable' protocol
public class VortexSystem: Codable, Identifiable, Equatable, Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Rain.swift:12:23: note: add '@MainActor' to make static property 'rain' part of global actor 'MainActor'
public static let rain: VortexSystem = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Rain.swift:12:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let rain: VortexSystem = {
^
nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Smoke.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Smoke.swift:12:23: warning: static property 'smoke' is not concurrency-safe because non-'Sendable' type 'VortexSystem' may have shared mutable state; this is an error in the Swift 6 language mode
public static let smoke: VortexSystem = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift:11:14: note: class 'VortexSystem' does not conform to the 'Sendable' protocol
public class VortexSystem: Codable, Identifiable, Equatable, Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Smoke.swift:12:23: note: add '@MainActor' to make static property 'smoke' part of global actor 'MainActor'
public static let smoke: VortexSystem = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Smoke.swift:12:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let smoke: VortexSystem = {
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 Compiling\ VortexSystemPreferenceKey.swift,\ VortexView.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Views/VortexSystemPreferenceKey.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Views/VortexView.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Views/VortexSystemPreferenceKey.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Views/VortexView.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Emitting module for Vortex (in target 'Vortex' from project 'Vortex')
SwiftCompile normal arm64 Compiling\ Particle.swift,\ Shape.swift,\ SpawnOccasion.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Particle.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Shape.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/SpawnOccasion.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Particle.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Shape.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/SpawnOccasion.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal armv7k Emitting module for Vortex (in target 'Vortex' from project 'Vortex')
SwiftDriver\ Compilation\ Requirements Vortex normal armv7k com.apple.xcode.tools.swift.compiler (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Vortex -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/Vortex.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos8.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/Vortex-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/Vortex.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/Vortex_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/Vortex-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64_32 Emitting module for Vortex (in target 'Vortex' from project 'Vortex')
SwiftDriver\ Compilation\ Requirements Vortex normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Vortex -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/Vortex.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos8.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/Vortex-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/Vortex.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/Vortex_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/Vortex-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriver\ Compilation\ Requirements Vortex normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Vortex -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64_32/Vortex.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos8.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64_32/Vortex-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64_32/Vortex.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64_32/Vortex_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64_32/Vortex-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex.swiftmodule/armv7k-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/Vortex.swiftmodule (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/Vortex.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex.swiftmodule/armv7k-apple-watchos.swiftmodule
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/Vortex-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/Vortex-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64_32/Vortex-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/Vortex-Swift.h (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/Vortex-Swift.h -arch arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64_32/Vortex-Swift.h -arch armv7k /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/Vortex-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/Vortex-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex.swiftmodule/armv7k-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/Vortex.swiftdoc (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/Vortex.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex.swiftmodule/armv7k-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex.swiftmodule/armv7k-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/Vortex.abi.json (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/Vortex.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex.swiftmodule/armv7k-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64_32/Vortex.swiftmodule (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64_32/Vortex.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex.swiftmodule/arm64_32-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64_32/Vortex.swiftdoc (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64_32/Vortex.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex.swiftmodule/arm64_32-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64_32/Vortex.abi.json (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64_32/Vortex.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex.swiftmodule/arm64_32-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex.swiftmodule/arm64-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/Vortex.swiftmodule (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/Vortex.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex.swiftmodule/arm64-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex.swiftmodule/arm64-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/Vortex.swiftdoc (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/Vortex.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex.swiftmodule/arm64-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex.swiftmodule/arm64-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/Vortex.abi.json (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/Vortex.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex.swiftmodule/arm64-apple-watchos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/Vortex.swiftsourceinfo (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/Vortex.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex.swiftmodule/Project/armv7k-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64_32/Vortex.swiftsourceinfo (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64_32/Vortex.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/Vortex.swiftsourceinfo (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/Vortex.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex.swiftmodule/Project/arm64-apple-watchos.swiftsourceinfo
SwiftCompile normal arm64_32 Compiling\ Snow.swift,\ Spark.swift,\ Splash.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Snow.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Spark.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Splash.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Snow.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Snow.swift:12:23: warning: static property 'snow' is not concurrency-safe because non-'Sendable' type 'VortexSystem' may have shared mutable state; this is an error in the Swift 6 language mode
public static let snow: VortexSystem = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift:11:14: note: class 'VortexSystem' does not conform to the 'Sendable' protocol
public class VortexSystem: Codable, Identifiable, Equatable, Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Snow.swift:12:23: note: add '@MainActor' to make static property 'snow' part of global actor 'MainActor'
public static let snow: VortexSystem = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Snow.swift:12:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let snow: VortexSystem = {
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Spark.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Spark.swift:13:23: warning: static property 'spark' is not concurrency-safe because non-'Sendable' type 'VortexSystem' may have shared mutable state; this is an error in the Swift 6 language mode
public static let spark: VortexSystem = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift:11:14: note: class 'VortexSystem' does not conform to the 'Sendable' protocol
public class VortexSystem: Codable, Identifiable, Equatable, Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Spark.swift:13:23: note: add '@MainActor' to make static property 'spark' part of global actor 'MainActor'
public static let spark: VortexSystem = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Spark.swift:13:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let spark: VortexSystem = {
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Splash.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Splash.swift:14:23: warning: static property 'splash' is not concurrency-safe because non-'Sendable' type 'VortexSystem' may have shared mutable state; this is an error in the Swift 6 language mode
public static let splash: VortexSystem = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift:11:14: note: class 'VortexSystem' does not conform to the 'Sendable' protocol
public class VortexSystem: Codable, Identifiable, Equatable, Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Splash.swift:14:23: note: add '@MainActor' to make static property 'splash' part of global actor 'MainActor'
public static let splash: VortexSystem = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Splash.swift:14:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let splash: VortexSystem = {
^
nonisolated(unsafe)
SwiftCompile normal armv7k Compiling\ VortexViewReader.swift,\ GeneratedAssetSymbols.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Views/VortexViewReader.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Views/VortexViewReader.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
LinkAssetCatalog /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Resources/Assets.xcassets (in target 'Vortex_Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace
builtin-linkAssetCatalog --thinned /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex_Vortex.build/assetcatalog_output/thinned --thinned-dependencies /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex_Vortex.build/assetcatalog_dependencies_thinned --thinned-info-plist-content /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex_Vortex.build/assetcatalog_generated_info.plist_thinned --unthinned /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex_Vortex.build/assetcatalog_output/unthinned --unthinned-dependencies /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex_Vortex.build/assetcatalog_dependencies_unthinned --unthinned-info-plist-content /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex_Vortex.build/assetcatalog_generated_info.plist_unthinned --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex_Vortex.bundle --plist-output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex_Vortex.build/assetcatalog_generated_info.plist
note: Emplaced /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex_Vortex.bundle/Assets.car (in target 'Vortex_Vortex' from project 'Vortex')
SwiftDriverJobDiscovery normal arm64 Compiling Particle.swift, Shape.swift, SpawnOccasion.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal arm64 Compiling\ VortexSystem-Behavior.swift,\ VortexSystem.swift,\ VortexProxy.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem-Behavior.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Views/VortexProxy.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem-Behavior.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Views/VortexProxy.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex_Vortex.bundle/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex_Vortex.build/empty-Vortex_Vortex.plist (in target 'Vortex_Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace
builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex_Vortex.build/empty-Vortex_Vortex.plist -producttype com.apple.product-type.bundle -expandbuildsettings -format binary -platform watchos -additionalcontentfile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex_Vortex.build/assetcatalog_generated_info.plist -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex_Vortex.bundle/Info.plist
SwiftDriverJobDiscovery normal arm64 Compiling resource_bundle_accessor.swift, Angle+Codable.swift, Array-InterpolatedColor.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal arm64_32 Compiling\ Fire.swift,\ Fireflies.swift,\ Fireworks.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fire.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fireflies.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fireworks.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fire.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fire.swift:13:23: warning: static property 'fire' is not concurrency-safe because non-'Sendable' type 'VortexSystem' may have shared mutable state; this is an error in the Swift 6 language mode
public static let fire: VortexSystem = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift:11:14: note: class 'VortexSystem' does not conform to the 'Sendable' protocol
public class VortexSystem: Codable, Identifiable, Equatable, Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fire.swift:13:23: note: add '@MainActor' to make static property 'fire' part of global actor 'MainActor'
public static let fire: VortexSystem = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fire.swift:13:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let fire: VortexSystem = {
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fireflies.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fireflies.swift:13:23: warning: static property 'fireflies' is not concurrency-safe because non-'Sendable' type 'VortexSystem' may have shared mutable state; this is an error in the Swift 6 language mode
public static let fireflies: VortexSystem = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift:11:14: note: class 'VortexSystem' does not conform to the 'Sendable' protocol
public class VortexSystem: Codable, Identifiable, Equatable, Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fireflies.swift:13:23: note: add '@MainActor' to make static property 'fireflies' part of global actor 'MainActor'
public static let fireflies: VortexSystem = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fireflies.swift:13:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let fireflies: VortexSystem = {
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fireworks.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fireworks.swift:14:23: warning: static property 'fireworks' is not concurrency-safe because non-'Sendable' type 'VortexSystem' may have shared mutable state; this is an error in the Swift 6 language mode
public static let fireworks: VortexSystem = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift:11:14: note: class 'VortexSystem' does not conform to the 'Sendable' protocol
public class VortexSystem: Codable, Identifiable, Equatable, Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fireworks.swift:14:23: note: add '@MainActor' to make static property 'fireworks' part of global actor 'MainActor'
public static let fireworks: VortexSystem = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fireworks.swift:14:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let fireworks: VortexSystem = {
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling Lerping.swift, RandomSpread.swift, Confetti.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal armv7k Compiling\ Lerping.swift,\ RandomSpread.swift,\ Confetti.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Helpers/Lerping.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Helpers/RandomSpread.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Helpers/Lerping.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Helpers/RandomSpread.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:14:23: warning: static property 'confetti' is not concurrency-safe because non-'Sendable' type 'VortexSystem' may have shared mutable state; this is an error in the Swift 6 language mode
public static let confetti: VortexSystem = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift:11:14: note: class 'VortexSystem' does not conform to the 'Sendable' protocol
public class VortexSystem: Codable, Identifiable, Equatable, Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:14:23: note: add '@MainActor' to make static property 'confetti' part of global actor 'MainActor'
public static let confetti: VortexSystem = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:14:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let confetti: VortexSystem = {
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling DefaultSymbols.swift, Color.swift, ColorMode.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal armv7k Compiling\ VortexSystemPreferenceKey.swift,\ VortexView.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Views/VortexSystemPreferenceKey.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Views/VortexView.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Views/VortexSystemPreferenceKey.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Views/VortexView.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 Compiling\ Lerping.swift,\ RandomSpread.swift,\ Confetti.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Helpers/Lerping.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Helpers/RandomSpread.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Helpers/Lerping.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Helpers/RandomSpread.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:14:23: warning: static property 'confetti' is not concurrency-safe because non-'Sendable' type 'VortexSystem' may have shared mutable state; this is an error in the Swift 6 language mode
public static let confetti: VortexSystem = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift:11:14: note: class 'VortexSystem' does not conform to the 'Sendable' protocol
public class VortexSystem: Codable, Identifiable, Equatable, Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:14:23: note: add '@MainActor' to make static property 'confetti' part of global actor 'MainActor'
public static let confetti: VortexSystem = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:14:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let confetti: VortexSystem = {
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling VortexViewReader.swift, GeneratedAssetSymbols.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal arm64_32 Compiling\ DefaultSymbols.swift,\ Color.swift,\ ColorMode.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Resources/DefaultSymbols.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/ColorMode.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Resources/DefaultSymbols.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:55:27: warning: static property 'black' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let black = Color(red: 0, green: 0, blue: 0, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:55:27: note: add '@MainActor' to make static property 'black' part of global actor 'MainActor'
public static let black = Color(red: 0, green: 0, blue: 0, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:55:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let black = Color(red: 0, green: 0, blue: 0, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:58:27: warning: static property 'blue' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let blue = Color(red: 0/255, green: 122/255, blue: 255/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:58:27: note: add '@MainActor' to make static property 'blue' part of global actor 'MainActor'
public static let blue = Color(red: 0/255, green: 122/255, blue: 255/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:58:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let blue = Color(red: 0/255, green: 122/255, blue: 255/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:61:27: warning: static property 'brown' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let brown = Color(red: 78/255, green: 33/255, blue: 6/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:61:27: note: add '@MainActor' to make static property 'brown' part of global actor 'MainActor'
public static let brown = Color(red: 78/255, green: 33/255, blue: 6/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:61:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let brown = Color(red: 78/255, green: 33/255, blue: 6/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:64:27: warning: static property 'clear' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let clear = Color(red: 0, green: 0, blue: 0, opacity: 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:64:27: note: add '@MainActor' to make static property 'clear' part of global actor 'MainActor'
public static let clear = Color(red: 0, green: 0, blue: 0, opacity: 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:64:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let clear = Color(red: 0, green: 0, blue: 0, opacity: 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:67:27: warning: static property 'cyan' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let cyan = Color(red: 50/255, green: 173/255, blue: 230/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:67:27: note: add '@MainActor' to make static property 'cyan' part of global actor 'MainActor'
public static let cyan = Color(red: 50/255, green: 173/255, blue: 230/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:67:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let cyan = Color(red: 50/255, green: 173/255, blue: 230/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:70:27: warning: static property 'darkGray' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let darkGray = Color(red: 64/255, green: 64/255, blue: 64/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:70:27: note: add '@MainActor' to make static property 'darkGray' part of global actor 'MainActor'
public static let darkGray = Color(red: 64/255, green: 64/255, blue: 64/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:70:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let darkGray = Color(red: 64/255, green: 64/255, blue: 64/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:73:27: warning: static property 'gray' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let gray = Color(red: 128/255, green: 128/255, blue: 128/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:73:27: note: add '@MainActor' to make static property 'gray' part of global actor 'MainActor'
public static let gray = Color(red: 128/255, green: 128/255, blue: 128/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:73:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let gray = Color(red: 128/255, green: 128/255, blue: 128/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:76:27: warning: static property 'green' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let green = Color(red: 76/255, green: 217/255, blue: 100/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:76:27: note: add '@MainActor' to make static property 'green' part of global actor 'MainActor'
public static let green = Color(red: 76/255, green: 217/255, blue: 100/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:76:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let green = Color(red: 76/255, green: 217/255, blue: 100/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:79:27: warning: static property 'lightGray' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let lightGray = Color(red: 192/255, green: 192/255, blue: 192/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:79:27: note: add '@MainActor' to make static property 'lightGray' part of global actor 'MainActor'
public static let lightGray = Color(red: 192/255, green: 192/255, blue: 192/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:79:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let lightGray = Color(red: 192/255, green: 192/255, blue: 192/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:82:27: warning: static property 'orange' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let orange = Color(red: 255/255, green: 149/255, blue: 0/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:82:27: note: add '@MainActor' to make static property 'orange' part of global actor 'MainActor'
public static let orange = Color(red: 255/255, green: 149/255, blue: 0/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:82:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let orange = Color(red: 255/255, green: 149/255, blue: 0/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:85:27: warning: static property 'pink' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let pink = Color(red: 255/255, green: 45/255, blue: 85/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:85:27: note: add '@MainActor' to make static property 'pink' part of global actor 'MainActor'
public static let pink = Color(red: 255/255, green: 45/255, blue: 85/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:85:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let pink = Color(red: 255/255, green: 45/255, blue: 85/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:88:27: warning: static property 'purple' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let purple = Color(red: 88/255, green: 86/255, blue: 214/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:88:27: note: add '@MainActor' to make static property 'purple' part of global actor 'MainActor'
public static let purple = Color(red: 88/255, green: 86/255, blue: 214/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:88:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let purple = Color(red: 88/255, green: 86/255, blue: 214/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:91:27: warning: static property 'red' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let red = Color(red: 255/255, green: 59/255, blue: 48/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:91:27: note: add '@MainActor' to make static property 'red' part of global actor 'MainActor'
public static let red = Color(red: 255/255, green: 59/255, blue: 48/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:91:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let red = Color(red: 255/255, green: 59/255, blue: 48/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:94:27: warning: static property 'teal' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let teal = Color(red: 90/255, green: 200/255, blue: 250/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:94:27: note: add '@MainActor' to make static property 'teal' part of global actor 'MainActor'
public static let teal = Color(red: 90/255, green: 200/255, blue: 250/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:94:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let teal = Color(red: 90/255, green: 200/255, blue: 250/255, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:97:27: warning: static property 'white' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let white = Color(red: 1, green: 1, blue: 1, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:97:27: note: add '@MainActor' to make static property 'white' part of global actor 'MainActor'
public static let white = Color(red: 1, green: 1, blue: 1, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:97:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let white = Color(red: 1, green: 1, blue: 1, opacity: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:100:27: warning: static property 'yellow' is not concurrency-safe because non-'Sendable' type 'VortexSystem.Color' may have shared mutable state; this is an error in the Swift 6 language mode
public static let yellow = Color(red: 255/255, green: 204/255, blue: 0/255, opacity: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:12:19: note: consider making struct 'Color' conform to the 'Sendable' protocol
public struct Color: Codable, ExpressibleByArrayLiteral, Hashable {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:100:27: note: add '@MainActor' to make static property 'yellow' part of global actor 'MainActor'
public static let yellow = Color(red: 255/255, green: 204/255, blue: 0/255, opacity: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Color.swift:100:27: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let yellow = Color(red: 255/255, green: 204/255, blue: 0/255, opacity: 1)
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/ColorMode.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal armv7k Compiling DefaultSymbols.swift, Color.swift, ColorMode.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal armv7k Compiling\ Fire.swift,\ Fireflies.swift,\ Fireworks.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fire.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fireflies.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fireworks.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fire.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fire.swift:13:23: warning: static property 'fire' is not concurrency-safe because non-'Sendable' type 'VortexSystem' may have shared mutable state; this is an error in the Swift 6 language mode
public static let fire: VortexSystem = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift:11:14: note: class 'VortexSystem' does not conform to the 'Sendable' protocol
public class VortexSystem: Codable, Identifiable, Equatable, Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fire.swift:13:23: note: add '@MainActor' to make static property 'fire' part of global actor 'MainActor'
public static let fire: VortexSystem = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fire.swift:13:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let fire: VortexSystem = {
^
nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fireflies.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fireflies.swift:13:23: warning: static property 'fireflies' is not concurrency-safe because non-'Sendable' type 'VortexSystem' may have shared mutable state; this is an error in the Swift 6 language mode
public static let fireflies: VortexSystem = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift:11:14: note: class 'VortexSystem' does not conform to the 'Sendable' protocol
public class VortexSystem: Codable, Identifiable, Equatable, Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fireflies.swift:13:23: note: add '@MainActor' to make static property 'fireflies' part of global actor 'MainActor'
public static let fireflies: VortexSystem = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fireflies.swift:13:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let fireflies: VortexSystem = {
^
nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fireworks.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fireworks.swift:14:23: warning: static property 'fireworks' is not concurrency-safe because non-'Sendable' type 'VortexSystem' may have shared mutable state; this is an error in the Swift 6 language mode
public static let fireworks: VortexSystem = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift:11:14: note: class 'VortexSystem' does not conform to the 'Sendable' protocol
public class VortexSystem: Codable, Identifiable, Equatable, Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fireworks.swift:14:23: note: add '@MainActor' to make static property 'fireworks' part of global actor 'MainActor'
public static let fireworks: VortexSystem = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fireworks.swift:14:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let fireworks: VortexSystem = {
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling Particle.swift, Shape.swift, SpawnOccasion.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal arm64_32 Compiling\ Magic.swift,\ Rain.swift,\ Smoke.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Magic.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Rain.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Smoke.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Magic.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Magic.swift:13:23: warning: static property 'magic' is not concurrency-safe because non-'Sendable' type 'VortexSystem' may have shared mutable state; this is an error in the Swift 6 language mode
public static let magic: VortexSystem = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift:11:14: note: class 'VortexSystem' does not conform to the 'Sendable' protocol
public class VortexSystem: Codable, Identifiable, Equatable, Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Magic.swift:13:23: note: add '@MainActor' to make static property 'magic' part of global actor 'MainActor'
public static let magic: VortexSystem = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Magic.swift:13:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let magic: VortexSystem = {
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Rain.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Rain.swift:12:23: warning: static property 'rain' is not concurrency-safe because non-'Sendable' type 'VortexSystem' may have shared mutable state; this is an error in the Swift 6 language mode
public static let rain: VortexSystem = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift:11:14: note: class 'VortexSystem' does not conform to the 'Sendable' protocol
public class VortexSystem: Codable, Identifiable, Equatable, Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Rain.swift:12:23: note: add '@MainActor' to make static property 'rain' part of global actor 'MainActor'
public static let rain: VortexSystem = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Rain.swift:12:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let rain: VortexSystem = {
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Smoke.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Smoke.swift:12:23: warning: static property 'smoke' is not concurrency-safe because non-'Sendable' type 'VortexSystem' may have shared mutable state; this is an error in the Swift 6 language mode
public static let smoke: VortexSystem = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift:11:14: note: class 'VortexSystem' does not conform to the 'Sendable' protocol
public class VortexSystem: Codable, Identifiable, Equatable, Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Smoke.swift:12:23: note: add '@MainActor' to make static property 'smoke' part of global actor 'MainActor'
public static let smoke: VortexSystem = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Smoke.swift:12:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let smoke: VortexSystem = {
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling Magic.swift, Rain.swift, Smoke.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal arm64 Compiling\ Snow.swift,\ Spark.swift,\ Splash.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Snow.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Spark.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Splash.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Snow.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Snow.swift:12:23: warning: static property 'snow' is not concurrency-safe because non-'Sendable' type 'VortexSystem' may have shared mutable state; this is an error in the Swift 6 language mode
public static let snow: VortexSystem = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift:11:14: note: class 'VortexSystem' does not conform to the 'Sendable' protocol
public class VortexSystem: Codable, Identifiable, Equatable, Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Snow.swift:12:23: note: add '@MainActor' to make static property 'snow' part of global actor 'MainActor'
public static let snow: VortexSystem = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Snow.swift:12:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let snow: VortexSystem = {
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Spark.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Spark.swift:13:23: warning: static property 'spark' is not concurrency-safe because non-'Sendable' type 'VortexSystem' may have shared mutable state; this is an error in the Swift 6 language mode
public static let spark: VortexSystem = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift:11:14: note: class 'VortexSystem' does not conform to the 'Sendable' protocol
public class VortexSystem: Codable, Identifiable, Equatable, Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Spark.swift:13:23: note: add '@MainActor' to make static property 'spark' part of global actor 'MainActor'
public static let spark: VortexSystem = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Spark.swift:13:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let spark: VortexSystem = {
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Splash.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Splash.swift:14:23: warning: static property 'splash' is not concurrency-safe because non-'Sendable' type 'VortexSystem' may have shared mutable state; this is an error in the Swift 6 language mode
public static let splash: VortexSystem = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift:11:14: note: class 'VortexSystem' does not conform to the 'Sendable' protocol
public class VortexSystem: Codable, Identifiable, Equatable, Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Splash.swift:14:23: note: add '@MainActor' to make static property 'splash' part of global actor 'MainActor'
public static let splash: VortexSystem = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Splash.swift:14:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let splash: VortexSystem = {
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal armv7k Compiling Lerping.swift, RandomSpread.swift, Confetti.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal arm64 Compiling\ VortexViewReader.swift,\ GeneratedAssetSymbols.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Views/VortexViewReader.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Views/VortexViewReader.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal armv7k Compiling VortexSystemPreferenceKey.swift, VortexView.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal arm64_32 Compiling\ VortexViewReader.swift,\ GeneratedAssetSymbols.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Views/VortexViewReader.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Views/VortexViewReader.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/DerivedSources/GeneratedAssetSymbols.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal armv7k Compiling Fire.swift, Fireflies.swift, Fireworks.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal armv7k Compiling\ Snow.swift,\ Spark.swift,\ Splash.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Snow.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Spark.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Splash.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Snow.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Snow.swift:12:23: warning: static property 'snow' is not concurrency-safe because non-'Sendable' type 'VortexSystem' may have shared mutable state; this is an error in the Swift 6 language mode
public static let snow: VortexSystem = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift:11:14: note: class 'VortexSystem' does not conform to the 'Sendable' protocol
public class VortexSystem: Codable, Identifiable, Equatable, Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Snow.swift:12:23: note: add '@MainActor' to make static property 'snow' part of global actor 'MainActor'
public static let snow: VortexSystem = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Snow.swift:12:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let snow: VortexSystem = {
^
nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Spark.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Spark.swift:13:23: warning: static property 'spark' is not concurrency-safe because non-'Sendable' type 'VortexSystem' may have shared mutable state; this is an error in the Swift 6 language mode
public static let spark: VortexSystem = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift:11:14: note: class 'VortexSystem' does not conform to the 'Sendable' protocol
public class VortexSystem: Codable, Identifiable, Equatable, Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Spark.swift:13:23: note: add '@MainActor' to make static property 'spark' part of global actor 'MainActor'
public static let spark: VortexSystem = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Spark.swift:13:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let spark: VortexSystem = {
^
nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Splash.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Splash.swift:14:23: warning: static property 'splash' is not concurrency-safe because non-'Sendable' type 'VortexSystem' may have shared mutable state; this is an error in the Swift 6 language mode
public static let splash: VortexSystem = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift:11:14: note: class 'VortexSystem' does not conform to the 'Sendable' protocol
public class VortexSystem: Codable, Identifiable, Equatable, Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Splash.swift:14:23: note: add '@MainActor' to make static property 'splash' part of global actor 'MainActor'
public static let splash: VortexSystem = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Splash.swift:14:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let splash: VortexSystem = {
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling Snow.swift, Spark.swift, Splash.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal arm64_32 Compiling\ resource_bundle_accessor.swift,\ Angle+Codable.swift,\ Array-InterpolatedColor.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Helpers/Angle+Codable.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Helpers/Array-InterpolatedColor.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/DerivedSources/resource_bundle_accessor.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Helpers/Angle+Codable.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Helpers/Array-InterpolatedColor.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64_32 Compiling DefaultSymbols.swift, Color.swift, ColorMode.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal arm64_32 Compiling\ VortexSystem-Behavior.swift,\ VortexSystem.swift,\ VortexProxy.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem-Behavior.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Views/VortexProxy.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem-Behavior.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Views/VortexProxy.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64_32 Compiling Fire.swift, Fireflies.swift, Fireworks.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal armv7k Compiling\ resource_bundle_accessor.swift,\ Angle+Codable.swift,\ Array-InterpolatedColor.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Helpers/Angle+Codable.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Helpers/Array-InterpolatedColor.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/DerivedSources/resource_bundle_accessor.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Helpers/Angle+Codable.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Helpers/Array-InterpolatedColor.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling VortexSystem-Behavior.swift, VortexSystem.swift, VortexProxy.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal arm64_32 Compiling\ Particle.swift,\ Shape.swift,\ SpawnOccasion.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Particle.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Shape.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/SpawnOccasion.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Particle.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/Shape.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/SpawnOccasion.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64_32 Compiling VortexSystemPreferenceKey.swift, VortexView.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal arm64 Compiling\ Magic.swift,\ Rain.swift,\ Smoke.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Magic.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Rain.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Smoke.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Magic.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Magic.swift:13:23: warning: static property 'magic' is not concurrency-safe because non-'Sendable' type 'VortexSystem' may have shared mutable state; this is an error in the Swift 6 language mode
public static let magic: VortexSystem = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift:11:14: note: class 'VortexSystem' does not conform to the 'Sendable' protocol
public class VortexSystem: Codable, Identifiable, Equatable, Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Magic.swift:13:23: note: add '@MainActor' to make static property 'magic' part of global actor 'MainActor'
public static let magic: VortexSystem = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Magic.swift:13:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let magic: VortexSystem = {
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Rain.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Rain.swift:12:23: warning: static property 'rain' is not concurrency-safe because non-'Sendable' type 'VortexSystem' may have shared mutable state; this is an error in the Swift 6 language mode
public static let rain: VortexSystem = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift:11:14: note: class 'VortexSystem' does not conform to the 'Sendable' protocol
public class VortexSystem: Codable, Identifiable, Equatable, Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Rain.swift:12:23: note: add '@MainActor' to make static property 'rain' part of global actor 'MainActor'
public static let rain: VortexSystem = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Rain.swift:12:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let rain: VortexSystem = {
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Smoke.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Smoke.swift:12:23: warning: static property 'smoke' is not concurrency-safe because non-'Sendable' type 'VortexSystem' may have shared mutable state; this is an error in the Swift 6 language mode
public static let smoke: VortexSystem = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift:11:14: note: class 'VortexSystem' does not conform to the 'Sendable' protocol
public class VortexSystem: Codable, Identifiable, Equatable, Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Smoke.swift:12:23: note: add '@MainActor' to make static property 'smoke' part of global actor 'MainActor'
public static let smoke: VortexSystem = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Smoke.swift:12:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let smoke: VortexSystem = {
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Compiling Snow.swift, Spark.swift, Splash.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal arm64 Compiling\ VortexSystemPreferenceKey.swift,\ VortexView.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Views/VortexSystemPreferenceKey.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Views/VortexView.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Views/VortexSystemPreferenceKey.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Views/VortexView.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling VortexViewReader.swift, GeneratedAssetSymbols.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal armv7k Compiling\ VortexSystem-Behavior.swift,\ VortexSystem.swift,\ VortexProxy.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem-Behavior.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Views/VortexProxy.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem-Behavior.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Views/VortexProxy.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64_32 Compiling Lerping.swift, RandomSpread.swift, Confetti.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal arm64 Compiling\ Fire.swift,\ Fireflies.swift,\ Fireworks.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fire.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fireflies.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fireworks.swift (in target 'Vortex' from project 'Vortex')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fire.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fire.swift:13:23: warning: static property 'fire' is not concurrency-safe because non-'Sendable' type 'VortexSystem' may have shared mutable state; this is an error in the Swift 6 language mode
public static let fire: VortexSystem = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift:11:14: note: class 'VortexSystem' does not conform to the 'Sendable' protocol
public class VortexSystem: Codable, Identifiable, Equatable, Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fire.swift:13:23: note: add '@MainActor' to make static property 'fire' part of global actor 'MainActor'
public static let fire: VortexSystem = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fire.swift:13:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let fire: VortexSystem = {
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fireflies.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fireflies.swift:13:23: warning: static property 'fireflies' is not concurrency-safe because non-'Sendable' type 'VortexSystem' may have shared mutable state; this is an error in the Swift 6 language mode
public static let fireflies: VortexSystem = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift:11:14: note: class 'VortexSystem' does not conform to the 'Sendable' protocol
public class VortexSystem: Codable, Identifiable, Equatable, Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fireflies.swift:13:23: note: add '@MainActor' to make static property 'fireflies' part of global actor 'MainActor'
public static let fireflies: VortexSystem = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fireflies.swift:13:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let fireflies: VortexSystem = {
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fireworks.swift (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fireworks.swift:14:23: warning: static property 'fireworks' is not concurrency-safe because non-'Sendable' type 'VortexSystem' may have shared mutable state; this is an error in the Swift 6 language mode
public static let fireworks: VortexSystem = {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/System/VortexSystem.swift:11:14: note: class 'VortexSystem' does not conform to the 'Sendable' protocol
public class VortexSystem: Codable, Identifiable, Equatable, Hashable {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fireworks.swift:14:23: note: add '@MainActor' to make static property 'fireworks' part of global actor 'MainActor'
public static let fireworks: VortexSystem = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Fireworks.swift:14:23: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static let fireworks: VortexSystem = {
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64_32 Compiling VortexViewReader.swift, GeneratedAssetSymbols.swift (in target 'Vortex' from project 'Vortex')
SwiftDriverJobDiscovery normal arm64_32 Compiling Magic.swift, Rain.swift, Smoke.swift (in target 'Vortex' from project 'Vortex')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex_Vortex.bundle (in target 'Vortex_Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex_Vortex.bundle
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex_Vortex.bundle (in target 'Vortex_Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace
/usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex_Vortex.bundle
SwiftDriverJobDiscovery normal armv7k Compiling Snow.swift, Spark.swift, Splash.swift (in target 'Vortex' from project 'Vortex')
SwiftDriverJobDiscovery normal arm64 Compiling Magic.swift, Rain.swift, Smoke.swift (in target 'Vortex' from project 'Vortex')
SwiftDriverJobDiscovery normal arm64_32 Compiling resource_bundle_accessor.swift, Angle+Codable.swift, Array-InterpolatedColor.swift (in target 'Vortex' from project 'Vortex')
SwiftDriverJobDiscovery normal armv7k Compiling resource_bundle_accessor.swift, Angle+Codable.swift, Array-InterpolatedColor.swift (in target 'Vortex' from project 'Vortex')
SwiftDriverJobDiscovery normal arm64_32 Compiling Particle.swift, Shape.swift, SpawnOccasion.swift (in target 'Vortex' from project 'Vortex')
SwiftDriverJobDiscovery normal arm64 Compiling VortexSystemPreferenceKey.swift, VortexView.swift (in target 'Vortex' from project 'Vortex')
SwiftDriverJobDiscovery normal arm64 Compiling Fire.swift, Fireflies.swift, Fireworks.swift (in target 'Vortex' from project 'Vortex')
SwiftDriver\ Compilation Vortex normal arm64 com.apple.xcode.tools.swift.compiler (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Vortex -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/Vortex.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64-apple-watchos8.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/Vortex-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/Vortex.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/Vortex_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/Vortex-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/Binary/Vortex.o normal arm64 (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos8.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/Vortex.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/Vortex_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/Vortex_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/Vortex.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/Binary/Vortex.o
SwiftDriverJobDiscovery normal arm64_32 Compiling VortexSystem-Behavior.swift, VortexSystem.swift, VortexProxy.swift (in target 'Vortex' from project 'Vortex')
SwiftDriver\ Compilation Vortex normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Vortex -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64_32/Vortex.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target arm64_32-apple-watchos8.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64_32/Vortex-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64_32/Vortex.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64_32/Vortex_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64_32/Vortex-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64_32/Binary/Vortex.o normal arm64_32 (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos8.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64_32/Vortex.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64_32/Vortex_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64_32/Vortex_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64_32/Vortex.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64_32/Binary/Vortex.o
SwiftDriverJobDiscovery normal armv7k Compiling VortexSystem-Behavior.swift, VortexSystem.swift, VortexProxy.swift (in target 'Vortex' from project 'Vortex')
SwiftDriver\ Compilation Vortex normal armv7k com.apple.xcode.tools.swift.compiler (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name Vortex -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/Vortex.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -target armv7k-apple-watchos8.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -I /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -F /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/Vortex-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/Vortex.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -package-name spi_builder_workspace -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/Vortex_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/Vortex-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/Binary/Vortex.o normal armv7k (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos8.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/Vortex.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/Vortex_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/Vortex_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/Vortex.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/Binary/Vortex.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex.o normal arm64\ armv7k\ arm64_32 (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/Binary/Vortex.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/Binary/Vortex.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64_32/Binary/Vortex.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex.o
ExtractAppIntentsMetadata (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name Vortex --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk --xcode-version 16E140 --platform-family watchOS --deployment-target 8.0 --bundle-identifier spi-builder-workspace.Vortex --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex.appintents --target-triple arm64-apple-watchos8.0 --target-triple armv7k-apple-watchos8.0 --target-triple arm64_32-apple-watchos8.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/Vortex_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/Vortex_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64_32/Vortex_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64_32/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/Vortex.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/Vortex.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64_32/Vortex.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Vortex.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Vortex.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/Vortex.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/Vortex.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64_32/Vortex.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-04-30 04:06:28.752 appintentsmetadataprocessor[755:4655] Starting appintentsmetadataprocessor export
2025-04-30 04:06:28.792 appintentsmetadataprocessor[755:4655] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex.o (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/Vortex.o
** BUILD SUCCEEDED **
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "Vortex",
"name" : "Vortex",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "15.0"
},
{
"name" : "macos",
"version" : "12.0"
},
{
"name" : "maccatalyst",
"version" : "15.0"
},
{
"name" : "tvos",
"version" : "15.0"
},
{
"name" : "watchos",
"version" : "8.0"
},
{
"name" : "visionos",
"version" : "1.0"
}
],
"products" : [
{
"name" : "Vortex",
"targets" : [
"Vortex"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "VortexTests",
"module_type" : "SwiftTarget",
"name" : "VortexTests",
"path" : "Tests/VortexTests",
"sources" : [
"VortexTests.swift"
],
"target_dependencies" : [
"Vortex"
],
"type" : "test"
},
{
"c99name" : "Vortex",
"module_type" : "SwiftTarget",
"name" : "Vortex",
"path" : "Sources/Vortex",
"product_memberships" : [
"Vortex"
],
"sources" : [
"Helpers/Angle+Codable.swift",
"Helpers/Array-InterpolatedColor.swift",
"Helpers/Lerping.swift",
"Helpers/RandomSpread.swift",
"Presets/Confetti.swift",
"Presets/Fire.swift",
"Presets/Fireflies.swift",
"Presets/Fireworks.swift",
"Presets/Magic.swift",
"Presets/Rain.swift",
"Presets/Smoke.swift",
"Presets/Snow.swift",
"Presets/Spark.swift",
"Presets/Splash.swift",
"Resources/DefaultSymbols.swift",
"System/Color.swift",
"System/ColorMode.swift",
"System/Particle.swift",
"System/Shape.swift",
"System/SpawnOccasion.swift",
"System/VortexSystem-Behavior.swift",
"System/VortexSystem.swift",
"Views/VortexProxy.swift",
"Views/VortexSystemPreferenceKey.swift",
"Views/VortexView.swift",
"Views/VortexViewReader.swift"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
Done.