The Swift Package Index logo.Swift Package Index

Build Information

Successful build of sort-state-university, reference main (6f721f), with Swift 6.3 for macOS (SPM) on 22 Apr 2026 15:35:43 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/kylehughes/sort-state-university.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/kylehughes/sort-state-university
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 6f721f2 Improve quicksort algorithm with harmonic numbers
Cloned https://github.com/kylehughes/sort-state-university.git
Revision (git rev-parse @):
6f721f2274b0965dd5e54ba156c4e82e953a47d3
SUCCESS checkout https://github.com/kylehughes/sort-state-university.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": "sort-state-university",
      "name": "sort-state-university",
      "url": "https://github.com/kylehughes/sort-state-university.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/sort-state-university",
      "traits": [
        "default"
      ],
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/kylehughes/sort-state-university.git
[1/734] Fetching sort-state-university
Fetched https://github.com/kylehughes/sort-state-university.git from cache (0.93s)
Creating working copy for https://github.com/kylehughes/sort-state-university.git
Working copy of https://github.com/kylehughes/sort-state-university.git resolved at main (6f721f2)
warning: '.resolve-product-dependencies': dependency 'sort-state-university' 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/kylehughes/sort-state-university.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/16] Compiling SortStateUniversity SortingAlgorithm.swift
[4/16] Compiling SortStateUniversity SortingAlgorithmLabel.swift
[5/17] Compiling SortStateUniversity SortingAlgorithmStep.swift
[6/17] Compiling SortStateUniversity Quicksort+Partition.swift
[7/17] Compiling SortStateUniversity Quicksort.swift
[8/17] Compiling SortStateUniversity Double+SortStateUniversity.swift
[9/17] Compiling SortStateUniversity Int+SortStateUniversity.swift
[10/17] Compiling SortStateUniversity InsertionSort.swift
[11/17] Compiling SortStateUniversity MergeSort+Merge.swift
[12/17] Compiling SortStateUniversity Complexity.swift
[13/17] Compiling SortStateUniversity Array+SortStateUniversity.swift
[14/17] Compiling SortStateUniversity BuiltInSortingAlgorithmType.swift
[15/17] Compiling SortStateUniversity Comparison.swift
[16/17] Compiling SortStateUniversity MergeSort.swift
[17/17] Emitting module SortStateUniversity
Build complete! (5.06s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "sort-state-university",
  "name" : "sort-state-university",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "14.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "tvos",
      "version" : "14.0"
    },
    {
      "name" : "watchos",
      "version" : "7.0"
    }
  ],
  "products" : [
    {
      "name" : "SortStateUniversity",
      "targets" : [
        "SortStateUniversity"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SortStateUniversityTests",
      "module_type" : "SwiftTarget",
      "name" : "SortStateUniversityTests",
      "path" : "Tests/SortStateUniversityTests",
      "sources" : [
        "Tests/AbstractSortingAlgorithmTest.swift",
        "Tests/BuiltInSortingAlgorithmTypeTests.swift",
        "Tests/ComparisonTests.swift",
        "Tests/ComplexityTests.swift",
        "Tests/Insertion Sort/InsertionSortTests.swift",
        "Tests/Merge Sort/MergeSortTests.swift",
        "Tests/Quicksort/QuicksortTests.swift",
        "Tests/SortingAlgorithmStepTests.swift",
        "Utilities/DefaultSortingAlgorithmInputFactory.swift",
        "Utilities/SortingAlgorithmInputCase.swift",
        "Utilities/SortingAlgorithmInputFactory.swift"
      ],
      "target_dependencies" : [
        "SortStateUniversity"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SortStateUniversity",
      "module_type" : "SwiftTarget",
      "name" : "SortStateUniversity",
      "path" : "Sources/SortStateUniversity",
      "product_memberships" : [
        "SortStateUniversity"
      ],
      "sources" : [
        "BuiltInSortingAlgorithmType.swift",
        "Comparison.swift",
        "Complexity.swift",
        "Extensions/Standard Library/Array+SortStateUniversity.swift",
        "Extensions/Standard Library/Double+SortStateUniversity.swift",
        "Extensions/Standard Library/Int+SortStateUniversity.swift",
        "Insertion Sort/InsertionSort.swift",
        "Merge Sort/MergeSort+Merge.swift",
        "Merge Sort/MergeSort.swift",
        "Quicksort/Quicksort+Partition.swift",
        "Quicksort/Quicksort.swift",
        "SortingAlgorithm.swift",
        "SortingAlgorithmLabel.swift",
        "SortingAlgorithmStep.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.