The Swift Package Index logo.Swift Package Index

Build Information

Successful build of SwiftGraph with Swift 5.9 for macOS (SPM).

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.27.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/davecom/SwiftGraph.git
Reference: master
Initialized empty Git repository in /Users/admin/builds/h8344Zi3/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.git/
From https://github.com/davecom/SwiftGraph
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 59414e2 Update CHANGELOG.md
Cloned https://github.com/davecom/SwiftGraph.git
Revision (git rev-parse @):
59414e26a0d48aece7d842720f24bdebddfe9ae9
SUCCESS checkout https://github.com/davecom/SwiftGraph.git at master
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
  "identity": ".resolve-product-dependencies",
  "name": "resolve-dependencies",
  "url": "/Users/admin/builds/h8344Zi3/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.resolve-product-dependencies",
  "version": "unspecified",
  "path": "/Users/admin/builds/h8344Zi3/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.resolve-product-dependencies",
  "dependencies": [
    {
      "identity": "swiftgraph",
      "name": "SwiftGraph",
      "url": "https://github.com/davecom/SwiftGraph.git",
      "version": "unspecified",
      "path": "/Users/admin/builds/h8344Zi3/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/SwiftGraph",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/davecom/SwiftGraph.git from cache
Fetched https://github.com/davecom/SwiftGraph.git (0.21s)
Creating working copy for https://github.com/davecom/SwiftGraph.git
Working copy of https://github.com/davecom/SwiftGraph.git resolved at master
warning: '.resolve-product-dependencies': dependency 'swiftgraph' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             5.9
Building package at path:  $PWD/checkout
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.0.0.app xcrun swift build --arch arm64
Building for debugging...
[1/16] Emitting module SwiftGraph
/Users/admin/builds/h8344Zi3/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/SwiftGraph/Search.swift:547:20: warning: generic parameter 'D' shadows generic parameter from outer scope with the same name; this is an error in Swift 6
    static func < <D>(lhs: DijkstraNode<D>, rhs: DijkstraNode<D>) -> Bool {
                   ^
/Users/admin/builds/h8344Zi3/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/SwiftGraph/Search.swift:543:21: note: 'D' previously declared here
struct DijkstraNode<D: Comparable>: Comparable, Equatable {
                    ^
/Users/admin/builds/h8344Zi3/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/SwiftGraph/Search.swift:551:21: warning: generic parameter 'D' shadows generic parameter from outer scope with the same name; this is an error in Swift 6
    static func == <D>(lhs: DijkstraNode<D>, rhs: DijkstraNode<D>) -> Bool {
                    ^
/Users/admin/builds/h8344Zi3/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/SwiftGraph/Search.swift:543:21: note: 'D' previously declared here
struct DijkstraNode<D: Comparable>: Comparable, Equatable {
                    ^
/Users/admin/builds/h8344Zi3/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/SwiftGraph/UniqueElementsGraph.swift:135:33: warning: generic parameter 'V' shadows generic parameter from outer scope with the same name; this is an error in Swift 6
    private struct QueueElement<V> {
                                ^
/Users/admin/builds/h8344Zi3/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/SwiftGraph/UniqueElementsGraph.swift:23:32: note: 'V' previously declared here
open class UniqueElementsGraph<V: Equatable & Codable, E: Edge & Equatable>: Graph {
                               ^
/Users/admin/builds/h8344Zi3/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/SwiftGraph/WeightedEdge.swift:55:28: warning: generic parameter 'W' shadows generic parameter from outer scope with the same name; this is an error in Swift 6
    static public func == <W>(lhs: WeightedEdge<W>, rhs: WeightedEdge<W>) -> Bool {
                           ^
/Users/admin/builds/h8344Zi3/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/SwiftGraph/WeightedEdge.swift:32:28: note: 'W' previously declared here
public struct WeightedEdge<W: Equatable & Codable>: Edge, CustomStringConvertible, Equatable {
                           ^
[2/18] Compiling SwiftGraph WeightedEdge.swift
/Users/admin/builds/h8344Zi3/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/SwiftGraph/WeightedEdge.swift:55:28: warning: generic parameter 'W' shadows generic parameter from outer scope with the same name; this is an error in Swift 6
    static public func == <W>(lhs: WeightedEdge<W>, rhs: WeightedEdge<W>) -> Bool {
                           ^
/Users/admin/builds/h8344Zi3/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/SwiftGraph/WeightedEdge.swift:32:28: note: 'W' previously declared here
public struct WeightedEdge<W: Equatable & Codable>: Edge, CustomStringConvertible, Equatable {
                           ^
[3/18] Compiling SwiftGraph WeightedGraph.swift
/Users/admin/builds/h8344Zi3/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/SwiftGraph/WeightedEdge.swift:55:28: warning: generic parameter 'W' shadows generic parameter from outer scope with the same name; this is an error in Swift 6
    static public func == <W>(lhs: WeightedEdge<W>, rhs: WeightedEdge<W>) -> Bool {
                           ^
/Users/admin/builds/h8344Zi3/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/SwiftGraph/WeightedEdge.swift:32:28: note: 'W' previously declared here
public struct WeightedEdge<W: Equatable & Codable>: Edge, CustomStringConvertible, Equatable {
                           ^
[4/18] Compiling SwiftGraph Stack.swift
[5/18] Compiling SwiftGraph SwiftPriorityQueue.swift
[6/18] Compiling SwiftGraph Union.swift
/Users/admin/builds/h8344Zi3/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/SwiftGraph/UniqueElementsGraph.swift:135:33: warning: generic parameter 'V' shadows generic parameter from outer scope with the same name; this is an error in Swift 6
    private struct QueueElement<V> {
                                ^
/Users/admin/builds/h8344Zi3/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/SwiftGraph/UniqueElementsGraph.swift:23:32: note: 'V' previously declared here
open class UniqueElementsGraph<V: Equatable & Codable, E: Edge & Equatable>: Graph {
                               ^
[7/18] Compiling SwiftGraph UniqueElementsGraph.swift
/Users/admin/builds/h8344Zi3/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/SwiftGraph/UniqueElementsGraph.swift:135:33: warning: generic parameter 'V' shadows generic parameter from outer scope with the same name; this is an error in Swift 6
    private struct QueueElement<V> {
                                ^
/Users/admin/builds/h8344Zi3/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/SwiftGraph/UniqueElementsGraph.swift:23:32: note: 'V' previously declared here
open class UniqueElementsGraph<V: Equatable & Codable, E: Edge & Equatable>: Graph {
                               ^
[8/18] Compiling SwiftGraph UnweightedEdge.swift
[9/18] Compiling SwiftGraph UnweightedGraph.swift
[10/18] Compiling SwiftGraph Graph.swift
[11/18] Compiling SwiftGraph MST.swift
[12/18] Compiling SwiftGraph Queue.swift
[13/18] Compiling SwiftGraph Reversed.swift
[14/18] Compiling SwiftGraph Constructors.swift
[15/18] Compiling SwiftGraph Cycle.swift
[16/18] Compiling SwiftGraph Edge.swift
[17/18] Compiling SwiftGraph Search.swift
/Users/admin/builds/h8344Zi3/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/SwiftGraph/Search.swift:547:20: warning: generic parameter 'D' shadows generic parameter from outer scope with the same name; this is an error in Swift 6
    static func < <D>(lhs: DijkstraNode<D>, rhs: DijkstraNode<D>) -> Bool {
                   ^
/Users/admin/builds/h8344Zi3/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/SwiftGraph/Search.swift:543:21: note: 'D' previously declared here
struct DijkstraNode<D: Comparable>: Comparable, Equatable {
                    ^
/Users/admin/builds/h8344Zi3/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/SwiftGraph/Search.swift:551:21: warning: generic parameter 'D' shadows generic parameter from outer scope with the same name; this is an error in Swift 6
    static func == <D>(lhs: DijkstraNode<D>, rhs: DijkstraNode<D>) -> Bool {
                    ^
/Users/admin/builds/h8344Zi3/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/SwiftGraph/Search.swift:543:21: note: 'D' previously declared here
struct DijkstraNode<D: Comparable>: Comparable, Equatable {
                    ^
[18/18] Compiling SwiftGraph Sort.swift
/Users/admin/builds/h8344Zi3/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/SwiftGraph/Search.swift:547:20: warning: generic parameter 'D' shadows generic parameter from outer scope with the same name; this is an error in Swift 6
    static func < <D>(lhs: DijkstraNode<D>, rhs: DijkstraNode<D>) -> Bool {
                   ^
/Users/admin/builds/h8344Zi3/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/SwiftGraph/Search.swift:543:21: note: 'D' previously declared here
struct DijkstraNode<D: Comparable>: Comparable, Equatable {
                    ^
/Users/admin/builds/h8344Zi3/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/SwiftGraph/Search.swift:551:21: warning: generic parameter 'D' shadows generic parameter from outer scope with the same name; this is an error in Swift 6
    static func == <D>(lhs: DijkstraNode<D>, rhs: DijkstraNode<D>) -> Bool {
                    ^
/Users/admin/builds/h8344Zi3/0/finestructure/swiftpackageindex-builder/spi-builder-workspace/Sources/SwiftGraph/Search.swift:543:21: note: 'D' previously declared here
struct DijkstraNode<D: Comparable>: Comparable, Equatable {
                    ^
Build complete! (7.99s)
Build complete.
Done.