The Swift Package Index logo.Swift Package Index

Build Information

Successful build of SwiftDagre, reference main (92efb7), with Swift 6.0 for macOS (SPM) on 25 Feb 2026 11:30:59 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/lukilabs/dagre-swift.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/lukilabs/dagre-swift
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 92efb78 Initial Commit
Cloned https://github.com/lukilabs/dagre-swift.git
Revision (git rev-parse @):
92efb78b73a8b665ee74bacfb0f1f5b17bbe1b38
SUCCESS checkout https://github.com/lukilabs/dagre-swift.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $PWD
https://github.com/lukilabs/dagre-swift.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.2.0.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-5BDAB9E9C0126B9D.txt
[3/28] Emitting module SwiftDagre
[4/30] Compiling SwiftDagre AddSubgraphConstraints.swift
[5/30] Compiling SwiftDagre Barycenter.swift
[6/30] Compiling SwiftDagre BuildLayerGraph.swift
[7/30] Compiling SwiftDagre Graph.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDagre/Graph/Graph.swift:215:21: warning: result of 'try?' is unused
213 |             if let children = _children[v] {
214 |                 for child in children {
215 |                     try? setParent(child, parent: nil)
    |                     `- warning: result of 'try?' is unused
216 |                 }
217 |             }
[8/30] Compiling SwiftDagre GraphOptions.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDagre/Graph/Graph.swift:215:21: warning: result of 'try?' is unused
213 |             if let children = _children[v] {
214 |                 for child in children {
215 |                     try? setParent(child, parent: nil)
    |                     `- warning: result of 'try?' is unused
216 |                 }
217 |             }
[9/30] Compiling SwiftDagre AddBorderSegments.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftDagre/Graph/Graph.swift:215:21: warning: result of 'try?' is unused
213 |             if let children = _children[v] {
214 |                 for child in children {
215 |                     try? setParent(child, parent: nil)
    |                     `- warning: result of 'try?' is unused
216 |                 }
217 |             }
[10/30] Compiling SwiftDagre CrossCount.swift
[11/30] Compiling SwiftDagre InitOrder.swift
[12/30] Compiling SwiftDagre Order.swift
[13/30] Compiling SwiftDagre LongestPath.swift
[14/30] Compiling SwiftDagre NetworkSimplex.swift
[15/30] Compiling SwiftDagre Acyclic.swift
[16/30] Compiling SwiftDagre GreedyFAS.swift
[17/30] Compiling SwiftDagre EdgeId.swift
[18/30] Compiling SwiftDagre SortSubgraph.swift
[19/30] Compiling SwiftDagre BrandesKopf.swift
[20/30] Compiling SwiftDagre Position.swift
[21/30] Compiling SwiftDagre Denormalize.swift
[22/30] Compiling SwiftDagre Normalize.swift
[23/30] Compiling SwiftDagre ParentDummyChains.swift
[24/30] Compiling SwiftDagre Rank.swift
[25/30] Compiling SwiftDagre GraphUtil.swift
[26/30] Compiling SwiftDagre PositionY.swift
[27/30] Compiling SwiftDagre FeasibleTree.swift
[28/30] Compiling SwiftDagre Labels.swift
[29/30] Compiling SwiftDagre Layout.swift
[30/30] Compiling SwiftDagre NestingGraph.swift
Build complete! (4.29s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "SwiftDagre",
  "name" : "SwiftDagre",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "15.0"
    },
    {
      "name" : "macos",
      "version" : "12.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "15.0"
    }
  ],
  "products" : [
    {
      "name" : "SwiftDagre",
      "targets" : [
        "SwiftDagre"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SwiftDagreTests",
      "module_type" : "SwiftTarget",
      "name" : "SwiftDagreTests",
      "path" : "Tests/SwiftDagreTests",
      "sources" : [
        "AcyclicTests.swift",
        "GraphTests.swift",
        "LayoutIntegrationTests.swift",
        "NormalizeTests.swift",
        "OrderTests.swift",
        "PositionTests.swift",
        "RankTests.swift"
      ],
      "target_dependencies" : [
        "SwiftDagre"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SwiftDagre",
      "module_type" : "SwiftTarget",
      "name" : "SwiftDagre",
      "path" : "Sources/SwiftDagre",
      "product_memberships" : [
        "SwiftDagre"
      ],
      "sources" : [
        "Acyclic/Acyclic.swift",
        "Acyclic/GreedyFAS.swift",
        "Graph/EdgeId.swift",
        "Graph/Graph.swift",
        "Graph/GraphOptions.swift",
        "Layout/AddBorderSegments.swift",
        "Layout/Labels.swift",
        "Layout/Layout.swift",
        "Nesting/NestingGraph.swift",
        "Normalize/Denormalize.swift",
        "Normalize/Normalize.swift",
        "Normalize/ParentDummyChains.swift",
        "Order/AddSubgraphConstraints.swift",
        "Order/Barycenter.swift",
        "Order/BuildLayerGraph.swift",
        "Order/CrossCount.swift",
        "Order/InitOrder.swift",
        "Order/Order.swift",
        "Order/SortSubgraph.swift",
        "Position/BrandesKopf.swift",
        "Position/Position.swift",
        "Position/PositionY.swift",
        "Rank/FeasibleTree.swift",
        "Rank/LongestPath.swift",
        "Rank/NetworkSimplex.swift",
        "Rank/Rank.swift",
        "Util/GraphUtil.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.