The Swift Package Index logo.Swift Package Index

Build Information

Successful build of ElementaryCycles, reference master (824a7d), with Swift 6.3 for macOS (SPM) on 10 Apr 2026 09:20:47 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/hectr/swift-elementary-cycles.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/hectr/swift-elementary-cycles
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 824a7d8 Release 0.4.0
Cloned https://github.com/hectr/swift-elementary-cycles.git
Revision (git rev-parse @):
824a7d8c9beff5bb4ce81ce65877e63c1bb85fac
SUCCESS checkout https://github.com/hectr/swift-elementary-cycles.git at master
Fetching https://github.com/hectr/swift-idioms.git
[1/393] Fetching swift-idioms
Fetched https://github.com/hectr/swift-idioms.git from cache (0.64s)
Computing version for https://github.com/hectr/swift-idioms.git
Computed https://github.com/hectr/swift-idioms.git at 1.4.0 (1.28s)
Creating working copy for https://github.com/hectr/swift-idioms.git
Working copy of https://github.com/hectr/swift-idioms.git resolved at 1.4.0
========================================
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": "swift-elementary-cycles",
      "name": "ElementaryCycles",
      "url": "https://github.com/hectr/swift-elementary-cycles.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/swift-elementary-cycles",
      "traits": [
        "default"
      ],
      "dependencies": [
        {
          "identity": "swift-idioms",
          "name": "Idioms",
          "url": "https://github.com/hectr/swift-idioms.git",
          "version": "1.9.0",
          "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/swift-idioms",
          "traits": [
            "default"
          ],
          "dependencies": [
          ]
        }
      ]
    }
  ]
}
Fetching https://github.com/hectr/swift-elementary-cycles.git
[1/165] Fetching swift-elementary-cycles
Fetched https://github.com/hectr/swift-elementary-cycles.git from cache (0.61s)
Fetching https://github.com/hectr/swift-idioms.git from cache
Fetched https://github.com/hectr/swift-idioms.git from cache (0.47s)
Computing version for https://github.com/hectr/swift-idioms.git
Computed https://github.com/hectr/swift-idioms.git at 1.9.0 (1.16s)
Creating working copy for https://github.com/hectr/swift-idioms.git
Working copy of https://github.com/hectr/swift-idioms.git resolved at 1.9.0
Creating working copy for https://github.com/hectr/swift-elementary-cycles.git
Working copy of https://github.com/hectr/swift-elementary-cycles.git resolved at master (824a7d8)
Found 1 product dependencies
  - Idioms
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/hectr/swift-elementary-cycles.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/9] Write sources
[1/9] Write ElementaryCyclesSearchExample-entitlement.plist
[5/9] Write swift-version--6988338F2F200930.txt
[7/21] Compiling Idioms Vector+Sequence.swift
[8/21] Compiling Idioms StringProtocol+Subscript.swift
[9/22] Compiling Idioms String+Prepending.swift
[10/22] Compiling Idioms String+Contains.swift
[11/22] Compiling Idioms Matrix2D+Sequence.swift
[12/22] Compiling Idioms Matrix2D.swift
[13/22] Compiling Idioms Bool+ControlFlow.swift
[14/22] Compiling Idioms ForLoop.swift
[15/22] Compiling Idioms Int+Times.swift
[16/22] Compiling Idioms IterableRandomAccessCollection.swift
[17/22] Compiling Idioms RandomAccessMutableCollection.swift
[18/22] Emitting module Idioms
[19/22] Compiling Idioms Vector.swift
[20/28] Compiling ElementaryCyclesSearch StrongConnectedComponents.swift
[21/28] Emitting module ElementaryCyclesSearch
[22/28] Compiling ElementaryCyclesSearch AdjacencyList.swift
[23/28] Compiling ElementaryCyclesSearch AdjacencyList+getAdjacencyList.swift
[24/28] Compiling ElementaryCyclesSearch AdjacencyMatrix.swift
[25/28] Compiling ElementaryCyclesSearch ElementaryCyclesSearch.swift
[26/35] Compiling ElementaryCycles ElementaryCycles.swift
[27/35] Compiling ElementaryCycles ElementaryCyclesSearch+toArray.swift
[28/35] Emitting module ElementaryCycles
/Users/admin/builder/spi-builder-workspace/Sources/ElementaryCycles/Private/AdjacencyMatrix+getAdjacencyMatrix.swift:20:14: warning: associated value 'indexNotFound(node:nodes:)' of 'Sendable'-conforming enum 'Error' contains non-Sendable type 'AnyHashable'
18 | extension Matrix2D where Element == Bool {
19 |     enum Error: Swift.Error {
20 |         case indexNotFound(node: AnyHashable, nodes: [AnyHashable])
   |              `- warning: associated value 'indexNotFound(node:nodes:)' of 'Sendable'-conforming enum 'Error' contains non-Sendable type 'AnyHashable'
21 |     }
22 |
Swift.AnyHashable:1:23: note: struct 'AnyHashable' does not conform to the 'Sendable' protocol
1 | @frozen public struct AnyHashable {
  |                       `- note: struct 'AnyHashable' does not conform to the 'Sendable' protocol
2 |     public init<H>(_ base: H) where H : Hashable
3 |     public var base: Any { get }
/Users/admin/builder/spi-builder-workspace/Sources/ElementaryCycles/Private/AdjacencyMatrix+getAdjacencyMatrix.swift:20:14: warning: associated value 'indexNotFound(node:nodes:)' of 'Sendable'-conforming enum 'Error' contains non-Sendable type '[AnyHashable]'
18 | extension Matrix2D where Element == Bool {
19 |     enum Error: Swift.Error {
20 |         case indexNotFound(node: AnyHashable, nodes: [AnyHashable])
   |              `- warning: associated value 'indexNotFound(node:nodes:)' of 'Sendable'-conforming enum 'Error' contains non-Sendable type '[AnyHashable]'
21 |     }
22 |
Swift.Array:1:23: note: generic struct 'Array' does not conform to the 'Sendable' protocol
1 | @frozen public struct Array<Element> : _DestructorSafeContainer {
  |                       `- note: generic struct 'Array' does not conform to the 'Sendable' protocol
2 | }
[29/35] Compiling ElementaryCycles AdjacencyMatrix+getNodes.swift
[30/35] Compiling ElementaryCycles AdjacencyMatrix+getAdjacencyMatrix.swift
/Users/admin/builder/spi-builder-workspace/Sources/ElementaryCycles/Private/AdjacencyMatrix+getAdjacencyMatrix.swift:20:14: warning: associated value 'indexNotFound(node:nodes:)' of 'Sendable'-conforming enum 'Error' contains non-Sendable type 'AnyHashable'
18 | extension Matrix2D where Element == Bool {
19 |     enum Error: Swift.Error {
20 |         case indexNotFound(node: AnyHashable, nodes: [AnyHashable])
   |              `- warning: associated value 'indexNotFound(node:nodes:)' of 'Sendable'-conforming enum 'Error' contains non-Sendable type 'AnyHashable'
21 |     }
22 |
Swift.AnyHashable:1:23: note: struct 'AnyHashable' does not conform to the 'Sendable' protocol
1 | @frozen public struct AnyHashable {
  |                       `- note: struct 'AnyHashable' does not conform to the 'Sendable' protocol
2 |     public init<H>(_ base: H) where H : Hashable
3 |     public var base: Any { get }
/Users/admin/builder/spi-builder-workspace/Sources/ElementaryCycles/Private/AdjacencyMatrix+getAdjacencyMatrix.swift:20:14: warning: associated value 'indexNotFound(node:nodes:)' of 'Sendable'-conforming enum 'Error' contains non-Sendable type '[AnyHashable]'
18 | extension Matrix2D where Element == Bool {
19 |     enum Error: Swift.Error {
20 |         case indexNotFound(node: AnyHashable, nodes: [AnyHashable])
   |              `- warning: associated value 'indexNotFound(node:nodes:)' of 'Sendable'-conforming enum 'Error' contains non-Sendable type '[AnyHashable]'
21 |     }
22 |
Swift.Array:1:23: note: generic struct 'Array' does not conform to the 'Sendable' protocol
1 | @frozen public struct Array<Element> : _DestructorSafeContainer {
  |                       `- note: generic struct 'Array' does not conform to the 'Sendable' protocol
2 | }
[31/35] Emitting module ElementaryCyclesSearchExample
[32/35] Compiling ElementaryCyclesSearchExample main.swift
[32/35] Write Objects.LinkFileList
[33/35] Linking ElementaryCyclesSearchExample
[34/35] Applying ElementaryCyclesSearchExample
Build complete! (5.98s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-idioms",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.4.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/hectr/swift-idioms.git"
    }
  ],
  "manifest_display_name" : "ElementaryCycles",
  "name" : "ElementaryCycles",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "ElementaryCycles",
      "targets" : [
        "ElementaryCycles"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "ElementaryCyclesSearch",
      "targets" : [
        "ElementaryCyclesSearch"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "ElementaryCyclesSearchExample",
      "targets" : [
        "ElementaryCyclesSearchExample"
      ],
      "type" : {
        "executable" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ElementaryCyclesTests",
      "module_type" : "SwiftTarget",
      "name" : "ElementaryCyclesTests",
      "path" : "Tests/ElementaryCyclesTests",
      "sources" : [
        "AdjacencyMatrixShould.swift",
        "ElementaryCyclesSearchShould.swift",
        "ElementaryCyclesShould.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "ElementaryCycles"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ElementaryCyclesSearchTests",
      "module_type" : "SwiftTarget",
      "name" : "ElementaryCyclesSearchTests",
      "path" : "Tests/ElementaryCyclesSearchTests",
      "sources" : [
        "AdjacencyListTests.swift",
        "AdjacencyMatrixTests.swift",
        "ElementaryCyclesSearchTests.swift",
        "StrongConnectedComponentsTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "ElementaryCyclesSearch"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ElementaryCyclesSearchExample",
      "module_type" : "SwiftTarget",
      "name" : "ElementaryCyclesSearchExample",
      "path" : "Sources/ElementaryCyclesSearchExample",
      "product_memberships" : [
        "ElementaryCyclesSearchExample"
      ],
      "sources" : [
        "main.swift"
      ],
      "target_dependencies" : [
        "ElementaryCyclesSearch"
      ],
      "type" : "executable"
    },
    {
      "c99name" : "ElementaryCyclesSearch",
      "module_type" : "SwiftTarget",
      "name" : "ElementaryCyclesSearch",
      "path" : "Sources/ElementaryCyclesSearch",
      "product_dependencies" : [
        "Idioms"
      ],
      "product_memberships" : [
        "ElementaryCycles",
        "ElementaryCyclesSearch",
        "ElementaryCyclesSearchExample"
      ],
      "sources" : [
        "Private/AdjacencyList+getAdjacencyList.swift",
        "Private/AdjacencyList.swift",
        "Private/StrongConnectedComponents.swift",
        "Public/AdjacencyMatrix.swift",
        "Public/ElementaryCyclesSearch.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "ElementaryCycles",
      "module_type" : "SwiftTarget",
      "name" : "ElementaryCycles",
      "path" : "Sources/ElementaryCycles",
      "product_memberships" : [
        "ElementaryCycles"
      ],
      "sources" : [
        "Private/AdjacencyMatrix+getAdjacencyMatrix.swift",
        "Private/AdjacencyMatrix+getNodes.swift",
        "Private/ElementaryCyclesSearch+toArray.swift",
        "Public/ElementaryCycles.swift"
      ],
      "target_dependencies" : [
        "ElementaryCyclesSearch"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Done.