The Swift Package Index logo.Swift Package Index

Build Information

Successful build of ColorWellKit, reference main (3fa347), with Swift 6.3 for macOS (SPM) on 14 Apr 2026 02:46:33 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/jordanbaird/ColorWellKit.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/jordanbaird/ColorWellKit
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 3fa347b Rework exclusivity lock
Cloned https://github.com/jordanbaird/ColorWellKit.git
Revision (git rev-parse @):
3fa347b87fe935a4e1a3fc728f87d3d25c6f8d52
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/jordanbaird/ColorWellKit.git at main
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
  "identity": ".resolve-product-dependencies",
  "name": "resolve-dependencies",
  "url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "version": "unspecified",
  "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
  "traits": [
    "default"
  ],
  "dependencies": [
    {
      "identity": "colorwellkit",
      "name": "ColorWellKit",
      "url": "https://github.com/jordanbaird/ColorWellKit.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/ColorWellKit",
      "traits": [
        "default"
      ],
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/jordanbaird/ColorWellKit.git
[1/600] Fetching colorwellkit
Fetched https://github.com/jordanbaird/ColorWellKit.git from cache (1.10s)
Creating working copy for https://github.com/jordanbaird/ColorWellKit.git
Working copy of https://github.com/jordanbaird/ColorWellKit.git resolved at main (3fa347b)
warning: '.resolve-product-dependencies': dependency 'colorwellkit' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/jordanbaird/ColorWellKit.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--6988338F2F200930.txt
[3/24] Emitting module ColorWellKit
[4/26] Compiling ColorWellKit EnvironmentValues.swift
[5/26] Compiling ColorWellKit ViewModifiers.swift
[6/26] Compiling ColorWellKit Backports.swift
[7/26] Compiling ColorWellKit ColorPanelMode.swift
[8/26] Compiling ColorWellKit ColorWell.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorWellKit/Views/SwiftUI/ColorWellRepresentable.swift:57:17: warning: switch must be exhaustive
 55 |             switch backingStorage.style {
 56 |             case .default:
 57 |                 switch controlSize {
    |                 |- warning: switch must be exhaustive
    |                 `- note: add missing case: '.extraLarge'
 58 |                 case .large:
 59 |                     size.width += 17
/Users/admin/builder/spi-builder-workspace/Sources/ColorWellKit/Views/SwiftUI/ColorWellRepresentable.swift:73:17: warning: switch must be exhaustive
 71 |                 }
 72 |             case .minimal:
 73 |                 switch controlSize {
    |                 |- warning: switch must be exhaustive
    |                 `- note: add missing case: '.extraLarge'
 74 |                 case .large:
 75 |                     size.width += 17
/Users/admin/builder/spi-builder-workspace/Sources/ColorWellKit/Views/SwiftUI/ColorWellRepresentable.swift:90:17: warning: switch must be exhaustive
 88 |             case .expanded:
 89 |                 size.width += CWToggleSegment.widthConstant
 90 |                 switch controlSize {
    |                 |- warning: switch must be exhaustive
    |                 `- note: add missing case: '.extraLarge'
 91 |                 case .large:
 92 |                     size.width += 6
[9/26] Compiling ColorWellKit ColorWellRepresentable.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorWellKit/Views/SwiftUI/ColorWellRepresentable.swift:57:17: warning: switch must be exhaustive
 55 |             switch backingStorage.style {
 56 |             case .default:
 57 |                 switch controlSize {
    |                 |- warning: switch must be exhaustive
    |                 `- note: add missing case: '.extraLarge'
 58 |                 case .large:
 59 |                     size.width += 17
/Users/admin/builder/spi-builder-workspace/Sources/ColorWellKit/Views/SwiftUI/ColorWellRepresentable.swift:73:17: warning: switch must be exhaustive
 71 |                 }
 72 |             case .minimal:
 73 |                 switch controlSize {
    |                 |- warning: switch must be exhaustive
    |                 `- note: add missing case: '.extraLarge'
 74 |                 case .large:
 75 |                     size.width += 17
/Users/admin/builder/spi-builder-workspace/Sources/ColorWellKit/Views/SwiftUI/ColorWellRepresentable.swift:90:17: warning: switch must be exhaustive
 88 |             case .expanded:
 89 |                 size.width += CWToggleSegment.widthConstant
 90 |                 switch controlSize {
    |                 |- warning: switch must be exhaustive
    |                 `- note: add missing case: '.extraLarge'
 91 |                 case .large:
 92 |                     size.width += 6
[10/26] Compiling ColorWellKit ColorHelpers.swift
[11/26] Compiling ColorWellKit Extensions.swift
[12/26] Compiling ColorWellKit Geometry.swift
[13/26] Compiling ColorWellKit ColorWellSecondaryActionDelegate.swift
[14/26] Compiling ColorWellKit ColorWellStyle.swift
[15/26] Compiling ColorWellKit CWColorWell.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorWellKit/Views/Cocoa/CWColorWellBaseControl.swift:148:13: warning: switch must be exhaustive
146 |         switch backingStorage.style {
147 |         case .default, .minimal:
148 |             switch controlSize {
    |             |- warning: switch must be exhaustive
    |             `- note: add missing case: '.extraLarge'
149 |             case .large:
150 |                 size.height += 8
/Users/admin/builder/spi-builder-workspace/Sources/ColorWellKit/Views/Cocoa/CWColorWellBaseControl.swift:162:13: warning: switch must be exhaustive
160 |         case .expanded:
161 |             size.width += CWToggleSegment.widthConstant
162 |             switch controlSize {
    |             |- warning: switch must be exhaustive
    |             `- note: add missing case: '.extraLarge'
163 |             case .large:
164 |                 size.width += 8
[16/26] Compiling ColorWellKit CWColorWellBaseControl.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorWellKit/Views/Cocoa/CWColorWellBaseControl.swift:148:13: warning: switch must be exhaustive
146 |         switch backingStorage.style {
147 |         case .default, .minimal:
148 |             switch controlSize {
    |             |- warning: switch must be exhaustive
    |             `- note: add missing case: '.extraLarge'
149 |             case .large:
150 |                 size.height += 8
/Users/admin/builder/spi-builder-workspace/Sources/ColorWellKit/Views/Cocoa/CWColorWellBaseControl.swift:162:13: warning: switch must be exhaustive
160 |         case .expanded:
161 |             size.width += CWToggleSegment.widthConstant
162 |             switch controlSize {
    |             |- warning: switch must be exhaustive
    |             `- note: add missing case: '.extraLarge'
163 |             case .large:
164 |                 size.width += 8
[17/26] Compiling ColorWellKit LocalEventMonitor.swift
[18/26] Compiling ColorWellKit LockedState.swift
[19/26] Compiling ColorWellKit Logging.swift
[20/26] Compiling ColorWellKit CWColorWellDelegate.swift
[21/26] Compiling ColorWellKit CWColorWellLayoutView.swift
[22/26] Compiling ColorWellKit ObjectAssociation.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorWellKit/Utilities/Path.swift:86:9: warning: switch must be exhaustive
 84 |     private static func cornerRadius(for controlSize: NSControl.ControlSize?) -> CGFloat {
 85 |         var radius: CGFloat = 5
 86 |         switch controlSize {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.some(.extraLarge)'
 87 |         case .large:
 88 |             radius += 0.25
[23/26] Compiling ColorWellKit Path.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorWellKit/Utilities/Path.swift:86:9: warning: switch must be exhaustive
 84 |     private static func cornerRadius(for controlSize: NSControl.ControlSize?) -> CGFloat {
 85 |         var radius: CGFloat = 5
 86 |         switch controlSize {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.some(.extraLarge)'
 87 |         case .large:
 88 |             radius += 0.25
[24/26] Compiling ColorWellKit CWColorWell.Style.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorWellKit/Utilities/Path.swift:86:9: warning: switch must be exhaustive
 84 |     private static func cornerRadius(for controlSize: NSControl.ControlSize?) -> CGFloat {
 85 |         var radius: CGFloat = 5
 86 |         switch controlSize {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.some(.extraLarge)'
 87 |         case .large:
 88 |             radius += 0.25
[25/26] Compiling ColorWellKit CWColorWellPopover.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorWellKit/Views/Cocoa/CWColorWellSegment.swift:459:9: warning: switch must be exhaustive
457 |         var inset: CGFloat = 3
458 |         var radius: CGFloat = 2
459 |         switch colorWell?.controlSize {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.some(.extraLarge)'
460 |         case .large:
461 |             inset += 0.25
/Users/admin/builder/spi-builder-workspace/Sources/ColorWellKit/Views/Cocoa/CWColorWellSegment.swift:585:17: warning: switch must be exhaustive
583 |                 lazy var padding: CGFloat = 4.0
584 |
585 |                 switch colorWell?.controlSize {
    |                 |- warning: switch must be exhaustive
    |                 `- note: add missing case: '.some(.extraLarge)'
586 |                 case .large, .regular, .none:
587 |                     break // no change
/Users/admin/builder/spi-builder-workspace/Sources/ColorWellKit/Views/Cocoa/CWColorWellSegment.swift:795:13: warning: switch must be exhaustive
793 |             let (pad, width, height) = (5.5, bounds.width, bounds.height)
794 |             var dimension = min(max(height - pad * 2, width - pad), width - 1)
795 |             switch colorWell.controlSize {
    |             |- warning: switch must be exhaustive
    |             `- note: add missing case: '.extraLarge'
796 |             case .large, .regular:
797 |                 break // no change
[26/26] Compiling ColorWellKit CWColorWellSegment.swift
/Users/admin/builder/spi-builder-workspace/Sources/ColorWellKit/Views/Cocoa/CWColorWellSegment.swift:459:9: warning: switch must be exhaustive
457 |         var inset: CGFloat = 3
458 |         var radius: CGFloat = 2
459 |         switch colorWell?.controlSize {
    |         |- warning: switch must be exhaustive
    |         `- note: add missing case: '.some(.extraLarge)'
460 |         case .large:
461 |             inset += 0.25
/Users/admin/builder/spi-builder-workspace/Sources/ColorWellKit/Views/Cocoa/CWColorWellSegment.swift:585:17: warning: switch must be exhaustive
583 |                 lazy var padding: CGFloat = 4.0
584 |
585 |                 switch colorWell?.controlSize {
    |                 |- warning: switch must be exhaustive
    |                 `- note: add missing case: '.some(.extraLarge)'
586 |                 case .large, .regular, .none:
587 |                     break // no change
/Users/admin/builder/spi-builder-workspace/Sources/ColorWellKit/Views/Cocoa/CWColorWellSegment.swift:795:13: warning: switch must be exhaustive
793 |             let (pad, width, height) = (5.5, bounds.width, bounds.height)
794 |             var dimension = min(max(height - pad * 2, width - pad), width - 1)
795 |             switch colorWell.controlSize {
    |             |- warning: switch must be exhaustive
    |             `- note: add missing case: '.extraLarge'
796 |             case .large, .regular:
797 |                 break // no change
Build complete! (10.32s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "ColorWellKit",
  "name" : "ColorWellKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.13"
    }
  ],
  "products" : [
    {
      "name" : "ColorWellKit",
      "targets" : [
        "ColorWellKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ColorWellKitTests",
      "module_type" : "SwiftTarget",
      "name" : "ColorWellKitTests",
      "path" : "Tests/ColorWellKitTests",
      "sources" : [
        "ColorWellKitTests.swift"
      ],
      "target_dependencies" : [
        "ColorWellKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ColorWellKit",
      "module_type" : "SwiftTarget",
      "name" : "ColorWellKit",
      "path" : "Sources/ColorWellKit",
      "product_memberships" : [
        "ColorWellKit"
      ],
      "sources" : [
        "Utilities/ColorHelpers.swift",
        "Utilities/Extensions.swift",
        "Utilities/Geometry.swift",
        "Utilities/LocalEventMonitor.swift",
        "Utilities/LockedState.swift",
        "Utilities/Logging.swift",
        "Utilities/ObjectAssociation.swift",
        "Utilities/Path.swift",
        "Views/Cocoa/CWColorWell.Style.swift",
        "Views/Cocoa/CWColorWell.swift",
        "Views/Cocoa/CWColorWellBaseControl.swift",
        "Views/Cocoa/CWColorWellDelegate.swift",
        "Views/Cocoa/CWColorWellLayoutView.swift",
        "Views/Cocoa/CWColorWellPopover.swift",
        "Views/Cocoa/CWColorWellSegment.swift",
        "Views/SwiftUI/Backports.swift",
        "Views/SwiftUI/ColorPanelMode.swift",
        "Views/SwiftUI/ColorWell.swift",
        "Views/SwiftUI/ColorWellRepresentable.swift",
        "Views/SwiftUI/ColorWellSecondaryActionDelegate.swift",
        "Views/SwiftUI/ColorWellStyle.swift",
        "Views/SwiftUI/EnvironmentValues.swift",
        "Views/SwiftUI/ViewModifiers.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
✅  Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path:  $PWD/.docs/jordanbaird/colorwellkit/main
Repository:               jordanbaird/ColorWellKit
Swift version used:       6.3
Target:                   ColorWellKit
Extracting symbol information for 'ColorWellKit'...
Finished extracting symbol information for 'ColorWellKit'. (44.79s)
Building documentation for 'ColorWellKit'...
Finished building documentation for 'ColorWellKit' (1.16s)
Generated documentation archive at:
  /Users/admin/builder/spi-builder-workspace/.docs/jordanbaird/colorwellkit/main
Fetching https://github.com/swiftlang/swift-docc-plugin
[1/2271] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.09s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.6 (3.69s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3672] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.09s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.89s)
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.6
Building for debugging...
[0/8] Write sources
[1/8] Write snippet-extract-tool-entitlement.plist
[1/8] Write sources
[4/8] Write swift-version--6988338F2F200930.txt
[6/53] Emitting module SymbolKit
[7/57] Compiling SymbolKit DeclarationFragments.swift
[8/57] Compiling SymbolKit Fragment.swift
[9/57] Compiling SymbolKit FragmentKind.swift
[10/57] Compiling SymbolKit FunctionParameter.swift
[11/57] Compiling SymbolKit FunctionSignature.swift
[12/57] Compiling SymbolKit SemanticVersion.swift
[13/57] Compiling SymbolKit AccessControl.swift
[14/57] Compiling SymbolKit Availability.swift
[15/57] Compiling SymbolKit AvailabilityItem.swift
[16/57] Compiling SymbolKit Domain.swift
[17/57] Compiling SymbolKit GenericConstraint.swift
[18/57] Compiling SymbolKit GenericParameter.swift
[19/57] Compiling SymbolKit Generics.swift
[20/57] Compiling SymbolKit Namespace.swift
[21/57] Compiling SymbolKit Mixin+Equals.swift
[22/57] Compiling SymbolKit Mixin+Hash.swift
[23/57] Compiling SymbolKit Mixin.swift
[24/57] Compiling SymbolKit LineList.swift
[25/57] Compiling SymbolKit Position.swift
[26/57] Compiling SymbolKit Identifier.swift
[27/57] Compiling SymbolKit KindIdentifier.swift
[28/57] Compiling SymbolKit Location.swift
[29/57] Compiling SymbolKit Mutability.swift
[30/57] Compiling SymbolKit SourceRange.swift
[31/57] Compiling SymbolKit Metadata.swift
[32/57] Compiling SymbolKit Module.swift
[33/57] Compiling SymbolKit OperatingSystem.swift
[34/57] Compiling SymbolKit Platform.swift
[35/57] Compiling SymbolKit Relationship.swift
[36/57] Compiling SymbolKit RelationshipKind.swift
[37/57] Compiling SymbolKit SourceOrigin.swift
[38/57] Compiling SymbolKit GenericConstraints.swift
[39/57] Compiling SymbolKit Swift.swift
[40/57] Compiling SymbolKit Symbol.swift
[41/57] Compiling SymbolKit SymbolKind.swift
[42/57] Compiling SymbolKit SymbolGraph.swift
[43/57] Compiling SymbolKit GraphCollector.swift
[44/57] Compiling SymbolKit Names.swift
[45/57] Compiling SymbolKit SPI.swift
[46/57] Compiling SymbolKit Snippet.swift
[47/57] Compiling SymbolKit Extension.swift
[48/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[49/57] Compiling SymbolKit UnifiedSymbol.swift
[50/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[51/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[52/57] Compiling Snippets Snippet.swift
[53/57] Emitting module Snippets
[54/57] Compiling Snippets SnippetParser.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.18s)
Building for debugging...
[0/1] Write swift-version--6988338F2F200930.txt
Build of target: 'ColorWellKit' complete! (0.20s)
    1927
16	/Users/admin/builder/spi-builder-workspace/.docs/jordanbaird/colorwellkit/main
✅  Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/jordanbaird/colorwellkit/main
File count: 1927
Doc size:   16.0MB
Preparing doc bundle ...
Uploading prod-jordanbaird-colorwellkit-main-d83a830d.zip to s3://spi-docs-inbox/prod-jordanbaird-colorwellkit-main-d83a830d.zip
Copying... [11%]
Copying... [20%]
Copying... [31%]
Copying... [40%]
Copying... [51%]
Copying... [61%]
Copying... [71%]
Copying... [81%]
Copying... [90%]
Copying... [100%]
Done.