Build Information
Successful build of swift-graph, reference main (55be64), with Swift 6.3 for Android on 18 Apr 2026 02:00:28 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1Build 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 /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: git branch -m <name>
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
========================================
Build
========================================
Selected platform: android
Swift version: 6.3
Building package at path: $PWD
https://github.com/CorvidLabs/swift-graph.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:9008270ea37a55e78725e6225015adb5eff8582da520c5232bf0499f32c36dc4
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest
Fetching https://github.com/swiftlang/swift-docc-plugin
[1/2277] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (0.43s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.6 (2.95s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3672] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (0.38s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (0.91s)
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/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.6
[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--4F562202D5529B1.txt
[5/17] Compiling Graph Heap.swift
[6/18] Compiling Graph PriorityQueue.swift
[7/18] Compiling Graph StructError.swift
[8/18] Compiling Graph BinarySearchTree.swift
[9/18] Compiling Graph BinaryTree.swift
[10/18] Compiling Graph CircularBuffer.swift
[11/18] Compiling Graph Deque.swift
[12/18] Compiling Graph Trie.swift
[13/18] Compiling Graph Graph.swift
[14/18] Compiling Graph GraphAlgorithms.swift
[15/18] Compiling Graph TrieNode.swift
[16/18] Emitting module Graph
[17/18] Compiling Graph BloomFilter.swift
[18/18] Compiling Graph Edge.swift
Build complete! (30.76s)
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" : "/host/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"
}
android-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:9008270ea37a55e78725e6225015adb5eff8582da520c5232bf0499f32c36dc4
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest
Done.