Build Information
Failed to build Vortex, reference main (e611ef
), with Swift 6.1 for watchOS using Xcode 16.3 on 2 May 2025 12:38:40 UTC.
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
Build Log
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)
SwiftEmitModule normal armv7k Emitting\ module\ for\ Vortex (in target 'Vortex' from project 'Vortex')
EmitSwiftModule normal armv7k (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)
/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)
/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)
/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)
/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)
/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)
/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)
/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)
/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)
/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)
/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)
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ Vortex (in target 'Vortex' from project 'Vortex')
EmitSwiftModule normal arm64_32 (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)
/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)
/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)
/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)
/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)
/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)
/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)
/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)
/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)
/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)
/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 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)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:43:36: error: 'resolve(in:)' is only available in watchOS 10.0 or newer
let components = color.resolve(in: environment)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:43:36: note: add 'if #available' version check
let components = color.resolve(in: environment)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:38:24: note: add @available attribute to enclosing static method
public static func confetti(
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:10:1: note: add @available attribute to enclosing extension
extension VortexSystem {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:46:40: error: 'red' is only available in watchOS 10.0 or newer
red: Double(components.red),
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:46:40: note: add 'if #available' version check
red: Double(components.red),
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:38:24: note: add @available attribute to enclosing static method
public static func confetti(
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:10:1: note: add @available attribute to enclosing extension
extension VortexSystem {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:47:42: error: 'green' is only available in watchOS 10.0 or newer
green: Double(components.green),
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:47:42: note: add 'if #available' version check
green: Double(components.green),
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:38:24: note: add @available attribute to enclosing static method
public static func confetti(
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:10:1: note: add @available attribute to enclosing extension
extension VortexSystem {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:48:41: error: 'blue' is only available in watchOS 10.0 or newer
blue: Double(components.blue),
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:48:41: note: add 'if #available' version check
blue: Double(components.blue),
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:38:24: note: add @available attribute to enclosing static method
public static func confetti(
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:10:1: note: add @available attribute to enclosing extension
extension VortexSystem {
^
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)
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
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
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
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
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 arm64_32 Emitting module for Vortex (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)
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')
Failed frontend command:
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Helpers/Lerping.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Helpers/RandomSpread.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.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 /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 /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 /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 /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 /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 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Views/VortexSystemPreferenceKey.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Views/VortexView.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 -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/supplementaryOutputs-5 -target arm64-apple-watchos8.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -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 -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/Vortex_const_extract_protocols.json -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures -enable-experimental-feature DebugDescriptionMacro -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/swift-overrides.hmap -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 -module-name Vortex -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.4 -target-sdk-name watchos11.4 -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -in-process-plugin-server-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/libSwiftInProcPluginServer.dylib -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/Lerping.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/RandomSpread.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/Confetti.o -index-unit-output-path /Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/Lerping.o -index-unit-output-path /Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/RandomSpread.o -index-unit-output-path /Vortex.build/Debug-watchos/Vortex.build/Objects-normal/arm64/Confetti.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
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)
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:43:36: error: 'resolve(in:)' is only available in watchOS 10.0 or newer
let components = color.resolve(in: environment)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:43:36: note: add 'if #available' version check
let components = color.resolve(in: environment)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:38:24: note: add @available attribute to enclosing static method
public static func confetti(
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:10:1: note: add @available attribute to enclosing extension
extension VortexSystem {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:46:40: error: 'red' is only available in watchOS 10.0 or newer
red: Double(components.red),
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:46:40: note: add 'if #available' version check
red: Double(components.red),
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:38:24: note: add @available attribute to enclosing static method
public static func confetti(
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:10:1: note: add @available attribute to enclosing extension
extension VortexSystem {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:47:42: error: 'green' is only available in watchOS 10.0 or newer
green: Double(components.green),
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:47:42: note: add 'if #available' version check
green: Double(components.green),
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:38:24: note: add @available attribute to enclosing static method
public static func confetti(
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:10:1: note: add @available attribute to enclosing extension
extension VortexSystem {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:48:41: error: 'blue' is only available in watchOS 10.0 or newer
blue: Double(components.blue),
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:48:41: note: add 'if #available' version check
blue: Double(components.blue),
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:38:24: note: add @available attribute to enclosing static method
public static func confetti(
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:10:1: note: add @available attribute to enclosing extension
extension VortexSystem {
^
SwiftDriverJobDiscovery normal arm64 Emitting module for Vortex (in target 'Vortex' from project 'Vortex')
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
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
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
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')
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
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
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
** BUILD FAILED **
The following build commands failed:
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift (in target 'Vortex' from project 'Vortex')
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/Presets/Confetti.swift (in target 'Vortex' from project 'Vortex')
Building workspace spi-builder-workspace with scheme Vortex
(4 failures)
Command line invocation:
/Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -resolvePackageDependencies
Resolve Package Graph
Resolved source packages:
Vortex: /Users/admin/builder/spi-builder-workspace
resolved source packages: Vortex
{
"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"
}
{
"workspace" : {
"name" : "spi-builder-workspace",
"schemes" : [
"Vortex"
]
}
}
Running build ...
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
Command line invocation:
/Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/xcodebuild -IDEClonedSourcePackagesDirPathOverride=/Users/admin/builder/spi-builder-workspace/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath /Users/admin/builder/spi-builder-workspace/.derivedData build -scheme Vortex -destination generic/platform=watchOS
Resolve Package Graph
Resolved source packages:
Vortex: /Users/admin/builder/spi-builder-workspace
ComputePackagePrebuildTargetDependencyGraph
Prepare packages
CreateBuildRequest
SendProjectDescription
CreateBuildOperation
ComputeTargetDependencyGraph
note: Building targets in dependency order
note: Target dependency graph (3 targets)
Target 'Vortex' in project 'Vortex'
➜ Explicit dependency on target 'Vortex' in project 'Vortex'
➜ Explicit dependency on target 'Vortex_Vortex' in project 'Vortex'
Target 'Vortex' in project 'Vortex'
➜ Explicit dependency on target 'Vortex_Vortex' in project 'Vortex'
Target 'Vortex_Vortex' in project 'Vortex' (no dependencies)
GatherProvisioningInputs
CreateBuildDescription
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/usr/bin/actool --version --output-format xml1
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -v -E -dM -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -x c -c /dev/null
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc --version
ExecuteExternalTool /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld -version_details
Build description signature: f1ee57459cf147219c0b9baf8c514e4b
Build description path: /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/XCBuildData/f1ee57459cf147219c0b9baf8c514e4b.xcbuilddata
ClangStatCache /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang-stat-cache /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -o /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache
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
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
SwiftDriver 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-SwiftDriver -- /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 -DXcode -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
SwiftDriver 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-SwiftDriver -- /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 -DXcode -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
SwiftDriver 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-SwiftDriver -- /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 -DXcode -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
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
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:43:36: error: 'resolve(in:)' is only available in watchOS 10.0 or newer
let components = color.resolve(in: environment)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:43:36: note: add 'if #available' version check
let components = color.resolve(in: environment)
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:38:24: note: add @available attribute to enclosing static method
public static func confetti(
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:10:1: note: add @available attribute to enclosing extension
extension VortexSystem {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:46:40: error: 'red' is only available in watchOS 10.0 or newer
red: Double(components.red),
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:46:40: note: add 'if #available' version check
red: Double(components.red),
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:38:24: note: add @available attribute to enclosing static method
public static func confetti(
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:10:1: note: add @available attribute to enclosing extension
extension VortexSystem {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:47:42: error: 'green' is only available in watchOS 10.0 or newer
green: Double(components.green),
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:47:42: note: add 'if #available' version check
green: Double(components.green),
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:38:24: note: add @available attribute to enclosing static method
public static func confetti(
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:10:1: note: add @available attribute to enclosing extension
extension VortexSystem {
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:48:41: error: 'blue' is only available in watchOS 10.0 or newer
blue: Double(components.blue),
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:48:41: note: add 'if #available' version check
blue: Double(components.blue),
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:38:24: note: add @available attribute to enclosing static method
public static func confetti(
^
/Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.swift:10:1: note: add @available attribute to enclosing extension
extension VortexSystem {
^
Failed frontend command:
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /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 -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Helpers/Lerping.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Helpers/RandomSpread.swift -primary-file /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/Confetti.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 /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 /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 /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 /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 /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 /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Views/VortexSystemPreferenceKey.swift /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Views/VortexView.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 -supplementary-output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/supplementaryOutputs-5 -target armv7k-apple-watchos8.0 -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -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 -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -Onone -D SWIFT_PACKAGE -D DEBUG -D Xcode -serialize-debugging-options -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/Vortex_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -empty-abi-descriptor -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/watchos11.4-22T246-43efb940ff07ba2497b70ec94253f576.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/swift-overrides.hmap -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 -module-name Vortex -package-name spi_builder_workspace -frontend-parseable-output -disable-clang-spi -target-sdk-version 11.4 -target-sdk-name watchos11.4 -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/bin/swift-plugin-server -in-process-plugin-server-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/libSwiftInProcPluginServer.dylib -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/Lerping.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/RandomSpread.o -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/Confetti.o -index-unit-output-path /Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/Lerping.o -index-unit-output-path /Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/RandomSpread.o -index-unit-output-path /Vortex.build/Debug-watchos/Vortex.build/Objects-normal/armv7k/Confetti.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
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
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
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
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
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
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
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
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
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\ 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 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
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
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
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
SwiftEmitModule normal arm64_32 Emitting\ module\ for\ Vortex (in target 'Vortex' from project 'Vortex')
EmitSwiftModule normal arm64_32 (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftEmitModule normal arm64 Emitting\ module\ for\ Vortex (in target 'Vortex' from project 'Vortex')
EmitSwiftModule normal arm64 (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftEmitModule normal armv7k Emitting\ module\ for\ Vortex (in target 'Vortex' from project 'Vortex')
EmitSwiftModule normal armv7k (in target 'Vortex' from project 'Vortex')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64_32 Emitting module for Vortex (in target 'Vortex' from project 'Vortex')
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 -DXcode -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
SwiftDriverJobDiscovery normal arm64 Emitting module for Vortex (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
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 -DXcode -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
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 -DXcode -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
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
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
SwiftDriverJobDiscovery normal arm64_32 Compiling Particle.swift, Shape.swift, SpawnOccasion.swift (in target 'Vortex' from project 'Vortex')
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
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.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\ 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
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
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')
SwiftDriverJobDiscovery normal armv7k Compiling Snow.swift, Spark.swift, Splash.swift (in target 'Vortex' from project 'Vortex')
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')
SwiftDriverJobDiscovery normal armv7k Compiling Fire.swift, Fireflies.swift, Fireworks.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')
Command SwiftCompile failed with a nonzero exit code
** BUILD FAILED **
The following build commands failed:
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/Vortex/Presets/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 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')
Building workspace spi-builder-workspace with scheme Vortex
(4 failures)
BUILD FAILURE 6.1 watchOS