Build Information
Successful build of swift-graph, reference main (55be64), with Swift 6.3 for macOS (SPM) on 18 Apr 2026 02:13:39 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/CorvidLabs/swift-graph.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/CorvidLabs/swift-graph
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 55be646 Update copyright year to 2026 (#1)
Cloned https://github.com/CorvidLabs/swift-graph.git
Revision (git rev-parse @):
55be6464dc3c9e50c39ec8d045caac4598f15e3e
SUCCESS checkout https://github.com/CorvidLabs/swift-graph.git at main
Fetching https://github.com/swiftlang/swift-docc-plugin
[1/2277] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.06s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.6 (4.22s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3672] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.13s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.85s)
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.6
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
========================================
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-graph",
"name": "swift-graph",
"url": "https://github.com/CorvidLabs/swift-graph.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/swift-graph",
"traits": [
"default"
],
"dependencies": [
]
}
]
}
Fetching https://github.com/CorvidLabs/swift-graph.git
[1/104] Fetching swift-graph
Fetched https://github.com/CorvidLabs/swift-graph.git from cache (0.59s)
Creating working copy for https://github.com/CorvidLabs/swift-graph.git
Working copy of https://github.com/CorvidLabs/swift-graph.git resolved at main (55be646)
warning: '.resolve-product-dependencies': dependency 'swift-graph' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.3
Building package at path: $PWD
https://github.com/CorvidLabs/swift-graph.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.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--6988338F2F200930.txt
[5/17] Compiling Graph StructError.swift
[6/17] Compiling Graph BinaryTree.swift
[7/17] Compiling Graph BinarySearchTree.swift
[8/18] Compiling Graph CircularBuffer.swift
[9/18] Compiling Graph Deque.swift
[10/18] Compiling Graph Trie.swift
[11/18] Compiling Graph Heap.swift
[12/18] Compiling Graph PriorityQueue.swift
[13/18] Compiling Graph TrieNode.swift
[14/18] Compiling Graph Graph.swift
[15/18] Compiling Graph GraphAlgorithms.swift
[16/18] Compiling Graph BloomFilter.swift
[17/18] Compiling Graph Edge.swift
[18/18] Emitting module Graph
Build complete! (10.96s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-docc-plugin",
"requirement" : {
"range" : [
{
"lower_bound" : "1.4.3",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/swiftlang/swift-docc-plugin"
}
],
"manifest_display_name" : "swift-graph",
"name" : "swift-graph",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "16.0"
},
{
"name" : "macos",
"version" : "13.0"
},
{
"name" : "tvos",
"version" : "16.0"
},
{
"name" : "watchos",
"version" : "9.0"
},
{
"name" : "visionos",
"version" : "1.0"
}
],
"products" : [
{
"name" : "Graph",
"targets" : [
"Graph"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "GraphTests",
"module_type" : "SwiftTarget",
"name" : "GraphTests",
"path" : "Tests/GraphTests",
"sources" : [
"BloomFilterTests.swift",
"GraphTests.swift",
"QueueTests.swift",
"TreeTests.swift",
"TrieTests.swift"
],
"target_dependencies" : [
"Graph"
],
"type" : "test"
},
{
"c99name" : "Graph",
"module_type" : "SwiftTarget",
"name" : "Graph",
"path" : "Sources/Graph",
"product_memberships" : [
"Graph"
],
"sources" : [
"BloomFilter/BloomFilter.swift",
"Graph/Edge.swift",
"Graph/Graph.swift",
"Graph/GraphAlgorithms.swift",
"Queue/CircularBuffer.swift",
"Queue/Deque.swift",
"Queue/PriorityQueue.swift",
"StructError.swift",
"Tree/BinarySearchTree.swift",
"Tree/BinaryTree.swift",
"Tree/Heap.swift",
"Trie/Trie.swift",
"Trie/TrieNode.swift"
],
"type" : "library"
}
],
"tools_version" : "6.0"
}
Done.