Build Information
Successful build of ColorPaletteCodable, reference main (bae0a8
), with Swift 6.1 for watchOS using Xcode 16.3 on 31 May 2025 17:12:45 UTC.
Swift 6 data race errors: 108
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme ColorPaletteCodable-Package -destination generic/platform=watchOS OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete -enable-upcoming-feature StrictConcurrency -enable-upcoming-feature DisableOutwardActorInference -enable-upcoming-feature GlobalActorIsolatedTypesUsability -enable-upcoming-feature InferSendableFromCaptures
Build Log
^
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/PAL+GradientsCoder.swift:27:17: note: protocol 'PAL_GradientsCoder' does not conform to the 'Sendable' protocol
public protocol PAL_GradientsCoder {
^
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/PAL+GradientsCoder.swift:23:13: note: add '@MainActor' to make let 'AvailableGradientCoders' part of global actor 'MainActor'
private let AvailableGradientCoders: [PAL_GradientsCoder] =
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/PAL+GradientsCoder.swift:23:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let AvailableGradientCoders: [PAL_GradientsCoder] =
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/gradient/PAL+GradientsFormat.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/PAL+Palette.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k Compiling\ ProcreateSwatchesCoder.swift,\ RGBAPaletteCoder.swift,\ RGBPaletteCoder.swift,\ RIFFPaletteCoder.swift,\ SKPPaletteCoder.swift,\ SVGPaletteCoder.swift,\ ScribusXMLPaletteCoder.swift,\ SimplePaletteCoder.swift,\ SketchPaletteCoder.swift,\ SwatchbookerCoder.swift,\ SwiftPaletteCoder.swift,\ VGA18BitPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/ProcreateSwatchesCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/RGBAPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/RGBPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/RIFFPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/SKPPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/SVGPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/ScribusXMLPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/SimplePaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/SketchPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/SwatchbookerCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/SwiftPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/VGA18BitPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/ProcreateSwatchesCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/RGBAPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/RGBAPaletteCoder.swift:47:14: warning: static property 'regex' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
static let regex = try! DSFRegex(#"^#?\s*([a-f0-9]{3,8})\s*(.*)\s*"#, options: .caseInsensitive)
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
public class DSFRegex {
^
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/RGBAPaletteCoder.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
import DSFRegex
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/RGBAPaletteCoder.swift:47:14: note: add '@MainActor' to make static property 'regex' part of global actor 'MainActor'
static let regex = try! DSFRegex(#"^#?\s*([a-f0-9]{3,8})\s*(.*)\s*"#, options: .caseInsensitive)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/RGBAPaletteCoder.swift:47:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let regex = try! DSFRegex(#"^#?\s*([a-f0-9]{3,8})\s*(.*)\s*"#, options: .caseInsensitive)
^
nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/RGBPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/RGBPaletteCoder.swift:44:14: warning: static property 'regex' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
static let regex = try! DSFRegex(#"^#?\s*([a-f0-9]{3,8})\s*(.*)\s*"#, options: .caseInsensitive)
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
public class DSFRegex {
^
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/RGBPaletteCoder.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
import DSFRegex
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/RGBPaletteCoder.swift:44:14: note: add '@MainActor' to make static property 'regex' part of global actor 'MainActor'
static let regex = try! DSFRegex(#"^#?\s*([a-f0-9]{3,8})\s*(.*)\s*"#, options: .caseInsensitive)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/RGBPaletteCoder.swift:44:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let regex = try! DSFRegex(#"^#?\s*([a-f0-9]{3,8})\s*(.*)\s*"#, options: .caseInsensitive)
^
nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/RIFFPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/SKPPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/SKPPaletteCoder.swift:38:13: warning: let '__rgbColorRegex' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
private let __rgbColorRegex = try! DSFRegex(#"color\(\['RGB', \[(\b\d+(?:\.\d+)?\b), (\b\d+(?:\.\d+)?\b), (\b\d+(?:\.\d+)?\b)\], (\b\d+(?:\.\d+)?\b),.*?'(.*?)'"#)
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
public class DSFRegex {
^
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/SKPPaletteCoder.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
import DSFRegex
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/SKPPaletteCoder.swift:38:13: note: add '@MainActor' to make let '__rgbColorRegex' part of global actor 'MainActor'
private let __rgbColorRegex = try! DSFRegex(#"color\(\['RGB', \[(\b\d+(?:\.\d+)?\b), (\b\d+(?:\.\d+)?\b), (\b\d+(?:\.\d+)?\b)\], (\b\d+(?:\.\d+)?\b),.*?'(.*?)'"#)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/SKPPaletteCoder.swift:38:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let __rgbColorRegex = try! DSFRegex(#"color\(\['RGB', \[(\b\d+(?:\.\d+)?\b), (\b\d+(?:\.\d+)?\b), (\b\d+(?:\.\d+)?\b)\], (\b\d+(?:\.\d+)?\b),.*?'(.*?)'"#)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/SKPPaletteCoder.swift:39:13: warning: let '__paletteNameRegex' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
private let __paletteNameRegex = try! DSFRegex(#"set_name\((?:.*?)'(.*?)'\)"#)
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
public class DSFRegex {
^
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/SKPPaletteCoder.swift:39:13: note: add '@MainActor' to make let '__paletteNameRegex' part of global actor 'MainActor'
private let __paletteNameRegex = try! DSFRegex(#"set_name\((?:.*?)'(.*?)'\)"#)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/SKPPaletteCoder.swift:39:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
private let __paletteNameRegex = try! DSFRegex(#"set_name\((?:.*?)'(.*?)'\)"#)
^
nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/SVGPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/ScribusXMLPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/SimplePaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/SketchPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/SketchPaletteCoder.swift:28:21: warning: static property 'utTypeString' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var utTypeString = "com.bohemiancoding.sketch.palette" // conforms to `public.json`
^
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/SketchPaletteCoder.swift:28:21: note: convert 'utTypeString' to a 'let' constant to make 'Sendable' shared state immutable
public static var utTypeString = "com.bohemiancoding.sketch.palette" // conforms to `public.json`
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/SketchPaletteCoder.swift:28:21: note: add '@MainActor' to make static property 'utTypeString' part of global actor 'MainActor'
public static var utTypeString = "com.bohemiancoding.sketch.palette" // conforms to `public.json`
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/SketchPaletteCoder.swift:28:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var utTypeString = "com.bohemiancoding.sketch.palette" // conforms to `public.json`
^
nonisolated(unsafe)
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/SwatchbookerCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/SwiftPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/VGA18BitPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal armv7k Compiling PAL+Types.swift, PAL+UniformTypeIdentifiers.swift, AdobeGradientsCoder.swift, CSSGradientCoder.swift, ColorPaletteTablesCoder.swift, DCGGradientCoder.swift, GIMPGradientCoder.swift, GNUPlotGradientCoder.swift, JSONGradientCoder.swift, PaintShopProGradientCoder.swift, SVGGradientCoder.swift, SwiftGenGradientCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
SwiftCompile normal arm64 Compiling\ PAL+PaletteCoder.swift,\ PAL+PaletteCoderProtocol.swift,\ PAL+PaletteFormat.swift,\ PAL+CGColor.swift,\ PAL+NSColorList.swift,\ PAL+SwiftUI.swift,\ PAL+iOS.swift,\ PAL+macOS.swift,\ BytesParser+extensions.swift,\ CGColor+HexExtensions.swift,\ CGColor+extensions.swift,\ CGContext+exensions.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/PAL+PaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/PAL+PaletteCoderProtocol.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/PAL+PaletteFormat.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/platform/PAL+CGColor.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/platform/PAL+NSColorList.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/platform/PAL+SwiftUI.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/platform/PAL+iOS.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/platform/PAL+macOS.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/private/BytesParser+extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/private/CGColor+HexExtensions.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/private/CGColor+extensions.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/private/CGContext+exensions.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/PAL+PaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/PAL+PaletteCoder.swift:29:13: warning: static property 'TextBasedCoders' is not concurrency-safe because non-'Sendable' type '[any PAL_PaletteCoder]' may have shared mutable state; this is an error in the Swift 6 language mode
static let TextBasedCoders: [PAL_PaletteCoder] = [
^
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/PAL+PaletteCoderProtocol.swift:28:17: note: protocol 'PAL_PaletteCoder' does not conform to the 'Sendable' protocol
public protocol PAL_PaletteCoder {
^
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/PAL+PaletteCoder.swift:29:13: note: add '@MainActor' to make static property 'TextBasedCoders' part of global actor 'MainActor'
static let TextBasedCoders: [PAL_PaletteCoder] = [
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/PAL+PaletteCoder.swift:29:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let TextBasedCoders: [PAL_PaletteCoder] = [
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/PAL+PaletteCoderProtocol.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/palette/PAL+PaletteFormat.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/platform/PAL+CGColor.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/platform/PAL+NSColorList.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/platform/PAL+SwiftUI.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/platform/PAL+iOS.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/platform/PAL+macOS.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/private/BytesParser+extensions.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/private/CGColor+HexExtensions.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/private/CGColor+extensions.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/private/CGContext+exensions.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64_32 Compiling CGGradient+extensions.swift, Collection+extensions.swift, Extensions.swift, HSBHelpers.swift, HexColorUtilities.swift, InputStream+extensions.swift, NumberFormatter+extensions.swift, OSLogger.swift, OkLab+priv.swift, Scanner+extensions.swift, String+decoding.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
SwiftCompile normal arm64 Compiling\ resource_bundle_accessor.swift,\ PAL+ColorConversions.swift,\ PAL+Common.swift,\ PAL+CoreGraphics.swift,\ PAL+Errors.swift,\ PAL+Functions.swift,\ PAL+Group.swift,\ PAL+Image.swift,\ PAL+Pasteboard+iOS.swift,\ PAL+Pasteboard+macOS.swift,\ PAL+StandardColors.swift,\ PAL+Temperature.swift /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/DerivedSources/resource_bundle_accessor.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+ColorConversions.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+Common.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+CoreGraphics.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+Errors.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+Functions.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+Group.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+Image.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+Pasteboard+iOS.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+Pasteboard+macOS.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+Temperature.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/DerivedSources/resource_bundle_accessor.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+ColorConversions.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+ColorConversions.swift:36:12: warning: var 'PAL_ColorSpaceConverter' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public var PAL_ColorSpaceConverter: PAL_ColorSpaceConvertible = {
^
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+ColorConversions.swift:36:12: note: convert 'PAL_ColorSpaceConverter' to a 'let' constant to make 'Sendable' shared state immutable
public var PAL_ColorSpaceConverter: PAL_ColorSpaceConvertible = {
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+ColorConversions.swift:36:12: note: add '@MainActor' to make var 'PAL_ColorSpaceConverter' part of global actor 'MainActor'
public var PAL_ColorSpaceConverter: PAL_ColorSpaceConvertible = {
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+ColorConversions.swift:36:12: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public var PAL_ColorSpaceConverter: PAL_ColorSpaceConvertible = {
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+Common.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+CoreGraphics.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+Errors.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+Errors.swift:51:8: warning: associated value 'unsupportedColorspace' of 'Sendable'-conforming enum 'CommonError' has non-sendable type 'PAL.ColorSpace'; this is an error in the Swift 6 language mode
case unsupportedColorspace(PAL.ColorSpace)
^
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+Types.swift:24:7: note: consider making enum 'ColorSpace' conform to the 'Sendable' protocol
enum ColorSpace: String, Codable {
^
, Sendable
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+Functions.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+Group.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+Image.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+Pasteboard+iOS.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+Pasteboard+macOS.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:26:13: warning: static property 'black' is not concurrency-safe because non-'Sendable' type 'PAL.Color' may have shared mutable state; this is an error in the Swift 6 language mode
static let black = rgbf(0.0, 0.0, 0.0, 1.0)
^
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color.swift:29:9: note: consider making struct 'Color' conform to the 'Sendable' protocol
struct Color: Equatable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:26:13: note: add '@MainActor' to make static property 'black' part of global actor 'MainActor'
static let black = rgbf(0.0, 0.0, 0.0, 1.0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:26:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let black = rgbf(0.0, 0.0, 0.0, 1.0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:28:13: warning: static property 'clear' is not concurrency-safe because non-'Sendable' type 'PAL.Color' may have shared mutable state; this is an error in the Swift 6 language mode
static let clear = rgbf(0.0, 0.0, 0.0, 0.0)
^
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color.swift:29:9: note: consider making struct 'Color' conform to the 'Sendable' protocol
struct Color: Equatable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:28:13: note: add '@MainActor' to make static property 'clear' part of global actor 'MainActor'
static let clear = rgbf(0.0, 0.0, 0.0, 0.0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:28:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let clear = rgbf(0.0, 0.0, 0.0, 0.0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:30:13: warning: static property 'white' is not concurrency-safe because non-'Sendable' type 'PAL.Color' may have shared mutable state; this is an error in the Swift 6 language mode
static let white = rgbf(1.0, 1.0, 1.0, 1.0)
^
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color.swift:29:9: note: consider making struct 'Color' conform to the 'Sendable' protocol
struct Color: Equatable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:30:13: note: add '@MainActor' to make static property 'white' part of global actor 'MainActor'
static let white = rgbf(1.0, 1.0, 1.0, 1.0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:30:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let white = rgbf(1.0, 1.0, 1.0, 1.0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:33:13: warning: static property 'red' is not concurrency-safe because non-'Sendable' type 'PAL.Color' may have shared mutable state; this is an error in the Swift 6 language mode
static let red = rgbf(1.0, 0.0, 0.0, 1.0)
^
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color.swift:29:9: note: consider making struct 'Color' conform to the 'Sendable' protocol
struct Color: Equatable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:33:13: note: add '@MainActor' to make static property 'red' part of global actor 'MainActor'
static let red = rgbf(1.0, 0.0, 0.0, 1.0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:33:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let red = rgbf(1.0, 0.0, 0.0, 1.0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:35:13: warning: static property 'green' is not concurrency-safe because non-'Sendable' type 'PAL.Color' may have shared mutable state; this is an error in the Swift 6 language mode
static let green = rgbf(0.0, 1.0, 0.0, 1.0)
^
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color.swift:29:9: note: consider making struct 'Color' conform to the 'Sendable' protocol
struct Color: Equatable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:35:13: note: add '@MainActor' to make static property 'green' part of global actor 'MainActor'
static let green = rgbf(0.0, 1.0, 0.0, 1.0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:35:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let green = rgbf(0.0, 1.0, 0.0, 1.0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:37:13: warning: static property 'blue' is not concurrency-safe because non-'Sendable' type 'PAL.Color' may have shared mutable state; this is an error in the Swift 6 language mode
static let blue = rgbf(0.0, 0.0, 1.0, 1.0)
^
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color.swift:29:9: note: consider making struct 'Color' conform to the 'Sendable' protocol
struct Color: Equatable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:37:13: note: add '@MainActor' to make static property 'blue' part of global actor 'MainActor'
static let blue = rgbf(0.0, 0.0, 1.0, 1.0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:37:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let blue = rgbf(0.0, 0.0, 1.0, 1.0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:40:13: warning: static property 'cyan' is not concurrency-safe because non-'Sendable' type 'PAL.Color' may have shared mutable state; this is an error in the Swift 6 language mode
static let cyan = cmykf(1.0, 0.0, 0.0, 0.0, 1.0)
^
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color.swift:29:9: note: consider making struct 'Color' conform to the 'Sendable' protocol
struct Color: Equatable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:40:13: note: add '@MainActor' to make static property 'cyan' part of global actor 'MainActor'
static let cyan = cmykf(1.0, 0.0, 0.0, 0.0, 1.0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:40:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let cyan = cmykf(1.0, 0.0, 0.0, 0.0, 1.0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:42:13: warning: static property 'magenta' is not concurrency-safe because non-'Sendable' type 'PAL.Color' may have shared mutable state; this is an error in the Swift 6 language mode
static let magenta = cmykf(0.0, 1.0, 0.0, 0.0, 1.0)
^
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color.swift:29:9: note: consider making struct 'Color' conform to the 'Sendable' protocol
struct Color: Equatable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:42:13: note: add '@MainActor' to make static property 'magenta' part of global actor 'MainActor'
static let magenta = cmykf(0.0, 1.0, 0.0, 0.0, 1.0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:42:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let magenta = cmykf(0.0, 1.0, 0.0, 0.0, 1.0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:44:13: warning: static property 'yellow' is not concurrency-safe because non-'Sendable' type 'PAL.Color' may have shared mutable state; this is an error in the Swift 6 language mode
static let yellow = cmykf(0.0, 0.0, 1.0, 0.0, 1.0)
^
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color.swift:29:9: note: consider making struct 'Color' conform to the 'Sendable' protocol
struct Color: Equatable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:44:13: note: add '@MainActor' to make static property 'yellow' part of global actor 'MainActor'
static let yellow = cmykf(0.0, 0.0, 1.0, 0.0, 1.0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:44:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let yellow = cmykf(0.0, 0.0, 1.0, 0.0, 1.0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:46:13: warning: static property 'key' is not concurrency-safe because non-'Sendable' type 'PAL.Color' may have shared mutable state; this is an error in the Swift 6 language mode
static let key = cmykf(0.0, 0.0, 0.0, 1.0, 1.0)
^
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color.swift:29:9: note: consider making struct 'Color' conform to the 'Sendable' protocol
struct Color: Equatable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:46:13: note: add '@MainActor' to make static property 'key' part of global actor 'MainActor'
static let key = cmykf(0.0, 0.0, 0.0, 1.0, 1.0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:46:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let key = cmykf(0.0, 0.0, 0.0, 1.0, 1.0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:49:13: warning: static property 'pink' is not concurrency-safe because non-'Sendable' type 'PAL.Color' may have shared mutable state; this is an error in the Swift 6 language mode
static let pink = rgbf(1, 0.251, 0.505)
^
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color.swift:29:9: note: consider making struct 'Color' conform to the 'Sendable' protocol
struct Color: Equatable, CustomStringConvertible {
^
, Sendable
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:49:13: note: add '@MainActor' to make static property 'pink' part of global actor 'MainActor'
static let pink = rgbf(1, 0.251, 0.505)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+StandardColors.swift:49:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let pink = rgbf(1, 0.251, 0.505)
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PAL+Temperature.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64 Compiling ProcreateSwatchesCoder.swift, RGBAPaletteCoder.swift, RGBPaletteCoder.swift, RIFFPaletteCoder.swift, SKPPaletteCoder.swift, SVGPaletteCoder.swift, ScribusXMLPaletteCoder.swift, SimplePaletteCoder.swift, SketchPaletteCoder.swift, SwatchbookerCoder.swift, SwiftPaletteCoder.swift, VGA18BitPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
SwiftCompile normal arm64 Compiling\ VGA24BitPaletteCoder.swift,\ PAL+Color+Array.swift,\ PAL+Color+CMYK.swift,\ PAL+Color+Gray.swift,\ PAL+Color+HSB.swift,\ PAL+Color+HSL.swift,\ PAL+Color+Hex.swift,\ PAL+Color+Interpolation.swift,\ PAL+Color+LAB.swift,\ PAL+Color+Modifications.swift,\ PAL+Color+OkLab.swift,\ PAL+Color+RGB.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/VGA24BitPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+Array.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+CMYK.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+Gray.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+HSB.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+HSL.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+Hex.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+Interpolation.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+LAB.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+Modifications.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+OkLab.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+RGB.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/VGA24BitPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+Array.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+CMYK.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+Gray.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+HSB.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+HSL.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+Hex.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+Interpolation.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+LAB.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+Modifications.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+OkLab.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+RGB.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal arm64_32 Compiling PAL+Color+Transferable.swift, PAL+Color+XYZ.swift, PAL+Color.swift, PAL+Colors.swift, PAL+Gradient+Snapshot.swift, PAL+Gradient+SwiftUI.swift, PAL+Gradient.swift, PAL+Gradients+platform.swift, PAL+Gradients.swift, PAL+GradientsCoder.swift, PAL+GradientsFormat.swift, PAL+Palette.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
SwiftCompile normal arm64_32 Compiling\ CorelDraw3PaletteCoder.swift,\ CorelPainterCoder.swift,\ CorelXMLPaletteCoder.swift,\ DCPPaletteCoder.swift,\ GIMPPaletteCoder.swift,\ HEXPaletteCoder.swift,\ ImagePaletteCoder.swift,\ JCWPaletteCoder.swift,\ JSONPaletteCoder.swift,\ OpenOfficePaletteCoder.swift,\ PaintNETPaletteCoder.swift,\ PaintShopProPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CorelDraw3PaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CorelPainterCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CorelXMLPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/DCPPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/GIMPPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/HEXPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/ImagePaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/JCWPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/JSONPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/OpenOfficePaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/PaintNETPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/PaintShopProPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CorelDraw3PaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CorelDraw3PaletteCoder.swift:49:14: warning: static property 'regex' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
static let regex = try! DSFRegex(#""(.*)"[ \t]*([0-9]*\.?[0-9]+)[ \t]*([0-9]*\.?[0-9]+)[ \t]*([0-9]*\.?[0-9]+)[ \t]*([0-9]*\.?[0-9]+)[ \t]*"#)
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
public class DSFRegex {
^
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CorelDraw3PaletteCoder.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
import DSFRegex
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CorelDraw3PaletteCoder.swift:49:14: note: add '@MainActor' to make static property 'regex' part of global actor 'MainActor'
static let regex = try! DSFRegex(#""(.*)"[ \t]*([0-9]*\.?[0-9]+)[ \t]*([0-9]*\.?[0-9]+)[ \t]*([0-9]*\.?[0-9]+)[ \t]*([0-9]*\.?[0-9]+)[ \t]*"#)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CorelDraw3PaletteCoder.swift:49:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let regex = try! DSFRegex(#""(.*)"[ \t]*([0-9]*\.?[0-9]+)[ \t]*([0-9]*\.?[0-9]+)[ \t]*([0-9]*\.?[0-9]+)[ \t]*([0-9]*\.?[0-9]+)[ \t]*"#)
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CorelPainterCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CorelPainterCoder.swift:50:14: warning: static property 'regex' is not concurrency-safe because non-'Sendable' type 'DSFRegex' may have shared mutable state; this is an error in the Swift 6 language mode
static let regex = try! DSFRegex(#"[ \t]*R[ \t]*:[ \t]*([0-9]*\.?[0-9]+)[ \t,]*G[ \t]*:[ \t]*([0-9]*\.?[0-9]+)[ \t,]*B[ \t]*:[ \t]*([0-9]*\.?[0-9]+)[ \t,]*(?:HV[ \t]*:[ \t]*([0-9]*\.?[0-9]+)[ \t,]*)?(?:SV[ \t]*:[ \t]*([0-9]*\.?[0-9]+)[ \t,]*)?(?:VV[ \t]*:[ \t]*([0-9]*\.?[0-9]+)[ \t,]*)?(.*)"#)
^
/Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/DSFRegex/Sources/DSFRegex/DSFRegex.swift:30:14: note: class 'DSFRegex' does not conform to the 'Sendable' protocol
public class DSFRegex {
^
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CorelPainterCoder.swift:20:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'DSFRegex'
import DSFRegex
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CorelPainterCoder.swift:50:14: note: add '@MainActor' to make static property 'regex' part of global actor 'MainActor'
static let regex = try! DSFRegex(#"[ \t]*R[ \t]*:[ \t]*([0-9]*\.?[0-9]+)[ \t,]*G[ \t]*:[ \t]*([0-9]*\.?[0-9]+)[ \t,]*B[ \t]*:[ \t]*([0-9]*\.?[0-9]+)[ \t,]*(?:HV[ \t]*:[ \t]*([0-9]*\.?[0-9]+)[ \t,]*)?(?:SV[ \t]*:[ \t]*([0-9]*\.?[0-9]+)[ \t,]*)?(?:VV[ \t]*:[ \t]*([0-9]*\.?[0-9]+)[ \t,]*)?(.*)"#)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CorelPainterCoder.swift:50:14: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static let regex = try! DSFRegex(#"[ \t]*R[ \t]*:[ \t]*([0-9]*\.?[0-9]+)[ \t,]*G[ \t]*:[ \t]*([0-9]*\.?[0-9]+)[ \t,]*B[ \t]*:[ \t]*([0-9]*\.?[0-9]+)[ \t,]*(?:HV[ \t]*:[ \t]*([0-9]*\.?[0-9]+)[ \t,]*)?(?:SV[ \t]*:[ \t]*([0-9]*\.?[0-9]+)[ \t,]*)?(?:VV[ \t]*:[ \t]*([0-9]*\.?[0-9]+)[ \t,]*)?(.*)"#)
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CorelXMLPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/DCPPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/DCPPaletteCoder.swift:31:21: warning: static property 'utTypeString' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var utTypeString = "public.dagronf.colorpalette.palette.dcp"
^
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/DCPPaletteCoder.swift:31:21: note: convert 'utTypeString' to a 'let' constant to make 'Sendable' shared state immutable
public static var utTypeString = "public.dagronf.colorpalette.palette.dcp"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/DCPPaletteCoder.swift:31:21: note: add '@MainActor' to make static property 'utTypeString' part of global actor 'MainActor'
public static var utTypeString = "public.dagronf.colorpalette.palette.dcp"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/DCPPaletteCoder.swift:31:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var utTypeString = "public.dagronf.colorpalette.palette.dcp"
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/GIMPPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/GIMPPaletteCoder.swift:27:21: warning: static property 'utTypeString' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var utTypeString: String = "public.dagronf.colorpalette.palette.gimp.gpl"
^
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/GIMPPaletteCoder.swift:27:21: note: convert 'utTypeString' to a 'let' constant to make 'Sendable' shared state immutable
public static var utTypeString: String = "public.dagronf.colorpalette.palette.gimp.gpl"
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/GIMPPaletteCoder.swift:27:21: note: add '@MainActor' to make static property 'utTypeString' part of global actor 'MainActor'
public static var utTypeString: String = "public.dagronf.colorpalette.palette.gimp.gpl"
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/GIMPPaletteCoder.swift:27:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var utTypeString: String = "public.dagronf.colorpalette.palette.gimp.gpl"
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/HEXPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/ImagePaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/JCWPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/JSONPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/OpenOfficePaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/PaintNETPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/PaintNETPaletteCoder.swift:44:21: warning: static property 'utTypeString' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var utTypeString: String = "public.dagronf.colorpalette.palette.paint.net" // conforms to `public.text`
^
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/PaintNETPaletteCoder.swift:44:21: note: convert 'utTypeString' to a 'let' constant to make 'Sendable' shared state immutable
public static var utTypeString: String = "public.dagronf.colorpalette.palette.paint.net" // conforms to `public.text`
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/PaintNETPaletteCoder.swift:44:21: note: add '@MainActor' to make static property 'utTypeString' part of global actor 'MainActor'
public static var utTypeString: String = "public.dagronf.colorpalette.palette.paint.net" // conforms to `public.text`
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/PaintNETPaletteCoder.swift:44:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var utTypeString: String = "public.dagronf.colorpalette.palette.paint.net" // conforms to `public.text`
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/PaintShopProPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/PaintShopProPaletteCoder.swift:29:21: warning: static property 'utTypeString' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var utTypeString = "public.dagronf.colorpalette.palette.corel.pal" // conforms to `public.text`
^
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/PaintShopProPaletteCoder.swift:29:21: note: convert 'utTypeString' to a 'let' constant to make 'Sendable' shared state immutable
public static var utTypeString = "public.dagronf.colorpalette.palette.corel.pal" // conforms to `public.text`
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/PaintShopProPaletteCoder.swift:29:21: note: add '@MainActor' to make static property 'utTypeString' part of global actor 'MainActor'
public static var utTypeString = "public.dagronf.colorpalette.palette.corel.pal" // conforms to `public.text`
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/PaintShopProPaletteCoder.swift:29:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var utTypeString = "public.dagronf.colorpalette.palette.corel.pal" // conforms to `public.text`
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling PAL+PaletteCoder.swift, PAL+PaletteCoderProtocol.swift, PAL+PaletteFormat.swift, PAL+CGColor.swift, PAL+NSColorList.swift, PAL+SwiftUI.swift, PAL+iOS.swift, PAL+macOS.swift, BytesParser+extensions.swift, CGColor+HexExtensions.swift, CGColor+extensions.swift, CGContext+exensions.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
SwiftCompile normal armv7k Compiling\ VGA24BitPaletteCoder.swift,\ PAL+Color+Array.swift,\ PAL+Color+CMYK.swift,\ PAL+Color+Gray.swift,\ PAL+Color+HSB.swift,\ PAL+Color+HSL.swift,\ PAL+Color+Hex.swift,\ PAL+Color+Interpolation.swift,\ PAL+Color+LAB.swift,\ PAL+Color+Modifications.swift,\ PAL+Color+OkLab.swift,\ PAL+Color+RGB.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/VGA24BitPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+Array.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+CMYK.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+Gray.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+HSB.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+HSL.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+Hex.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+Interpolation.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+LAB.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+Modifications.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+OkLab.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+RGB.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/VGA24BitPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+Array.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+CMYK.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+Gray.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+HSB.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+HSL.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+Hex.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+Interpolation.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+LAB.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+Modifications.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+OkLab.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal armv7k /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/color/PAL+Color+RGB.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftDriverJobDiscovery normal armv7k Compiling ProcreateSwatchesCoder.swift, RGBAPaletteCoder.swift, RGBPaletteCoder.swift, RIFFPaletteCoder.swift, SKPPaletteCoder.swift, SVGPaletteCoder.swift, ScribusXMLPaletteCoder.swift, SimplePaletteCoder.swift, SketchPaletteCoder.swift, SwatchbookerCoder.swift, SwiftPaletteCoder.swift, VGA18BitPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
SwiftCompile normal arm64_32 Compiling\ ACBPaletteCoder.swift,\ ACOPaletteCoder.swift,\ ACTPaletteCoder.swift,\ AFPaletteCoder.swift,\ ASEPaletteCoder.swift,\ AndroidColorsXMLCoder.swift,\ AutodeskColorBook.swift,\ BasicXMLCoder.swift,\ CLFPaletteCoder.swift,\ CLRPaletteCoder.swift,\ CPLPaletteCoder.swift,\ CSVPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/ACBPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/ACOPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/ACTPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/AFPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/ASEPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/AndroidColorsXMLCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/AutodeskColorBook.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/BasicXMLCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CLFPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CLRPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CPLPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CSVPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/ACBPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/ACOPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/ACTPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/AFPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/ASEPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/ASEPaletteCoder.swift:342:13: warning: static property 'adobeSwatchExchange' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var adobeSwatchExchange = UTType(PAL.Coder.ASE.utTypeString)!
^
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/ASEPaletteCoder.swift:342:13: note: convert 'adobeSwatchExchange' to a 'let' constant to make 'Sendable' shared state immutable
static var adobeSwatchExchange = UTType(PAL.Coder.ASE.utTypeString)!
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/ASEPaletteCoder.swift:342:13: note: add '@MainActor' to make static property 'adobeSwatchExchange' part of global actor 'MainActor'
static var adobeSwatchExchange = UTType(PAL.Coder.ASE.utTypeString)!
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/ASEPaletteCoder.swift:342:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var adobeSwatchExchange = UTType(PAL.Coder.ASE.utTypeString)!
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/AndroidColorsXMLCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/AutodeskColorBook.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/BasicXMLCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/BasicXMLCoder.swift:45:21: warning: static property 'utTypeString' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var utTypeString: String = "public.dagronf.colorpalette.palette.basicxml" // conforms to `public.xml`
^
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/BasicXMLCoder.swift:45:21: note: convert 'utTypeString' to a 'let' constant to make 'Sendable' shared state immutable
public static var utTypeString: String = "public.dagronf.colorpalette.palette.basicxml" // conforms to `public.xml`
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/BasicXMLCoder.swift:45:21: note: add '@MainActor' to make static property 'utTypeString' part of global actor 'MainActor'
public static var utTypeString: String = "public.dagronf.colorpalette.palette.basicxml" // conforms to `public.xml`
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/BasicXMLCoder.swift:45:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var utTypeString: String = "public.dagronf.colorpalette.palette.basicxml" // conforms to `public.xml`
^
nonisolated(unsafe)
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CLFPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CLRPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CPLPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64_32 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CSVPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CSVPaletteCoder.swift:53:21: warning: static property 'utTypeString' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var utTypeString = "public.dagronf.colorpalette.palette.csv" // conforms to `public.comma-separated-values-text`
^
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CSVPaletteCoder.swift:53:21: note: convert 'utTypeString' to a 'let' constant to make 'Sendable' shared state immutable
public static var utTypeString = "public.dagronf.colorpalette.palette.csv" // conforms to `public.comma-separated-values-text`
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CSVPaletteCoder.swift:53:21: note: add '@MainActor' to make static property 'utTypeString' part of global actor 'MainActor'
public static var utTypeString = "public.dagronf.colorpalette.palette.csv" // conforms to `public.comma-separated-values-text`
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CSVPaletteCoder.swift:53:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var utTypeString = "public.dagronf.colorpalette.palette.csv" // conforms to `public.comma-separated-values-text`
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling PAL+Color+Transferable.swift, PAL+Color+XYZ.swift, PAL+Color.swift, PAL+Colors.swift, PAL+Gradient+Snapshot.swift, PAL+Gradient+SwiftUI.swift, PAL+Gradient.swift, PAL+Gradients+platform.swift, PAL+Gradients.swift, PAL+GradientsCoder.swift, PAL+GradientsFormat.swift, PAL+Palette.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
SwiftCompile normal arm64 Compiling\ ACBPaletteCoder.swift,\ ACOPaletteCoder.swift,\ ACTPaletteCoder.swift,\ AFPaletteCoder.swift,\ ASEPaletteCoder.swift,\ AndroidColorsXMLCoder.swift,\ AutodeskColorBook.swift,\ BasicXMLCoder.swift,\ CLFPaletteCoder.swift,\ CLRPaletteCoder.swift,\ CPLPaletteCoder.swift,\ CSVPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/ACBPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/ACOPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/ACTPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/AFPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/ASEPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/AndroidColorsXMLCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/AutodeskColorBook.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/BasicXMLCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CLFPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CLRPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CPLPaletteCoder.swift /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CSVPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/ACBPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/ACOPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/ACTPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/AFPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/ASEPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/ASEPaletteCoder.swift:342:13: warning: static property 'adobeSwatchExchange' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
static var adobeSwatchExchange = UTType(PAL.Coder.ASE.utTypeString)!
^
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/ASEPaletteCoder.swift:342:13: note: convert 'adobeSwatchExchange' to a 'let' constant to make 'Sendable' shared state immutable
static var adobeSwatchExchange = UTType(PAL.Coder.ASE.utTypeString)!
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/ASEPaletteCoder.swift:342:13: note: add '@MainActor' to make static property 'adobeSwatchExchange' part of global actor 'MainActor'
static var adobeSwatchExchange = UTType(PAL.Coder.ASE.utTypeString)!
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/ASEPaletteCoder.swift:342:13: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
static var adobeSwatchExchange = UTType(PAL.Coder.ASE.utTypeString)!
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/AndroidColorsXMLCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/AutodeskColorBook.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/BasicXMLCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/BasicXMLCoder.swift:45:21: warning: static property 'utTypeString' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var utTypeString: String = "public.dagronf.colorpalette.palette.basicxml" // conforms to `public.xml`
^
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/BasicXMLCoder.swift:45:21: note: convert 'utTypeString' to a 'let' constant to make 'Sendable' shared state immutable
public static var utTypeString: String = "public.dagronf.colorpalette.palette.basicxml" // conforms to `public.xml`
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/BasicXMLCoder.swift:45:21: note: add '@MainActor' to make static property 'utTypeString' part of global actor 'MainActor'
public static var utTypeString: String = "public.dagronf.colorpalette.palette.basicxml" // conforms to `public.xml`
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/BasicXMLCoder.swift:45:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var utTypeString: String = "public.dagronf.colorpalette.palette.basicxml" // conforms to `public.xml`
^
nonisolated(unsafe)
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CLFPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CLRPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CPLPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CSVPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CSVPaletteCoder.swift:53:21: warning: static property 'utTypeString' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
public static var utTypeString = "public.dagronf.colorpalette.palette.csv" // conforms to `public.comma-separated-values-text`
^
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CSVPaletteCoder.swift:53:21: note: convert 'utTypeString' to a 'let' constant to make 'Sendable' shared state immutable
public static var utTypeString = "public.dagronf.colorpalette.palette.csv" // conforms to `public.comma-separated-values-text`
~~~ ^
let
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CSVPaletteCoder.swift:53:21: note: add '@MainActor' to make static property 'utTypeString' part of global actor 'MainActor'
public static var utTypeString = "public.dagronf.colorpalette.palette.csv" // conforms to `public.comma-separated-values-text`
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/coders/palette/CSVPaletteCoder.swift:53:21: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
public static var utTypeString = "public.dagronf.colorpalette.palette.csv" // conforms to `public.comma-separated-values-text`
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling resource_bundle_accessor.swift, PAL+ColorConversions.swift, PAL+Common.swift, PAL+CoreGraphics.swift, PAL+Errors.swift, PAL+Functions.swift, PAL+Group.swift, PAL+Image.swift, PAL+Pasteboard+iOS.swift, PAL+Pasteboard+macOS.swift, PAL+StandardColors.swift, PAL+Temperature.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
SwiftDriverJobDiscovery normal arm64 Compiling VGA24BitPaletteCoder.swift, PAL+Color+Array.swift, PAL+Color+CMYK.swift, PAL+Color+Gray.swift, PAL+Color+HSB.swift, PAL+Color+HSL.swift, PAL+Color+Hex.swift, PAL+Color+Interpolation.swift, PAL+Color+LAB.swift, PAL+Color+Modifications.swift, PAL+Color+OkLab.swift, PAL+Color+RGB.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SwiftImageReadWrite.o (in target 'SwiftImageReadWrite' from project 'SwiftImageReadWrite')
cd /Users/admin/builder/spi-builder-workspace/.dependencies/checkouts/SwiftImageReadWrite
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/SwiftImageReadWrite.o
SwiftDriverJobDiscovery normal arm64_32 Compiling CorelDraw3PaletteCoder.swift, CorelPainterCoder.swift, CorelXMLPaletteCoder.swift, DCPPaletteCoder.swift, GIMPPaletteCoder.swift, HEXPaletteCoder.swift, ImagePaletteCoder.swift, JCWPaletteCoder.swift, JSONPaletteCoder.swift, OpenOfficePaletteCoder.swift, PaintNETPaletteCoder.swift, PaintShopProPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
SwiftDriverJobDiscovery normal armv7k Compiling VGA24BitPaletteCoder.swift, PAL+Color+Array.swift, PAL+Color+CMYK.swift, PAL+Color+Gray.swift, PAL+Color+HSB.swift, PAL+Color+HSL.swift, PAL+Color+Hex.swift, PAL+Color+Interpolation.swift, PAL+Color+LAB.swift, PAL+Color+Modifications.swift, PAL+Color+OkLab.swift, PAL+Color+RGB.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
SwiftDriver\ Compilation ColorPaletteCodable normal armv7k com.apple.xcode.tools.swift.compiler (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name ColorPaletteCodable -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/armv7k/ColorPaletteCodable.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-watchos6.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/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -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/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/armv7k/ColorPaletteCodable-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/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/armv7k/ColorPaletteCodable.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/armv7k/ColorPaletteCodable_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/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/DerivedSources-normal/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/DerivedSources/armv7k -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.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/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/armv7k/ColorPaletteCodable-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64_32 Compiling ACBPaletteCoder.swift, ACOPaletteCoder.swift, ACTPaletteCoder.swift, AFPaletteCoder.swift, ASEPaletteCoder.swift, AndroidColorsXMLCoder.swift, AutodeskColorBook.swift, BasicXMLCoder.swift, CLFPaletteCoder.swift, CLRPaletteCoder.swift, CPLPaletteCoder.swift, CSVPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
SwiftDriverJobDiscovery normal arm64 Compiling ACBPaletteCoder.swift, ACOPaletteCoder.swift, ACTPaletteCoder.swift, AFPaletteCoder.swift, ASEPaletteCoder.swift, AndroidColorsXMLCoder.swift, AutodeskColorBook.swift, BasicXMLCoder.swift, CLFPaletteCoder.swift, CLRPaletteCoder.swift, CPLPaletteCoder.swift, CSVPaletteCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
SwiftDriverJobDiscovery normal arm64_32 Emitting module for ColorPaletteCodable (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
SwiftDriver\ Compilation\ Requirements ColorPaletteCodable normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
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 ColorPaletteCodable -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64_32/ColorPaletteCodable.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-watchos6.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/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -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/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64_32/ColorPaletteCodable-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/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64_32/ColorPaletteCodable.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64_32/ColorPaletteCodable_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/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.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/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64_32/ColorPaletteCodable-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftMergeGeneratedHeaders /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/ColorPaletteCodable-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64/ColorPaletteCodable-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64_32/ColorPaletteCodable-Swift.h /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/armv7k/ColorPaletteCodable-Swift.h (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftHeaderTool -arch arm64 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64/ColorPaletteCodable-Swift.h -arch arm64_32 /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64_32/ColorPaletteCodable-Swift.h -arch armv7k /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/armv7k/ColorPaletteCodable-Swift.h -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/GeneratedModuleMaps-watchos/ColorPaletteCodable-Swift.h
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ColorPaletteCodable.swiftmodule/arm64_32-apple-watchos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64_32/ColorPaletteCodable.swiftmodule (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
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/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64_32/ColorPaletteCodable.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ColorPaletteCodable.swiftmodule/arm64_32-apple-watchos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ColorPaletteCodable.swiftmodule/arm64_32-apple-watchos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64_32/ColorPaletteCodable.swiftdoc (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
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/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64_32/ColorPaletteCodable.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ColorPaletteCodable.swiftmodule/arm64_32-apple-watchos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ColorPaletteCodable.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64_32/ColorPaletteCodable.swiftsourceinfo (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
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/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64_32/ColorPaletteCodable.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ColorPaletteCodable.swiftmodule/Project/arm64_32-apple-watchos.swiftsourceinfo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ColorPaletteCodable.swiftmodule/arm64_32-apple-watchos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64_32/ColorPaletteCodable.abi.json (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
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/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64_32/ColorPaletteCodable.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ColorPaletteCodable.swiftmodule/arm64_32-apple-watchos.abi.json
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/armv7k/Binary/ColorPaletteCodable.o normal armv7k (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos6.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/armv7k/ColorPaletteCodable.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/armv7k/ColorPaletteCodable_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/armv7k/ColorPaletteCodable_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/armv7k/ColorPaletteCodable.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/armv7k/Binary/ColorPaletteCodable.o
SwiftDriverJobDiscovery normal arm64_32 Compiling String+extensions.swift, SwiftUI+Color+extensions.swift, SwiftUI+Image+extensions.swift, Temperature.swift, TextParser.swift, UInt32+extensions.swift, UnitValue.swift, Utils.swift, Vec3.swift, X11Colors.swift, xmlFormatters.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
SwiftDriverJobDiscovery normal arm64_32 Compiling PAL+Types.swift, PAL+UniformTypeIdentifiers.swift, AdobeGradientsCoder.swift, CSSGradientCoder.swift, ColorPaletteTablesCoder.swift, DCGGradientCoder.swift, GIMPGradientCoder.swift, GNUPlotGradientCoder.swift, JSONGradientCoder.swift, PaintShopProGradientCoder.swift, SVGGradientCoder.swift, SwiftGenGradientCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
SwiftDriver\ Compilation ColorPaletteCodable normal arm64_32 com.apple.xcode.tools.swift.compiler (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name ColorPaletteCodable -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64_32/ColorPaletteCodable.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-watchos6.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/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -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/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64_32/ColorPaletteCodable-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/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64_32/ColorPaletteCodable.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64_32/ColorPaletteCodable_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/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/DerivedSources-normal/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/DerivedSources/arm64_32 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.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/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64_32/ColorPaletteCodable-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64_32/Binary/ColorPaletteCodable.o normal arm64_32 (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos6.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64_32/ColorPaletteCodable.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64_32/ColorPaletteCodable_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64_32/ColorPaletteCodable_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64_32/ColorPaletteCodable.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64_32/Binary/ColorPaletteCodable.o
SwiftDriverJobDiscovery normal arm64 Compiling PAL+Types.swift, PAL+UniformTypeIdentifiers.swift, AdobeGradientsCoder.swift, CSSGradientCoder.swift, ColorPaletteTablesCoder.swift, DCGGradientCoder.swift, GIMPGradientCoder.swift, GNUPlotGradientCoder.swift, JSONGradientCoder.swift, PaintShopProGradientCoder.swift, SVGGradientCoder.swift, SwiftGenGradientCoder.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
SwiftDriverJobDiscovery normal arm64 Compiling String+extensions.swift, SwiftUI+Color+extensions.swift, SwiftUI+Image+extensions.swift, Temperature.swift, TextParser.swift, UInt32+extensions.swift, UnitValue.swift, Utils.swift, Vec3.swift, X11Colors.swift, xmlFormatters.swift (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
SwiftDriver\ Compilation ColorPaletteCodable normal arm64 com.apple.xcode.tools.swift.compiler (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name ColorPaletteCodable -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64/ColorPaletteCodable.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-watchos6.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/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -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/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64/ColorPaletteCodable-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/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64/ColorPaletteCodable.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64/ColorPaletteCodable_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/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.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/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64/ColorPaletteCodable-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64/Binary/ColorPaletteCodable.o normal arm64 (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos6.0 -r -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64/ColorPaletteCodable.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64/ColorPaletteCodable_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64/ColorPaletteCodable_dependency_info.dat -fobjc-link-runtime -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64/ColorPaletteCodable.swiftmodule -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64/Binary/ColorPaletteCodable.o
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ColorPaletteCodable.o normal arm64\ armv7k\ arm64_32 (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64/Binary/ColorPaletteCodable.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/armv7k/Binary/ColorPaletteCodable.o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64_32/Binary/ColorPaletteCodable.o -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ColorPaletteCodable.o
ExtractAppIntentsMetadata (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --toolchain-dir /Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name ColorPaletteCodable --sdk-root /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk --xcode-version 16E140 --platform-family watchOS --deployment-target 6.0 --bundle-identifier spi-builder-workspace.ColorPaletteCodable --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ColorPaletteCodable.appintents --target-triple arm64-apple-watchos6.0 --target-triple armv7k-apple-watchos6.0 --target-triple arm64_32-apple-watchos6.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ColorPaletteCodable.o --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64/ColorPaletteCodable_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/armv7k/ColorPaletteCodable_dependency_info.dat --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64_32/ColorPaletteCodable_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/armv7k/ExtractedAppShortcutsMetadata.stringsdata --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64_32/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64/ColorPaletteCodable.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/armv7k/ColorPaletteCodable.SwiftFileList --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64_32/ColorPaletteCodable.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/ColorPaletteCodable.DependencyMetadataFileList --static-metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/ColorPaletteCodable.DependencyStaticMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64/ColorPaletteCodable.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/armv7k/ColorPaletteCodable.SwiftConstValuesFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64_32/ColorPaletteCodable.SwiftConstValuesFileList --force --compile-time-extraction --deployment-aware-processing --validate-assistant-intents --no-app-shortcuts-localization
2025-05-31 10:12:43.266 appintentsmetadataprocessor[1131:6845] Starting appintentsmetadataprocessor export
2025-05-31 10:12:43.304 appintentsmetadataprocessor[1131:6845] Extracted no relevant App Intents symbols, skipping writing output
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ColorPaletteCodable.o (in target 'ColorPaletteCodable' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/ColorPaletteCodable.o
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks/ColorPaletteCodable-shared.framework/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable-shared\ product.build/empty-ColorPaletteCodable-shared.plist (in target 'ColorPaletteCodable-shared' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace
builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable-shared\ product.build/empty-ColorPaletteCodable-shared.plist -producttype com.apple.product-type.framework -expandbuildsettings -format binary -platform watchos -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks/ColorPaletteCodable-shared.framework/Info.plist
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable-shared\ product.build/Objects-normal/armv7k/Binary/ColorPaletteCodable-shared normal armv7k (in target 'ColorPaletteCodable-shared' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target armv7k-apple-watchos6.0 -dynamiclib -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable-shared\ product.build/Objects-normal/armv7k/ColorPaletteCodable-shared.LinkFileList -install_name @rpath/ColorPaletteCodable-shared.framework/ColorPaletteCodable-shared -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable-shared\ product.build/Objects-normal/armv7k/ColorPaletteCodable-shared_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable-shared\ product.build/Objects-normal/armv7k/ColorPaletteCodable-shared_dependency_info.dat -fobjc-link-runtime -fprofile-instr-generate -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable-shared\ product.build/Objects-normal/armv7k/Binary/ColorPaletteCodable-shared -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/armv7k/ColorPaletteCodable.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DSFRegex.build/Debug-watchos/DSFRegex.build/Objects-normal/armv7k/DSFRegex.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftImageReadWrite.build/Debug-watchos/SwiftImageReadWrite.build/Objects-normal/armv7k/SwiftImageReadWrite.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TinyCSV.build/Debug-watchos/TinyCSV.build/Objects-normal/armv7k/TinyCSV.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BytesParser.build/Debug-watchos/BytesParser.build/Objects-normal/armv7k/BytesParser.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZIPFoundation.build/Debug-watchos/ZIPFoundation.build/Objects-normal/armv7k/ZIPFoundation.swiftmodule
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable-shared\ product.build/Objects-normal/arm64_32/Binary/ColorPaletteCodable-shared normal arm64_32 (in target 'ColorPaletteCodable-shared' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64_32-apple-watchos6.0 -dynamiclib -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable-shared\ product.build/Objects-normal/arm64_32/ColorPaletteCodable-shared.LinkFileList -install_name @rpath/ColorPaletteCodable-shared.framework/ColorPaletteCodable-shared -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable-shared\ product.build/Objects-normal/arm64_32/ColorPaletteCodable-shared_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable-shared\ product.build/Objects-normal/arm64_32/ColorPaletteCodable-shared_dependency_info.dat -fobjc-link-runtime -fprofile-instr-generate -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable-shared\ product.build/Objects-normal/arm64_32/Binary/ColorPaletteCodable-shared -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64_32/ColorPaletteCodable.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DSFRegex.build/Debug-watchos/DSFRegex.build/Objects-normal/arm64_32/DSFRegex.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftImageReadWrite.build/Debug-watchos/SwiftImageReadWrite.build/Objects-normal/arm64_32/SwiftImageReadWrite.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TinyCSV.build/Debug-watchos/TinyCSV.build/Objects-normal/arm64_32/TinyCSV.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BytesParser.build/Debug-watchos/BytesParser.build/Objects-normal/arm64_32/BytesParser.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZIPFoundation.build/Debug-watchos/ZIPFoundation.build/Objects-normal/arm64_32/ZIPFoundation.swiftmodule
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable-shared\ product.build/Objects-normal/arm64/Binary/ColorPaletteCodable-shared normal arm64 (in target 'ColorPaletteCodable-shared' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-watchos6.0 -dynamiclib -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable-shared\ product.build/Objects-normal/arm64/ColorPaletteCodable-shared.LinkFileList -install_name @rpath/ColorPaletteCodable-shared.framework/ColorPaletteCodable-shared -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -dead_strip -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable-shared\ product.build/Objects-normal/arm64/ColorPaletteCodable-shared_lto.o -rdynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable-shared\ product.build/Objects-normal/arm64/ColorPaletteCodable-shared_dependency_info.dat -fobjc-link-runtime -fprofile-instr-generate -L/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/watchos -L/usr/lib/swift -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable-shared\ product.build/Objects-normal/arm64/Binary/ColorPaletteCodable-shared -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable.build/Objects-normal/arm64/ColorPaletteCodable.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/DSFRegex.build/Debug-watchos/DSFRegex.build/Objects-normal/arm64/DSFRegex.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/SwiftImageReadWrite.build/Debug-watchos/SwiftImageReadWrite.build/Objects-normal/arm64/SwiftImageReadWrite.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/TinyCSV.build/Debug-watchos/TinyCSV.build/Objects-normal/arm64/TinyCSV.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/BytesParser.build/Debug-watchos/BytesParser.build/Objects-normal/arm64/BytesParser.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ZIPFoundation.build/Debug-watchos/ZIPFoundation.build/Objects-normal/arm64/ZIPFoundation.swiftmodule
CreateUniversalBinary /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks/ColorPaletteCodable-shared.framework/ColorPaletteCodable-shared normal arm64\ armv7k\ arm64_32 (in target 'ColorPaletteCodable-shared' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/lipo -create /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable-shared\ product.build/Objects-normal/arm64/Binary/ColorPaletteCodable-shared /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable-shared\ product.build/Objects-normal/armv7k/Binary/ColorPaletteCodable-shared /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/ColorPaletteCodable.build/Debug-watchos/ColorPaletteCodable-shared\ product.build/Objects-normal/arm64_32/Binary/ColorPaletteCodable-shared -output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks/ColorPaletteCodable-shared.framework/ColorPaletteCodable-shared
GenerateTAPI /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos/ColorPaletteCodable-shared.framework/ColorPaletteCodable-shared.tbd (in target 'ColorPaletteCodable-shared' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.3.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/tapi stubify -isysroot /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/Library/Frameworks -iframework /Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/SDKs/WatchOS11.4.sdk/Developer/Library/Frameworks -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos -L/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/WatchOS.platform/Developer/usr/lib /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks/ColorPaletteCodable-shared.framework/ColorPaletteCodable-shared -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug-watchos/ColorPaletteCodable-shared.framework/ColorPaletteCodable-shared.tbd
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks/ColorPaletteCodable-shared.framework (in target 'ColorPaletteCodable-shared' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks/ColorPaletteCodable-shared.framework
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks/ColorPaletteCodable-shared.framework (in target 'ColorPaletteCodable-shared' from project 'ColorPaletteCodable')
cd /Users/admin/builder/spi-builder-workspace
/usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug-watchos/PackageFrameworks/ColorPaletteCodable-shared.framework
** BUILD SUCCEEDED **
Build complete.
{
"dependencies" : [
{
"identity" : "dsfregex",
"requirement" : {
"range" : [
{
"lower_bound" : "3.4.0",
"upper_bound" : "4.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/dagronf/DSFRegex"
},
{
"identity" : "swiftimagereadwrite",
"requirement" : {
"range" : [
{
"lower_bound" : "1.7.1",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/dagronf/SwiftImageReadWrite"
},
{
"identity" : "tinycsv",
"requirement" : {
"range" : [
{
"lower_bound" : "1.0.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/dagronf/TinyCSV"
},
{
"identity" : "bytesparser",
"requirement" : {
"range" : [
{
"lower_bound" : "3.2.1",
"upper_bound" : "4.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/dagronf/BytesParser"
},
{
"identity" : "zipfoundation",
"requirement" : {
"exact" : [
"0.9.19"
]
},
"type" : "sourceControl",
"url" : "https://github.com/dagronf/ZIPFoundation"
}
],
"manifest_display_name" : "ColorPaletteCodable",
"name" : "ColorPaletteCodable",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.13"
},
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "tvos",
"version" : "13.0"
},
{
"name" : "watchos",
"version" : "6.0"
}
],
"products" : [
{
"name" : "ColorPaletteCodable",
"targets" : [
"ColorPaletteCodable"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "ColorPaletteCodable-static",
"targets" : [
"ColorPaletteCodable"
],
"type" : {
"library" : [
"static"
]
}
},
{
"name" : "ColorPaletteCodable-shared",
"targets" : [
"ColorPaletteCodable"
],
"type" : {
"library" : [
"dynamic"
]
}
}
],
"targets" : [
{
"c99name" : "ColorPaletteCodableTests",
"module_type" : "SwiftTarget",
"name" : "ColorPaletteCodableTests",
"path" : "Tests/ColorPaletteCodableTests",
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/cpt/37_waves.cpt",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/cpt/acton.cpt",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/cpt/balance.cpt",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/cpt/bhw1_02.cpt",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/cpt/dem3.cpt",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/cpt/gray.cpt",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/cpt/magma.cpt",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/cpt/os250k-metres.cpt",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/cpt/panoply.cpt",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/cpt/wysiwyg.cpt",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/dcg/GLASS.dcg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/dcg/tsmp.dcg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/ggr/39_rainbow_white.ggr",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/ggr/Pastel_Rainbow.ggr",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/ggr/Skyline.ggr",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/ggr/Tube_Red.ggr",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/ggr/colorcube.ggr",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/gpf/arctic.gpf",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/gpf/argentina.gpf",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/gpf/b-255-166.gpf",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/gpf/geo-smooth.gpf",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/gpf/ipod-pink.gpf",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/grd/30.grd",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/grd/35.grd",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/grd/my-custom-gradient-3-rgb.grd",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/jsongradient/basic3pos.jsoncolorgradient",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/jsongradient/simple2.jsoncolorgradient",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/jsongradient/skyline.jsoncolorgradient",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/gradient/pspgradient/temperature.pspgradient",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/acb/ANPA Color.acb",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/acb/DIC Color Guide.acb",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/acb/HKS E (LAB).acb",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/acb/HKS K Process (CMYK).acb",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/aco/454306_iColorpalette.aco",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/aco/Material Palette.aco",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/aco/Zeldman-v1.aco",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/aco/arne-v20-16.aco",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/aco/davis-colors-concrete-pigments.aco",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/act/16pal_v20.act",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/act/arne-v20-16.act",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/act/iconworkshop.act",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/afpalette/Bulma.io.afpalette",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/afpalette/basicrgb.afpalette",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/androidXML/android_basicrgbacolors.xml",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/androidXML/android_basicrgbcolors.xml",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/androidXML/android_basicrgbcolors_with_alpha.xml",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/androidXML/android_colors_comments_xml.xml",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/androidXML/android_colors_xml.xml",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/androidXML/android_material_colors.xml",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/androidXML/android_webcolors_colors.xml",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/ase/1629367375_iColorpalette.ase",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/ase/24 colour palettes.ase",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/ase/3M Scotchlite Serie 580_680.ase",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/ase/3M Scotchlite Serie 580_680.gpl",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/ase/ADG3-CMYK.ase",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/ase/Big-Red-Barn.ase",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/ase/Ultra-Mattes Reverse.ase",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/ase/color-cubes.ase",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/ase/control.ase",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/ase/palette_complex.ase",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/ase/palette_pantones.ase",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/ase/palette_simple.ase",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/ase/sw-colors-name-ede-ase.ase",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/ase/unsupported_version.ase",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/ase/wisteric-17.ase",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/ase/zenit-241.ase",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/autocad-colorbook/BM Classic Colors.acb",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/autocad-colorbook/COLORBOND.acb",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/autocad-colorbook/Resene Total Colour System - 2022.acb",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/autocad-colorbook/basic-rgb.acb",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/clr/DarkMailTopBar.clr",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/clr/apple-ii.clr",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/coreldrawpal/DB32-CDR.PAL",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/coreldrawpal/Farbpalette Trotec Laser (Corel Draw 3).pal",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/coreldrawpal/WithQuote.PAL",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/corelpainter/adobe-swatch-fun.txt",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/corelpainter/corel-odd-coding.txt",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/cpl/LaserGlow.cpl",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/csv/pastel-extended.csv",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/csv/pastel.csv",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/gimp/Caramel.gpl",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/gimp/Default.gpl",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/gimp/atari-800xl-palette.gpl",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/gimp/pear36-sep-rn.gpl",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/hex/behr.hex",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/hex/pear36-transparency.hex",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/hex/pear36.hex",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/image/midnight-ablaze-1x.png",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/image/pastel.jpg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/image/pastel.png",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/image/sunnyswamp-1x.png",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/image/sweetie-16-32x.png",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/jcw/wikicolorlist.jcw",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/json/encoded.jsoncolorpalette",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/json/groups.jsoncolorpalette",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/paintnet/Paint_NET.txt",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/paintnet/eb-gb-strawberry-flavour.txt",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/paintnet/lospec500.txt",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/paintshoppro/DB16.pal",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/paintshoppro/atari-800xl-palette.psppalette",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/paintshoppro/empty.pal",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/paintshoppro/jasc256.pal",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/paintshoppro/paintnet-palette.pal",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/procreateswatches/Ascend.swatches",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/procreateswatches/Pantone_2019.swatches",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/procreateswatches/Retro_&_Vintage.swatches",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/procreateswatches/mypalette.swatches",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/rgb/bad-coding.txt",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/rgb/basic1.txt",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/rgb/basic1alpha.txt",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/riff/arne-v20-16.pal",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/riff/sample.pal",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/sbz/sample.sbz",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/scribusXML/Echo_Icon_Theme_Palette.xml",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/scribusXML/Scribus_Splash.xml",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/simplepalette/aap-64.color-palette",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/simplepalette/basic.color-palette",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/simplepalette/favorites.color-palette",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/sketchpalette/emoji-average-colors.gpl.sketchpalette",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/sketchpalette/iOS-Material-FlatUI.sketchpalette",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/sketchpalette/ios.sketchpalette",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/sketchpalette/material-design.sketchpalette",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/sketchpalette/sketch-default.sketchpalette",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/skp/Lible_Colors.skp",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/skp/Ubuntu_colors.skp",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/soc/freecolour-hlc.soc",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/soc/libreoffice.soc",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/soc/scribus.soc",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/soc/standard.soc",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/vga24bit/18-bit sample.pal",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/vga24bit/atari-7800-palette.pal",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/xml/Satins Cap Colors.xml",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/xml/Signature.xml",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/xml/ThermoFlex Plus.xml",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/xml/basic-xml-1.xml",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/xml/db32-cmyk.xml",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/palette/xml/db32-rgb.xml",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/svg/35.grd.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/svg/expected/expected - 24 colour palettes.ase.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/svg/expected/expected - atari-800xl-palette.gpl.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/svg/expected/expected - pear36-transparency.hex.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/svg/expected/expected - zenit-241.ase.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/svg/skyline.jsoncolorgradient.svg",
"rule" : {
"process" : {
}
}
},
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ColorPaletteCodableTests/resources/svg/temperature.pspgradient.svg",
"rule" : {
"process" : {
}
}
}
],
"sources" : [
"CodableTests.swift",
"ColorFunctionTests.swift",
"ColorTests.swift",
"CommonTests.swift",
"CoreGraphicsTests.swift",
"GrayTests.swift",
"ImageImportTests.swift",
"ImageTests.swift",
"InterpolationTests.swift",
"PasteboardTests.swift",
"TemperatureTests.swift",
"Utils.swift",
"gradient/CPTGradientTests.swift",
"gradient/CSSParsingTests.swift",
"gradient/DCGGradientTests.swift",
"gradient/GPFGradientTests.swift",
"gradient/GradientFormatTests.swift",
"gradient/GradientTests.swift",
"palette/ACBPaletteTests.swift",
"palette/ACOPaletteTests.swift",
"palette/ACTPaletteTests.swift",
"palette/AFPaletteTests.swift",
"palette/ASEPaletteTests.swift",
"palette/AndroidColorsXMLTests.swift",
"palette/AutoCADColorBookTests.swift",
"palette/CLRPaletteTests.swift",
"palette/CPLPaletteTests.swift",
"palette/CSVCoderTests.swift",
"palette/CoreDrawV3Tests.swift",
"palette/CorelPainterTests.swift",
"palette/DCPPaletteTests.swift",
"palette/GIMPPaletteTests.swift",
"palette/HEXPaletteTests.swift",
"palette/JASCPaletteTests.swift",
"palette/JCWPaletteTests.swift",
"palette/JSONPaletteTests.swift",
"palette/OpenOfficePaletteTests.swift",
"palette/PaintNETPaletteTests.swift",
"palette/ProcreateSwatchesTests.swift",
"palette/RGBPaletteTests.swift",
"palette/RIFFPaletteTests.swift",
"palette/SKPPaletteTests.swift",
"palette/SVGPaletteTests.swift",
"palette/ScribusXMLPaletteTests.swift",
"palette/SimplePaletteTests.swift",
"palette/SketchPaletteTests.swift",
"palette/SwatchBookerTests.swift",
"palette/VGA24bitPaletteTests.swift",
"palette/XMLPaletteTests.swift"
],
"target_dependencies" : [
"ColorPaletteCodable"
],
"type" : "test"
},
{
"c99name" : "ColorPaletteCodable",
"module_type" : "SwiftTarget",
"name" : "ColorPaletteCodable",
"path" : "Sources/ColorPaletteCodable",
"product_dependencies" : [
"DSFRegex",
"SwiftImageReadWrite",
"TinyCSV",
"BytesParser",
"ZIPFoundation"
],
"product_memberships" : [
"ColorPaletteCodable",
"ColorPaletteCodable-static",
"ColorPaletteCodable-shared"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/ColorPaletteCodable/PrivacyInfo.xcprivacy",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"PAL+ColorConversions.swift",
"PAL+Common.swift",
"PAL+CoreGraphics.swift",
"PAL+Errors.swift",
"PAL+Functions.swift",
"PAL+Group.swift",
"PAL+Image.swift",
"PAL+Pasteboard+iOS.swift",
"PAL+Pasteboard+macOS.swift",
"PAL+StandardColors.swift",
"PAL+Temperature.swift",
"PAL+Types.swift",
"PAL+UniformTypeIdentifiers.swift",
"coders/gradient/AdobeGradientsCoder.swift",
"coders/gradient/CSSGradientCoder.swift",
"coders/gradient/ColorPaletteTablesCoder.swift",
"coders/gradient/DCGGradientCoder.swift",
"coders/gradient/GIMPGradientCoder.swift",
"coders/gradient/GNUPlotGradientCoder.swift",
"coders/gradient/JSONGradientCoder.swift",
"coders/gradient/PaintShopProGradientCoder.swift",
"coders/gradient/SVGGradientCoder.swift",
"coders/gradient/SwiftGenGradientCoder.swift",
"coders/palette/ACBPaletteCoder.swift",
"coders/palette/ACOPaletteCoder.swift",
"coders/palette/ACTPaletteCoder.swift",
"coders/palette/AFPaletteCoder.swift",
"coders/palette/ASEPaletteCoder.swift",
"coders/palette/AndroidColorsXMLCoder.swift",
"coders/palette/AutodeskColorBook.swift",
"coders/palette/BasicXMLCoder.swift",
"coders/palette/CLFPaletteCoder.swift",
"coders/palette/CLRPaletteCoder.swift",
"coders/palette/CPLPaletteCoder.swift",
"coders/palette/CSVPaletteCoder.swift",
"coders/palette/CorelDraw3PaletteCoder.swift",
"coders/palette/CorelPainterCoder.swift",
"coders/palette/CorelXMLPaletteCoder.swift",
"coders/palette/DCPPaletteCoder.swift",
"coders/palette/GIMPPaletteCoder.swift",
"coders/palette/HEXPaletteCoder.swift",
"coders/palette/ImagePaletteCoder.swift",
"coders/palette/JCWPaletteCoder.swift",
"coders/palette/JSONPaletteCoder.swift",
"coders/palette/OpenOfficePaletteCoder.swift",
"coders/palette/PaintNETPaletteCoder.swift",
"coders/palette/PaintShopProPaletteCoder.swift",
"coders/palette/ProcreateSwatchesCoder.swift",
"coders/palette/RGBAPaletteCoder.swift",
"coders/palette/RGBPaletteCoder.swift",
"coders/palette/RIFFPaletteCoder.swift",
"coders/palette/SKPPaletteCoder.swift",
"coders/palette/SVGPaletteCoder.swift",
"coders/palette/ScribusXMLPaletteCoder.swift",
"coders/palette/SimplePaletteCoder.swift",
"coders/palette/SketchPaletteCoder.swift",
"coders/palette/SwatchbookerCoder.swift",
"coders/palette/SwiftPaletteCoder.swift",
"coders/palette/VGA18BitPaletteCoder.swift",
"coders/palette/VGA24BitPaletteCoder.swift",
"color/PAL+Color+Array.swift",
"color/PAL+Color+CMYK.swift",
"color/PAL+Color+Gray.swift",
"color/PAL+Color+HSB.swift",
"color/PAL+Color+HSL.swift",
"color/PAL+Color+Hex.swift",
"color/PAL+Color+Interpolation.swift",
"color/PAL+Color+LAB.swift",
"color/PAL+Color+Modifications.swift",
"color/PAL+Color+OkLab.swift",
"color/PAL+Color+RGB.swift",
"color/PAL+Color+Transferable.swift",
"color/PAL+Color+XYZ.swift",
"color/PAL+Color.swift",
"color/PAL+Colors.swift",
"gradient/PAL+Gradient+Snapshot.swift",
"gradient/PAL+Gradient+SwiftUI.swift",
"gradient/PAL+Gradient.swift",
"gradient/PAL+Gradients+platform.swift",
"gradient/PAL+Gradients.swift",
"gradient/PAL+GradientsCoder.swift",
"gradient/PAL+GradientsFormat.swift",
"palette/PAL+Palette.swift",
"palette/PAL+PaletteCoder.swift",
"palette/PAL+PaletteCoderProtocol.swift",
"palette/PAL+PaletteFormat.swift",
"platform/PAL+CGColor.swift",
"platform/PAL+NSColorList.swift",
"platform/PAL+SwiftUI.swift",
"platform/PAL+iOS.swift",
"platform/PAL+macOS.swift",
"private/BytesParser+extensions.swift",
"private/CGColor+HexExtensions.swift",
"private/CGColor+extensions.swift",
"private/CGContext+exensions.swift",
"private/CGGradient+extensions.swift",
"private/Collection+extensions.swift",
"private/Extensions.swift",
"private/HSBHelpers.swift",
"private/HexColorUtilities.swift",
"private/InputStream+extensions.swift",
"private/NumberFormatter+extensions.swift",
"private/OSLogger.swift",
"private/OkLab+priv.swift",
"private/Scanner+extensions.swift",
"private/String+decoding.swift",
"private/String+extensions.swift",
"private/SwiftUI+Color+extensions.swift",
"private/SwiftUI+Image+extensions.swift",
"private/Temperature.swift",
"private/TextParser.swift",
"private/UInt32+extensions.swift",
"private/UnitValue.swift",
"private/Utils.swift",
"private/Vec3.swift",
"private/X11Colors.swift",
"private/xmlFormatters.swift"
],
"type" : "library"
}
],
"tools_version" : "5.6"
}
Done.