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 hex-grid, reference 0.4.11 (d02177), with Swift 6.2 (beta) for macOS (SPM) on 20 Jun 2025 00:40:05 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/fananek/hex-grid.git
Reference: 0.4.11
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/fananek/hex-grid
 * tag               0.4.11     -> FETCH_HEAD
HEAD is now at d021778 update GH actions
Cloned https://github.com/fananek/hex-grid.git
Revision (git rev-parse @):
d021778edfc8775197b6922569cd274a984661df
SUCCESS checkout https://github.com/fananek/hex-grid.git at 0.4.11
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/fananek/hex-grid.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
[1/1] Compiling plugin Swift-DocC Preview
[2/2] Compiling plugin Swift-DocC
Building for debugging...
[2/4] Write sources
[3/4] Write swift-version-1EA4D86E10B52AF.txt
[5/27] Emitting module HexGrid
/Users/admin/builder/spi-builder-workspace/Sources/HexGrid/DataStructures/Node.swift:19:21: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 1 | internal class Node<T: Hashable> {
   |                     `- note: 'T' previously declared here
 2 |     let coordinates: T
 3 |     let parent: Node?
   :
17 |
18 | extension Node: Comparable {
19 |     static func == <T>(lhs: Node<T>, rhs: Node<T>) -> Bool {
   |                     `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
20 |         return lhs === rhs
21 |     }
/Users/admin/builder/spi-builder-workspace/Sources/HexGrid/DataStructures/Node.swift:23:20: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 1 | internal class Node<T: Hashable> {
   |                     `- note: 'T' previously declared here
 2 |     let coordinates: T
 3 |     let parent: Node?
   :
21 |     }
22 |
23 |     static func < <T>(lhs: Node<T>, rhs: Node<T>) -> Bool {
   |                    `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
24 |         return (lhs.totalScore) < (rhs.totalScore)
25 |     }
[6/29] Compiling HexGrid Cell.swift
[7/29] Compiling HexGrid Convertor.swift
[8/29] Compiling HexGrid InvalidArgumentError.swift
[9/29] Compiling HexGrid PriorityQueue.swift
[10/29] Compiling HexGrid DirectionsEnumeration.swift
[11/29] Compiling HexGrid Node.swift
/Users/admin/builder/spi-builder-workspace/Sources/HexGrid/DataStructures/Node.swift:19:21: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 1 | internal class Node<T: Hashable> {
   |                     `- note: 'T' previously declared here
 2 |     let coordinates: T
 3 |     let parent: Node?
   :
17 |
18 | extension Node: Comparable {
19 |     static func == <T>(lhs: Node<T>, rhs: Node<T>) -> Bool {
   |                     `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
20 |         return lhs === rhs
21 |     }
/Users/admin/builder/spi-builder-workspace/Sources/HexGrid/DataStructures/Node.swift:23:20: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 1 | internal class Node<T: Hashable> {
   |                     `- note: 'T' previously declared here
 2 |     let coordinates: T
 3 |     let parent: Node?
   :
21 |     }
22 |
23 |     static func < <T>(lhs: Node<T>, rhs: Node<T>) -> Bool {
   |                    `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
24 |         return (lhs.totalScore) < (rhs.totalScore)
25 |     }
[12/29] Compiling HexGrid Point.swift
/Users/admin/builder/spi-builder-workspace/Sources/HexGrid/DataStructures/Node.swift:19:21: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 1 | internal class Node<T: Hashable> {
   |                     `- note: 'T' previously declared here
 2 |     let coordinates: T
 3 |     let parent: Node?
   :
17 |
18 | extension Node: Comparable {
19 |     static func == <T>(lhs: Node<T>, rhs: Node<T>) -> Bool {
   |                     `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
20 |         return lhs === rhs
21 |     }
/Users/admin/builder/spi-builder-workspace/Sources/HexGrid/DataStructures/Node.swift:23:20: warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
 1 | internal class Node<T: Hashable> {
   |                     `- note: 'T' previously declared here
 2 |     let coordinates: T
 3 |     let parent: Node?
   :
21 |     }
22 |
23 |     static func < <T>(lhs: Node<T>, rhs: Node<T>) -> Bool {
   |                    `- warning: generic parameter 'T' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
24 |         return (lhs.totalScore) < (rhs.totalScore)
25 |     }
[13/29] Compiling HexGrid OffsetCoordinates.swift
[14/29] Compiling HexGrid Heap.swift
[15/29] Compiling HexGrid HexSize.swift
[16/29] Compiling HexGrid GridShapeEnumeration.swift
[17/29] Compiling HexGrid OffsetLayoutEnumeration.swift
[18/29] Compiling HexGrid Generator.swift
[19/29] Compiling HexGrid HexGrid.swift
[20/29] Compiling HexGrid Math.swift
[21/29] Compiling HexGrid OrientationMatrix.swift
[22/29] Compiling HexGrid AxialCoordinates.swift
[23/29] Compiling HexGrid CubeCoordinates.swift
[24/29] Compiling HexGrid CubeFractionalCoordinates.swift
[25/29] Compiling HexGrid OrientationEnumeration.swift
[26/29] Compiling HexGrid RotationEnumeration.swift
[27/29] Compiling HexGrid Attribute.swift
[28/29] Compiling HexGrid AttributeDecodable.swift
[29/29] Compiling HexGrid AttributeEncodable.swift
Build complete! (17.32s)
Fetching https://github.com/apple/swift-docc-plugin.git
[1/2082] Fetching swift-docc-plugin
Fetched https://github.com/apple/swift-docc-plugin.git from cache (1.12s)
Computing version for https://github.com/apple/swift-docc-plugin.git
Computed https://github.com/apple/swift-docc-plugin.git at 1.4.4 (1.66s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3413] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.19s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.79s)
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/apple/swift-docc-plugin.git
Working copy of https://github.com/apple/swift-docc-plugin.git resolved at 1.4.4
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin.git"
    }
  ],
  "manifest_display_name" : "hex-grid",
  "name" : "hex-grid",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "HexGrid",
      "targets" : [
        "HexGrid"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "HexGridTests",
      "module_type" : "SwiftTarget",
      "name" : "HexGridTests",
      "path" : "Tests/HexGridTests",
      "sources" : [
        "AttributeCodableTests.swift",
        "CellTests.swift",
        "CodableTests.swift",
        "ConvertorTests.swift",
        "CoordinatesTests.swift",
        "GridGeneratorTests.swift",
        "HeapTests.swift",
        "HexGridTests.swift",
        "MathTests.swift",
        "PriorityQueueTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "HexGrid"
      ],
      "type" : "test"
    },
    {
      "c99name" : "HexGrid",
      "module_type" : "SwiftTarget",
      "name" : "HexGrid",
      "path" : "Sources/HexGrid",
      "product_memberships" : [
        "HexGrid"
      ],
      "sources" : [
        "Cell.swift",
        "Convertor.swift",
        "CustomErrors/InvalidArgumentError.swift",
        "DataStructures/Attributes/Attribute.swift",
        "DataStructures/Attributes/AttributeDecodable.swift",
        "DataStructures/Attributes/AttributeEncodable.swift",
        "DataStructures/Coordinates/AxialCoordinates.swift",
        "DataStructures/Coordinates/CubeCoordinates.swift",
        "DataStructures/Coordinates/CubeFractionalCoordinates.swift",
        "DataStructures/Coordinates/OffsetCoordinates.swift",
        "DataStructures/Heap.swift",
        "DataStructures/HexSize.swift",
        "DataStructures/Node.swift",
        "DataStructures/Point.swift",
        "DataStructures/PriorityQueue.swift",
        "Enumerations/DirectionsEnumeration.swift",
        "Enumerations/GridShapeEnumeration.swift",
        "Enumerations/OffsetLayoutEnumeration.swift",
        "Enumerations/OrientationEnumeration.swift",
        "Enumerations/RotationEnumeration.swift",
        "Generator.swift",
        "HexGrid.swift",
        "Math.swift",
        "OrientationMatrix.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.6"
}
Done.