The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of Commander, reference master (f22f0a), with Swift 6.2 (beta) for macOS (SPM) on 19 Jun 2025 10:02:04 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/kylef/Commander.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/kylef/Commander
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at f22f0a0 feat: support using = with options
Cloned https://github.com/kylef/Commander.git
Revision (git rev-parse @):
f22f0a07e02d924406a539d06c0d59402886de56
SUCCESS checkout https://github.com/kylef/Commander.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/kylef/Commander.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-1EA4D86E10B52AF.txt
[3/17] Compiling Commander CommandType.swift
[4/18] Compiling Commander Group.swift
[5/18] Compiling Commander GroupError.swift
[6/18] Compiling Commander AsyncGroup.swift
[7/18] Compiling Commander Command.swift
[8/18] Compiling Commander CommandError.swift
[9/18] Compiling Commander CommandRunner.swift
[10/18] Compiling Commander Error.swift
[11/18] Compiling Commander Commands.swift
[12/18] Emitting module Commander
/Users/admin/builder/spi-builder-workspace/Sources/Commander/ArgumentConvertible.swift:149:1: warning: extension declares a conformance of imported type 'Optional' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
147 | extension Array : ArgumentConvertible where Element : ArgumentConvertible {}
148 | extension Optional : ArgumentConvertible where Wrapped : ArgumentConvertible {}
149 | extension Optional : CustomStringConvertible where Wrapped : CustomStringConvertible {}
    | |- warning: extension declares a conformance of imported type 'Optional' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
150 |
[13/18] Compiling Commander ArgumentParser.swift
[14/18] Compiling Commander AsyncCommand.swift
[15/18] Compiling Commander ArgumentConvertible.swift
/Users/admin/builder/spi-builder-workspace/Sources/Commander/ArgumentConvertible.swift:149:1: warning: extension declares a conformance of imported type 'Optional' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
147 | extension Array : ArgumentConvertible where Element : ArgumentConvertible {}
148 | extension Optional : ArgumentConvertible where Wrapped : ArgumentConvertible {}
149 | extension Optional : CustomStringConvertible where Wrapped : CustomStringConvertible {}
    | |- warning: extension declares a conformance of imported type 'Optional' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
150 |
[16/18] Compiling Commander ArgumentDescription.swift
/Users/admin/builder/spi-builder-workspace/Sources/Commander/ArgumentConvertible.swift:149:1: warning: extension declares a conformance of imported type 'Optional' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
147 | extension Array : ArgumentConvertible where Element : ArgumentConvertible {}
148 | extension Optional : ArgumentConvertible where Wrapped : ArgumentConvertible {}
149 | extension Optional : CustomStringConvertible where Wrapped : CustomStringConvertible {}
    | |- warning: extension declares a conformance of imported type 'Optional' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
150 |
[17/18] Compiling Commander AsyncCommandType.swift
[18/18] Compiling Commander AsyncCommands.swift
Build complete! (8.27s)
Fetching https://github.com/kylef/Spectre.git
[1/1021] Fetching spectre
Fetched https://github.com/kylef/Spectre.git from cache (0.83s)
Computing version for https://github.com/kylef/Spectre.git
Computed https://github.com/kylef/Spectre.git at 0.10.1 (2.81s)
Creating working copy for https://github.com/kylef/Spectre.git
Working copy of https://github.com/kylef/Spectre.git resolved at 0.10.1
Build complete.
{
  "dependencies" : [
    {
      "identity" : "spectre",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.10.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/kylef/Spectre.git"
    }
  ],
  "manifest_display_name" : "Commander",
  "name" : "Commander",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "Commander",
      "targets" : [
        "Commander"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "CommanderTests",
      "module_type" : "SwiftTarget",
      "name" : "CommanderTests",
      "path" : "Tests/CommanderTests",
      "product_dependencies" : [
        "Spectre"
      ],
      "sources" : [
        "ArgumentConvertibleSpec.swift",
        "ArgumentDescriptionSpec.swift",
        "ArgumentParserSpec.swift",
        "CommandSpec.swift",
        "CommandTypeSpec.swift",
        "GroupSpec.swift",
        "XCTest.swift"
      ],
      "target_dependencies" : [
        "Commander"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Commander",
      "module_type" : "SwiftTarget",
      "name" : "Commander",
      "path" : "Sources/Commander",
      "product_memberships" : [
        "Commander"
      ],
      "sources" : [
        "ArgumentConvertible.swift",
        "ArgumentDescription.swift",
        "ArgumentParser.swift",
        "AsyncCommand.swift",
        "AsyncCommandType.swift",
        "AsyncCommands.swift",
        "AsyncGroup.swift",
        "Command.swift",
        "CommandError.swift",
        "CommandRunner.swift",
        "CommandType.swift",
        "Commands.swift",
        "Error.swift",
        "Group.swift",
        "GroupError.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
Done.