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 Hamilton, reference master (6040c0), with Swift 6.2 (beta) for macOS (SPM) on 18 Jun 2025 07:44:01 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/pducks32/Hamilton.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/pducks32/Hamilton
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 6040c03 Merge pull request #2 from martin-key/master
Cloned https://github.com/pducks32/Hamilton.git
Revision (git rev-parse @):
6040c03390f5b998685e424fb0125ed79869729f
SUCCESS checkout https://github.com/pducks32/Hamilton.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/pducks32/Hamilton.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/15] Compiling Hamilton Vector3.swift
[4/15] Compiling Hamilton VectorableFormatter.swift
[5/15] Compiling Hamilton Vector2.swift
[6/15] Compiling Hamilton Vectorable.swift
[7/16] Compiling Hamilton Vector4.swift
[8/16] Compiling Hamilton Scalar.swift
[9/16] Compiling Hamilton AngleConvertible.swift
[10/16] Compiling Hamilton EulerAngles+Equatable.swift
[11/16] Emitting module Hamilton
/Users/admin/builder/spi-builder-workspace/Sources/Hamilton/Quaternion.swift:12:1: warning: extension declares a conformance of imported type '_GLKMatrix4' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'GLKit' introduce this conformance in the future
 10 | import SceneKit
 11 |
 12 | extension GLKMatrix4 : CustomDebugStringConvertible {
    | |- warning: extension declares a conformance of imported type '_GLKMatrix4' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'GLKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 13 |     public var debugDescription: String {
 14 |         let topRow = GLKMatrix4GetRow(self, 0)
[12/16] Compiling Hamilton Vectorable+SceneKit.swift
[13/16] Compiling Hamilton EulerAngles+Operators.swift
[14/16] Compiling Hamilton EulerAngles.swift
[15/16] Compiling Hamilton Quaternion.swift
/Users/admin/builder/spi-builder-workspace/Sources/Hamilton/Quaternion.swift:12:1: warning: extension declares a conformance of imported type '_GLKMatrix4' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'GLKit' introduce this conformance in the future
 10 | import SceneKit
 11 |
 12 | extension GLKMatrix4 : CustomDebugStringConvertible {
    | |- warning: extension declares a conformance of imported type '_GLKMatrix4' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'GLKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 13 |     public var debugDescription: String {
 14 |         let topRow = GLKMatrix4GetRow(self, 0)
[16/16] Compiling Hamilton Rotateable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Hamilton/Quaternion.swift:12:1: warning: extension declares a conformance of imported type '_GLKMatrix4' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'GLKit' introduce this conformance in the future
 10 | import SceneKit
 11 |
 12 | extension GLKMatrix4 : CustomDebugStringConvertible {
    | |- warning: extension declares a conformance of imported type '_GLKMatrix4' to imported protocol 'CustomDebugStringConvertible'; this will not behave correctly if the owners of 'GLKit' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
 13 |     public var debugDescription: String {
 14 |         let topRow = GLKMatrix4GetRow(self, 0)
Build complete! (8.16s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Hamilton",
  "name" : "Hamilton",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.14"
    },
    {
      "name" : "ios",
      "version" : "10.0"
    },
    {
      "name" : "tvos",
      "version" : "10.0"
    },
    {
      "name" : "watchos",
      "version" : "3.0"
    }
  ],
  "products" : [
    {
      "name" : "Hamilton",
      "targets" : [
        "Hamilton"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "HamiltonTests",
      "module_type" : "SwiftTarget",
      "name" : "HamiltonTests",
      "path" : "Tests/HamiltonTests",
      "sources" : [
        "Angles.swift",
        "EulerAnglesSystemConversionTests.swift",
        "HamiltonTests.swift",
        "Helpers.swift",
        "MatrixTests.swift",
        "Quaternion+EulerAnglesTests.swift",
        "QuaternionInitializers.swift",
        "QuaternionMultiplication.swift",
        "Vector2Arithmatic.swift",
        "Vector3Arithmatic.swift"
      ],
      "target_dependencies" : [
        "Hamilton"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Hamilton",
      "module_type" : "SwiftTarget",
      "name" : "Hamilton",
      "path" : "Sources/Hamilton",
      "product_memberships" : [
        "Hamilton"
      ],
      "sources" : [
        "AngleConvertible.swift",
        "EulerAngles/EulerAngles+Equatable.swift",
        "EulerAngles/EulerAngles+Operators.swift",
        "EulerAngles/EulerAngles.swift",
        "Quaternion.swift",
        "Rotateable.swift",
        "Scalar.swift",
        "SceneKitExtensions/Vectorable+SceneKit.swift",
        "Vectorable.swift",
        "VectorableFormatter.swift",
        "Vectors/Vector2.swift",
        "Vectors/Vector3.swift",
        "Vectors/Vector4.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.2"
}
Done.