Build Information
Successful build of Graphs, reference main (dfa3cb
), with Swift 6.1 for Android on 30 May 2025 02:33:27 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/tevelee/swift-graphs.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/tevelee/swift-graphs
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at dfa3cb1 Separated shortest path until algorithm
Cloned https://github.com/tevelee/swift-graphs.git
Revision (git rev-parse @):
dfa3cb1a27dfc1e9a65e49f57f99eba62e3b9a54
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/tevelee/swift-graphs.git at main
========================================
Build
========================================
Selected platform: android
Swift version: 6.1
Building package at path: $PWD
https://github.com/tevelee/swift-graphs.git
https://github.com/tevelee/swift-graphs.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
{
"identity" : "swift-collections",
"requirement" : {
"range" : [
{
"lower_bound" : "1.1.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-collections.git"
},
{
"identity" : "swift-algorithms",
"requirement" : {
"range" : [
{
"lower_bound" : "1.2.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-algorithms.git"
}
],
"manifest_display_name" : "Graphs",
"name" : "Graphs",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "maccatalyst",
"version" : "13.0"
},
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "watchos",
"version" : "6.0"
},
{
"name" : "tvos",
"version" : "13.0"
},
{
"name" : "visionos",
"version" : "1.0"
}
],
"products" : [
{
"name" : "Graphs",
"targets" : [
"Graphs"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "GraphsTests",
"module_type" : "SwiftTarget",
"name" : "GraphsTests",
"path" : "Tests/GraphsTests",
"sources" : [
"GraphTests.swift"
],
"target_dependencies" : [
"Graphs"
],
"type" : "test"
},
{
"c99name" : "Graphs",
"module_type" : "SwiftTarget",
"name" : "Graphs",
"path" : "Sources/Graphs",
"product_dependencies" : [
"Collections",
"Algorithms"
],
"product_memberships" : [
"Graphs"
],
"sources" : [
"Algorithms/Coloring/Graph+Coloring+DSatur.swift",
"Algorithms/Coloring/Graph+Coloring+Greedy.swift",
"Algorithms/Coloring/Graph+Coloring+WelshPowell.swift",
"Algorithms/Coloring/Graph+Coloring.swift",
"Algorithms/EulerianPath/Graph+EulerianPath+Backtracking.swift",
"Algorithms/EulerianPath/Graph+EulerianPath+Hierholzer.swift",
"Algorithms/EulerianPath/Graph+EulerianPath.swift",
"Algorithms/HamiltonianPath/Graph+HamiltonianPath+Backtracking.swift",
"Algorithms/HamiltonianPath/Graph+HamiltonianPath+Heuristic.swift",
"Algorithms/HamiltonianPath/Graph+HamiltonianPath.swift",
"Algorithms/Isomorphism/Graph+Isomophism+VF2.swift",
"Algorithms/Isomorphism/Graph+Isomophism+WeisfeilerLehman.swift",
"Algorithms/Isomorphism/Graph+Isomophism.swift",
"Algorithms/Matching/MaximumMatchingAlgorithm+HopcroftKarp.swift",
"Algorithms/Matching/MaximumMatchingAlgorithm.swift",
"Algorithms/MaxFlow-MinCut/Graph+MaxFlow+Dinic.swift",
"Algorithms/MaxFlow-MinCut/Graph+MaxFlow+EdmondsKarp.swift",
"Algorithms/MaxFlow-MinCut/Graph+MaxFlow+FordFulkerson.swift",
"Algorithms/MaxFlow-MinCut/Graph+MaxFlow.swift",
"Algorithms/MinimumSpanningTree/Graph+MinimumSpanningTree+Boruvka.swift",
"Algorithms/MinimumSpanningTree/Graph+MinimumSpanningTree+Kruskal.swift",
"Algorithms/MinimumSpanningTree/Graph+MinimumSpanningTree+Prim.swift",
"Algorithms/MinimumSpanningTree/Graph+MinimumSpanningTree.swift",
"Algorithms/Random/ConnectedGraph+Random.swift",
"Algorithms/Random/DisjointGraph+Random.swift",
"Algorithms/Random/Graph+Random+BarabasiAlbert.swift",
"Algorithms/Random/Graph+Random+ErdosRenyi.swift",
"Algorithms/Random/Graph+Random+WattsStrogatz.swift",
"Algorithms/Random/Graph+Random.swift",
"Algorithms/ShortestPath/Graph+KShortestPaths+Yen.swift",
"Algorithms/ShortestPath/Graph+KShortestPaths.swift",
"Algorithms/ShortestPath/Graph+ShortestPathOnWholeGraph+BellmanFord.swift",
"Algorithms/ShortestPath/Graph+ShortestPathOnWholeGraph+BidirectionalDijkstra.swift",
"Algorithms/ShortestPath/Graph+ShortestPathOnWholeGraph.swift",
"Algorithms/ShortestPath/Graph+ShortestPathsForAllPairs+FloydWarshall.swift",
"Algorithms/ShortestPath/Graph+ShortestPathsForAllPairs+Johnson.swift",
"Algorithms/ShortestPath/Graph+ShortestPathsForAllPairs.swift",
"Algorithms/ShortestPath/Graph+ShortestPathsOnWholeGraph+BellmanFord.swift",
"Algorithms/ShortestPath/Graph+ShortestPathsOnWholeGraph.swift",
"Algorithms/ShortestPath/GraphComponent+AllShortestPaths.swift",
"Algorithms/ShortestPath/GraphComponent+ShortestPath+AStar.swift",
"Algorithms/ShortestPath/GraphComponent+ShortestPath+Dijkstra.swift",
"Algorithms/ShortestPath/GraphComponent+ShortestPath.swift",
"Algorithms/ShortestPath/GraphComponent+ShortestPathUntil+AStar.swift",
"Algorithms/ShortestPath/GraphComponent+ShortestPathUntil+Dijkstra.swift",
"Algorithms/ShortestPath/GraphComponent+ShortestPathUntil.swift",
"Algorithms/ShortestPath/GraphComponent+ShortestPaths+Dijkstra.swift",
"Algorithms/ShortestPath/GraphComponent+ShortestPaths.swift",
"Algorithms/StronglyConnectedComponents/Graph+StronglyConnectedComponents+Kosaraju.swift",
"Algorithms/StronglyConnectedComponents/Graph+StronglyConnectedComponents+Tarjan.swift",
"Algorithms/StronglyConnectedComponents/Graph+StronglyConnectedComponents.swift",
"Algorithms/Traversal/BinaryGraph+Search.swift",
"Algorithms/Traversal/BinaryGraph+Traversal.swift",
"Algorithms/Traversal/BinaryGraph+TraversalStrategy+DFS+Inorder.swift",
"Algorithms/Traversal/BinaryGraph+TraversalStrategy.swift",
"Algorithms/Traversal/Graph+Search.swift",
"Algorithms/Traversal/Graph+Traversal.swift",
"Algorithms/Traversal/Graph+TraversalStrategy+Acyclic.swift",
"Algorithms/Traversal/Graph+TraversalStrategy+BFS.swift",
"Algorithms/Traversal/Graph+TraversalStrategy+DFS+Postorder.swift",
"Algorithms/Traversal/Graph+TraversalStrategy+DFS+Preorder.swift",
"Algorithms/Traversal/Graph+TraversalStrategy+DFS.swift",
"Algorithms/Traversal/Graph+TraversalStrategy+IterativelyDeepeningDFS.swift",
"Algorithms/Traversal/Graph+TraversalStrategy+Limited.swift",
"Algorithms/Traversal/Graph+TraversalStrategy+Priority.swift",
"Algorithms/Traversal/Graph+TraversalStrategy+Unique.swift",
"Algorithms/Traversal/Graph+TraversalStrategy.swift",
"Algorithms/Visit/Graph+Visitor+AncestorTracking.swift",
"Algorithms/Visit/Graph+Visitor+DepthTracking.swift",
"Algorithms/Visit/Graph+Visitor+NodesTracking.swift",
"Algorithms/Visit/Graph+Visitor+PathTracking.swift",
"Algorithms/Visit/Graph+Visitor.swift",
"BinaryGraph.swift",
"BipartiteGraph.swift",
"Concrete graphs/ConnectedBinaryGraph.swift",
"Concrete graphs/ConnectedBinaryHashGraph.swift",
"Concrete graphs/ConnectedGraph.swift",
"Concrete graphs/ConnectedHashGraph.swift",
"Concrete graphs/DisjointBinaryGraph.swift",
"Concrete graphs/DisjointBinaryHashGraph.swift",
"Concrete graphs/DisjointGraph.swift",
"Concrete graphs/DisjointHashGraph.swift",
"Concrete graphs/GridGraph.swift",
"Concrete graphs/LazyBinaryGraph.swift",
"Concrete graphs/LazyGraph.swift",
"Concrete graphs/Transformations/ComplementGraph.swift",
"Concrete graphs/Transformations/Graph+Equatable.swift",
"Concrete graphs/Transformations/Graph+Hashable.swift",
"Concrete graphs/Transformations/PartitionedGraph.swift",
"Concrete graphs/Transformations/ResidualGraph.swift",
"Concrete graphs/Transformations/TransposedGraph.swift",
"Concrete graphs/Transformations/UndirectedGraph.swift",
"Concrete graphs/WeightedGraph.swift",
"Distance.swift",
"Graph+Properties.swift",
"Graph.swift",
"GraphComponent.swift",
"MutableGraph.swift",
"Utils.swift",
"Weighted.swift"
],
"type" : "library"
}
],
"tools_version" : "6.0"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:fe1962677657b2408c217cb5cceb3c09bc1d91486e360cebbc6eee461a5945d8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
Fetching https://github.com/apple/swift-collections.git
Fetching https://github.com/apple/swift-algorithms.git
[1/5959] Fetching swift-algorithms
[359/22550] Fetching swift-algorithms, swift-collections
Fetched https://github.com/apple/swift-algorithms.git from cache (0.71s)
[4480/16591] Fetching swift-collections
Fetched https://github.com/apple/swift-collections.git from cache (1.77s)
Computing version for https://github.com/apple/swift-algorithms.git
Computed https://github.com/apple/swift-algorithms.git at 1.2.1 (4.93s)
Fetching https://github.com/apple/swift-numerics.git
[1/5706] Fetching swift-numerics
Fetched https://github.com/apple/swift-numerics.git from cache (0.58s)
Computing version for https://github.com/apple/swift-numerics.git
Computed https://github.com/apple/swift-numerics.git at 1.0.3 (1.35s)
Computing version for https://github.com/apple/swift-collections.git
Computed https://github.com/apple/swift-collections.git at 1.2.0 (0.91s)
Creating working copy for https://github.com/apple/swift-numerics.git
Working copy of https://github.com/apple/swift-numerics.git resolved at 1.0.3
Creating working copy for https://github.com/apple/swift-algorithms.git
Working copy of https://github.com/apple/swift-algorithms.git resolved at 1.2.1
Creating working copy for https://github.com/apple/swift-collections.git
Working copy of https://github.com/apple/swift-collections.git resolved at 1.2.0
Building for debugging...
[0/13] Write sources
[11/13] Compiling _NumericsShims _NumericsShims.c
[12/13] Write swift-version-24593BA9C3E375BF.txt
[14/37] Compiling InternalCollectionsUtilities Descriptions.swift
[15/37] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[16/37] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[17/38] Compiling InternalCollectionsUtilities UInt+first and last set bit.swift
[18/38] Compiling InternalCollectionsUtilities UInt+reversed.swift
[19/39] Emitting module InternalCollectionsUtilities
[20/39] Compiling InternalCollectionsUtilities FixedWidthInteger+roundUpToPowerOfTwo.swift
[21/39] Compiling InternalCollectionsUtilities Integer rank.swift
[24/39] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[25/39] Compiling InternalCollectionsUtilities Debugging.swift
[28/39] Compiling RealModule Real.swift
[29/39] Emitting module RealModule
[30/39] Compiling RealModule Float80+Real.swift
[31/39] Compiling RealModule Float+Real.swift
[32/39] Compiling RealModule Float16+Real.swift
[33/39] Compiling RealModule ElementaryFunctions.swift
[34/39] Compiling InternalCollectionsUtilities _UnsafeBitSet+Index.swift
[35/39] Compiling InternalCollectionsUtilities _UnsafeBitSet+_Word.swift
[36/39] Compiling InternalCollectionsUtilities _UnsafeBitSet.swift
[37/39] Compiling InternalCollectionsUtilities _SortedCollection.swift
[38/39] Compiling RealModule RealFunctions.swift
[39/40] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[42/340] Compiling BitCollections BitArray+Shifts.swift
[43/340] Compiling BitCollections BitArray+Testing.swift
[44/340] Compiling BitCollections BitArray._UnsafeHandle.swift
[45/340] Compiling BitCollections BitArray.swift
[46/342] Compiling BitCollections BitSet+SetAlgebra conformance.swift
[47/342] Compiling BitCollections BitSet+SetAlgebra formIntersection.swift
[48/342] Compiling HeapModule _HeapNode.swift
[49/342] Compiling HeapModule Heap.swift
[50/342] Compiling HeapModule Heap+Invariants.swift
[51/342] Compiling HeapModule Heap+ExpressibleByArrayLiteral.swift
[52/342] Compiling HeapModule Heap+Descriptions.swift
[53/342] Compiling HeapModule Heap+UnsafeHandle.swift
[54/342] Compiling HashTreeCollections TreeSet+Hashable.swift
[55/342] Compiling HashTreeCollections TreeSet+Sendable.swift
[56/342] Compiling HashTreeCollections TreeSet+Sequence.swift
[57/342] Compiling HashTreeCollections TreeSet+SetAlgebra Initializers.swift
[58/342] Compiling HashTreeCollections TreeSet+SetAlgebra basics.swift
[59/342] Compiling HashTreeCollections TreeSet+SetAlgebra formIntersection.swift
[60/342] Compiling HashTreeCollections TreeSet+SetAlgebra formSymmetricDifference.swift
[61/342] Compiling HashTreeCollections TreeSet+SetAlgebra formUnion.swift
[62/342] Compiling HashTreeCollections TreeSet+SetAlgebra intersection.swift
[63/342] Compiling HashTreeCollections TreeSet+SetAlgebra isDisjoint.swift
[64/352] Compiling BitCollections BitSet+Initializers.swift
[65/352] Compiling BitCollections BitSet+Invariants.swift
[66/352] Emitting module HeapModule
[68/353] Compiling BitCollections BitSet+SetAlgebra isDisjoint.swift
[69/353] Compiling BitCollections BitSet+SetAlgebra isEqualSet.swift
[70/353] Compiling BitCollections BitSet+SetAlgebra isStrictSubset.swift
[71/353] Compiling BitCollections BitSet+SetAlgebra isStrictSuperset.swift
[72/353] Compiling BitCollections BitSet+SetAlgebra isSubset.swift
[73/353] Compiling BitCollections BitSet+SetAlgebra isSuperset.swift
[74/353] Compiling BitCollections BitSet+SetAlgebra subtract.swift
[75/360] Compiling BitCollections BitSet+BidirectionalCollection.swift
[76/360] Compiling BitCollections BitSet+Codable.swift
[77/360] Compiling BitCollections BitSet+Random.swift
[78/360] Compiling BitCollections BitSet+SetAlgebra basics.swift
[82/363] Compiling DequeModule _DequeSlot.swift
[83/363] Compiling DequeModule _UnsafeWrappedBuffer.swift
[84/363] Compiling BitCollections BitArray+ChunkedBitsIterators.swift
[85/363] Compiling BitCollections BitArray+Codable.swift
[86/363] Compiling BitCollections BitArray+Collection.swift
[87/363] Compiling BitCollections BitArray+Copy.swift
[88/363] Compiling BitCollections BitArray+CustomReflectable.swift
[89/363] Compiling BitCollections BitArray+Descriptions.swift
[90/363] Compiling BitCollections BitArray+Equatable.swift
[91/363] Compiling BitCollections BitArray+ExpressibleByArrayLiteral.swift
[92/363] Compiling BitCollections BitSet+SetAlgebra subtracting.swift
[93/363] Compiling BitCollections BitSet+SetAlgebra symmetricDifference.swift
[94/363] Compiling BitCollections BitSet+SetAlgebra union.swift
[95/363] Compiling BitCollections BitSet+Sorted Collection APIs.swift
[96/363] Compiling BitCollections BitSet.Counted.swift
[97/363] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSubset.swift
[98/363] Compiling OrderedCollections OrderedSet+Partial SetAlgebra isSuperset.swift
[99/363] Compiling BitCollections BitArray+RandomBits.swift
[100/363] Compiling BitCollections BitArray+RangeReplaceableCollection.swift
[107/363] Compiling Algorithms Trim.swift
[108/363] Compiling Algorithms Unique.swift
[109/363] Compiling Algorithms Windows.swift
[110/363] Compiling BitCollections BitArray+Hashable.swift
[111/363] Compiling BitCollections BitArray+Initializers.swift
[112/363] Compiling BitCollections BitArray+Invariants.swift
[113/363] Compiling BitCollections BitArray+LosslessStringConvertible.swift
[114/363] Compiling BitCollections BitSet+CustomDebugStringConvertible.swift
[115/363] Compiling OrderedCollections OrderedSet+SubSequence.swift
[116/363] Compiling OrderedCollections OrderedSet+Testing.swift
[117/363] Compiling OrderedCollections OrderedSet+UnorderedView.swift
[118/363] Compiling OrderedCollections OrderedSet+UnstableInternals.swift
[119/363] Compiling OrderedCollections OrderedSet.swift
[120/363] Compiling OrderedCollections _UnsafeBitset.swift
[121/363] Compiling HashTreeCollections TreeSet+Equatable.swift
[122/363] Compiling HashTreeCollections TreeSet+ExpressibleByArrayLiteral.swift
[123/363] Compiling HashTreeCollections TreeSet+Extras.swift
[124/363] Compiling HashTreeCollections TreeSet+Filter.swift
[125/363] Emitting module BitCollections
[134/370] Compiling BitCollections BitSet+CustomStringConvertible.swift
[135/370] Compiling BitCollections BitSet+Equatable.swift
[136/370] Compiling BitCollections BitSet+ExpressibleByArrayLiteral.swift
[137/370] Compiling BitCollections BitSet+Extras.swift
[138/370] Compiling BitCollections BitSet+Hashable.swift
[139/370] Compiling BitCollections BitSet+SetAlgebra formUnion.swift
[140/370] Compiling BitCollections BitSet+SetAlgebra intersection.swift
[156/370] Compiling BitCollections BitSet+CustomReflectable.swift
[186/370] Compiling HashTreeCollections TreeSet+SetAlgebra isEqualSet.swift
[187/370] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSubset.swift
[188/370] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSuperset.swift
[189/370] Compiling HashTreeCollections TreeSet+SetAlgebra isSubset.swift
[190/370] Compiling HashTreeCollections TreeSet+SetAlgebra isSuperset.swift
[191/370] Compiling HashTreeCollections TreeSet+SetAlgebra subtract.swift
[192/370] Compiling HashTreeCollections TreeSet+SetAlgebra subtracting.swift
[193/370] Compiling HashTreeCollections TreeSet+SetAlgebra symmetricDifference.swift
[194/370] Compiling HashTreeCollections TreeSet+SetAlgebra union.swift
[195/370] Compiling HashTreeCollections TreeSet.swift
[196/370] Emitting module DequeModule
[256/380] Compiling BitCollections BitSet.swift
[257/380] Compiling BitCollections Range+Utilities.swift
[258/380] Compiling BitCollections Slice+Utilities.swift
[259/380] Compiling BitCollections UInt+Tricks.swift
[260/380] Compiling BitCollections _Word.swift
[294/380] Compiling BitCollections BitSet.Index.swift
[295/380] Compiling BitCollections BitSet._UnsafeHandle.swift
[336/381] Emitting module HashTreeCollections
[337/381] Emitting module Algorithms
[338/382] Emitting module OrderedCollections
[341/383] Emitting module _RopeModule
[376/384] Compiling _RopeModule Rope+Join.swift
[377/384] Compiling _RopeModule Rope+MutatingForEach.swift
[378/384] Compiling _RopeModule Rope+Remove.swift
[379/384] Compiling _RopeModule Rope+RemoveSubrange.swift
[380/384] Compiling _RopeModule Rope+Split.swift
[381/384] Compiling _RopeModule Optional Utilities.swift
[382/384] Compiling _RopeModule String Utilities.swift
[383/384] Compiling _RopeModule String.Index+ABI.swift
[384/384] Compiling _RopeModule _CharacterRecognizer.swift
[386/387] Compiling Collections Collections.swift
[387/387] Emitting module Collections
[389/477] Compiling Graphs Graph+TraversalStrategy+Priority.swift
[390/477] Compiling Graphs Graph+TraversalStrategy+Unique.swift
[391/477] Compiling Graphs Graph+TraversalStrategy.swift
[392/477] Compiling Graphs Graph+Visitor+AncestorTracking.swift
[393/477] Compiling Graphs Graph+Visitor+DepthTracking.swift
[394/477] Compiling Graphs Graph+Visitor+NodesTracking.swift
[395/477] Compiling Graphs Graph+Visitor+PathTracking.swift
[396/477] Compiling Graphs Graph+Visitor.swift
[397/477] Compiling Graphs BinaryGraph.swift
[398/477] Compiling Graphs BipartiteGraph.swift
[399/477] Compiling Graphs ConnectedBinaryGraph.swift
[400/477] Compiling Graphs ConnectedBinaryHashGraph.swift
[401/477] Compiling Graphs GraphComponent+AllShortestPaths.swift
[402/477] Compiling Graphs GraphComponent+ShortestPath+AStar.swift
[403/477] Compiling Graphs GraphComponent+ShortestPath+Dijkstra.swift
[404/477] Compiling Graphs GraphComponent+ShortestPath.swift
[405/477] Compiling Graphs GraphComponent+ShortestPathUntil+AStar.swift
[406/477] Compiling Graphs GraphComponent+ShortestPathUntil+Dijkstra.swift
[407/477] Compiling Graphs GraphComponent+ShortestPathUntil.swift
[408/477] Compiling Graphs GraphComponent+ShortestPaths+Dijkstra.swift
[409/477] Compiling Graphs GraphComponent+ShortestPaths.swift
[410/477] Compiling Graphs Graph+StronglyConnectedComponents+Kosaraju.swift
[411/477] Compiling Graphs Graph+StronglyConnectedComponents+Tarjan.swift
[412/477] Compiling Graphs Graph+StronglyConnectedComponents.swift
[413/477] Compiling Graphs BinaryGraph+Search.swift
[414/477] Compiling Graphs Graph+Random+ErdosRenyi.swift
[415/477] Compiling Graphs Graph+Random+WattsStrogatz.swift
[416/477] Compiling Graphs Graph+Random.swift
[417/477] Compiling Graphs Graph+KShortestPaths+Yen.swift
[418/477] Compiling Graphs Graph+KShortestPaths.swift
[419/477] Compiling Graphs Graph+ShortestPathOnWholeGraph+BellmanFord.swift
[420/477] Compiling Graphs Graph+ShortestPathOnWholeGraph+BidirectionalDijkstra.swift
[421/477] Compiling Graphs Graph+ShortestPathOnWholeGraph.swift
[422/477] Compiling Graphs Graph+ShortestPathsForAllPairs+FloydWarshall.swift
[423/477] Compiling Graphs Graph+ShortestPathsForAllPairs+Johnson.swift
[424/477] Compiling Graphs Graph+ShortestPathsForAllPairs.swift
[425/477] Compiling Graphs Graph+ShortestPathsOnWholeGraph+BellmanFord.swift
[426/477] Compiling Graphs Graph+ShortestPathsOnWholeGraph.swift
[427/477] Compiling Graphs MaximumMatchingAlgorithm+HopcroftKarp.swift
[428/477] Compiling Graphs MaximumMatchingAlgorithm.swift
[429/477] Compiling Graphs Graph+MaxFlow+Dinic.swift
[430/477] Compiling Graphs Graph+MaxFlow+EdmondsKarp.swift
[431/477] Compiling Graphs Graph+MaxFlow+FordFulkerson.swift
[432/477] Compiling Graphs Graph+MaxFlow.swift
[433/477] Compiling Graphs Graph+MinimumSpanningTree+Boruvka.swift
[434/477] Compiling Graphs Graph+MinimumSpanningTree+Kruskal.swift
[435/477] Compiling Graphs Graph+MinimumSpanningTree+Prim.swift
[436/477] Compiling Graphs Graph+MinimumSpanningTree.swift
[437/477] Compiling Graphs ConnectedGraph+Random.swift
[438/477] Compiling Graphs DisjointGraph+Random.swift
[439/477] Compiling Graphs Graph+Random+BarabasiAlbert.swift
[440/477] Compiling Graphs Graph+Coloring+DSatur.swift
[441/477] Compiling Graphs Graph+Coloring+Greedy.swift
[442/477] Compiling Graphs Graph+Coloring+WelshPowell.swift
[443/477] Compiling Graphs Graph+Coloring.swift
[444/477] Compiling Graphs Graph+EulerianPath+Backtracking.swift
[445/477] Compiling Graphs Graph+EulerianPath+Hierholzer.swift
[446/477] Compiling Graphs Graph+EulerianPath.swift
[447/477] Compiling Graphs Graph+HamiltonianPath+Backtracking.swift
[448/477] Compiling Graphs Graph+HamiltonianPath+Heuristic.swift
[449/477] Compiling Graphs Graph+HamiltonianPath.swift
[450/477] Compiling Graphs Graph+Isomophism+VF2.swift
[451/477] Compiling Graphs Graph+Isomophism+WeisfeilerLehman.swift
[452/477] Compiling Graphs Graph+Isomophism.swift
[453/477] Compiling Graphs BinaryGraph+Traversal.swift
[454/477] Compiling Graphs BinaryGraph+TraversalStrategy+DFS+Inorder.swift
[455/477] Compiling Graphs BinaryGraph+TraversalStrategy.swift
[456/477] Compiling Graphs Graph+Search.swift
[457/477] Compiling Graphs Graph+Traversal.swift
[458/477] Compiling Graphs Graph+TraversalStrategy+Acyclic.swift
[459/477] Compiling Graphs Graph+TraversalStrategy+BFS.swift
[460/477] Compiling Graphs Graph+TraversalStrategy+DFS+Postorder.swift
[461/477] Compiling Graphs Graph+TraversalStrategy+DFS+Preorder.swift
[462/477] Compiling Graphs Graph+TraversalStrategy+DFS.swift
[463/477] Compiling Graphs Graph+TraversalStrategy+IterativelyDeepeningDFS.swift
[464/477] Compiling Graphs Graph+TraversalStrategy+Limited.swift
[465/477] Compiling Graphs ConnectedGraph.swift
[466/477] Compiling Graphs ConnectedHashGraph.swift
[467/477] Compiling Graphs DisjointBinaryGraph.swift
[468/477] Compiling Graphs DisjointBinaryHashGraph.swift
[469/477] Compiling Graphs DisjointGraph.swift
[470/477] Compiling Graphs DisjointHashGraph.swift
[471/477] Compiling Graphs GridGraph.swift
[472/477] Compiling Graphs LazyBinaryGraph.swift
[473/477] Compiling Graphs LazyGraph.swift
[474/477] Compiling Graphs ComplementGraph.swift
[475/477] Compiling Graphs Graph+Equatable.swift
[476/477] Compiling Graphs Graph+Hashable.swift
[477/489] Emitting module Graphs
[478/489] Compiling Graphs PartitionedGraph.swift
[479/489] Compiling Graphs ResidualGraph.swift
[480/489] Compiling Graphs TransposedGraph.swift
[481/489] Compiling Graphs UndirectedGraph.swift
[482/489] Compiling Graphs WeightedGraph.swift
[483/489] Compiling Graphs Distance.swift
[484/489] Compiling Graphs Graph+Properties.swift
[485/489] Compiling Graphs Graph.swift
[486/489] Compiling Graphs GraphComponent.swift
[487/489] Compiling Graphs MutableGraph.swift
[488/489] Compiling Graphs Utils.swift
[489/489] Compiling Graphs Weighted.swift
Build complete! (82.33s)
Build complete.
{
"dependencies" : [
{
"identity" : "swift-collections",
"requirement" : {
"range" : [
{
"lower_bound" : "1.1.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-collections.git"
},
{
"identity" : "swift-algorithms",
"requirement" : {
"range" : [
{
"lower_bound" : "1.2.0",
"upper_bound" : "2.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/apple/swift-algorithms.git"
}
],
"manifest_display_name" : "Graphs",
"name" : "Graphs",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "maccatalyst",
"version" : "13.0"
},
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "watchos",
"version" : "6.0"
},
{
"name" : "tvos",
"version" : "13.0"
},
{
"name" : "visionos",
"version" : "1.0"
}
],
"products" : [
{
"name" : "Graphs",
"targets" : [
"Graphs"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "GraphsTests",
"module_type" : "SwiftTarget",
"name" : "GraphsTests",
"path" : "Tests/GraphsTests",
"sources" : [
"GraphTests.swift"
],
"target_dependencies" : [
"Graphs"
],
"type" : "test"
},
{
"c99name" : "Graphs",
"module_type" : "SwiftTarget",
"name" : "Graphs",
"path" : "Sources/Graphs",
"product_dependencies" : [
"Collections",
"Algorithms"
],
"product_memberships" : [
"Graphs"
],
"sources" : [
"Algorithms/Coloring/Graph+Coloring+DSatur.swift",
"Algorithms/Coloring/Graph+Coloring+Greedy.swift",
"Algorithms/Coloring/Graph+Coloring+WelshPowell.swift",
"Algorithms/Coloring/Graph+Coloring.swift",
"Algorithms/EulerianPath/Graph+EulerianPath+Backtracking.swift",
"Algorithms/EulerianPath/Graph+EulerianPath+Hierholzer.swift",
"Algorithms/EulerianPath/Graph+EulerianPath.swift",
"Algorithms/HamiltonianPath/Graph+HamiltonianPath+Backtracking.swift",
"Algorithms/HamiltonianPath/Graph+HamiltonianPath+Heuristic.swift",
"Algorithms/HamiltonianPath/Graph+HamiltonianPath.swift",
"Algorithms/Isomorphism/Graph+Isomophism+VF2.swift",
"Algorithms/Isomorphism/Graph+Isomophism+WeisfeilerLehman.swift",
"Algorithms/Isomorphism/Graph+Isomophism.swift",
"Algorithms/Matching/MaximumMatchingAlgorithm+HopcroftKarp.swift",
"Algorithms/Matching/MaximumMatchingAlgorithm.swift",
"Algorithms/MaxFlow-MinCut/Graph+MaxFlow+Dinic.swift",
"Algorithms/MaxFlow-MinCut/Graph+MaxFlow+EdmondsKarp.swift",
"Algorithms/MaxFlow-MinCut/Graph+MaxFlow+FordFulkerson.swift",
"Algorithms/MaxFlow-MinCut/Graph+MaxFlow.swift",
"Algorithms/MinimumSpanningTree/Graph+MinimumSpanningTree+Boruvka.swift",
"Algorithms/MinimumSpanningTree/Graph+MinimumSpanningTree+Kruskal.swift",
"Algorithms/MinimumSpanningTree/Graph+MinimumSpanningTree+Prim.swift",
"Algorithms/MinimumSpanningTree/Graph+MinimumSpanningTree.swift",
"Algorithms/Random/ConnectedGraph+Random.swift",
"Algorithms/Random/DisjointGraph+Random.swift",
"Algorithms/Random/Graph+Random+BarabasiAlbert.swift",
"Algorithms/Random/Graph+Random+ErdosRenyi.swift",
"Algorithms/Random/Graph+Random+WattsStrogatz.swift",
"Algorithms/Random/Graph+Random.swift",
"Algorithms/ShortestPath/Graph+KShortestPaths+Yen.swift",
"Algorithms/ShortestPath/Graph+KShortestPaths.swift",
"Algorithms/ShortestPath/Graph+ShortestPathOnWholeGraph+BellmanFord.swift",
"Algorithms/ShortestPath/Graph+ShortestPathOnWholeGraph+BidirectionalDijkstra.swift",
"Algorithms/ShortestPath/Graph+ShortestPathOnWholeGraph.swift",
"Algorithms/ShortestPath/Graph+ShortestPathsForAllPairs+FloydWarshall.swift",
"Algorithms/ShortestPath/Graph+ShortestPathsForAllPairs+Johnson.swift",
"Algorithms/ShortestPath/Graph+ShortestPathsForAllPairs.swift",
"Algorithms/ShortestPath/Graph+ShortestPathsOnWholeGraph+BellmanFord.swift",
"Algorithms/ShortestPath/Graph+ShortestPathsOnWholeGraph.swift",
"Algorithms/ShortestPath/GraphComponent+AllShortestPaths.swift",
"Algorithms/ShortestPath/GraphComponent+ShortestPath+AStar.swift",
"Algorithms/ShortestPath/GraphComponent+ShortestPath+Dijkstra.swift",
"Algorithms/ShortestPath/GraphComponent+ShortestPath.swift",
"Algorithms/ShortestPath/GraphComponent+ShortestPathUntil+AStar.swift",
"Algorithms/ShortestPath/GraphComponent+ShortestPathUntil+Dijkstra.swift",
"Algorithms/ShortestPath/GraphComponent+ShortestPathUntil.swift",
"Algorithms/ShortestPath/GraphComponent+ShortestPaths+Dijkstra.swift",
"Algorithms/ShortestPath/GraphComponent+ShortestPaths.swift",
"Algorithms/StronglyConnectedComponents/Graph+StronglyConnectedComponents+Kosaraju.swift",
"Algorithms/StronglyConnectedComponents/Graph+StronglyConnectedComponents+Tarjan.swift",
"Algorithms/StronglyConnectedComponents/Graph+StronglyConnectedComponents.swift",
"Algorithms/Traversal/BinaryGraph+Search.swift",
"Algorithms/Traversal/BinaryGraph+Traversal.swift",
"Algorithms/Traversal/BinaryGraph+TraversalStrategy+DFS+Inorder.swift",
"Algorithms/Traversal/BinaryGraph+TraversalStrategy.swift",
"Algorithms/Traversal/Graph+Search.swift",
"Algorithms/Traversal/Graph+Traversal.swift",
"Algorithms/Traversal/Graph+TraversalStrategy+Acyclic.swift",
"Algorithms/Traversal/Graph+TraversalStrategy+BFS.swift",
"Algorithms/Traversal/Graph+TraversalStrategy+DFS+Postorder.swift",
"Algorithms/Traversal/Graph+TraversalStrategy+DFS+Preorder.swift",
"Algorithms/Traversal/Graph+TraversalStrategy+DFS.swift",
"Algorithms/Traversal/Graph+TraversalStrategy+IterativelyDeepeningDFS.swift",
"Algorithms/Traversal/Graph+TraversalStrategy+Limited.swift",
"Algorithms/Traversal/Graph+TraversalStrategy+Priority.swift",
"Algorithms/Traversal/Graph+TraversalStrategy+Unique.swift",
"Algorithms/Traversal/Graph+TraversalStrategy.swift",
"Algorithms/Visit/Graph+Visitor+AncestorTracking.swift",
"Algorithms/Visit/Graph+Visitor+DepthTracking.swift",
"Algorithms/Visit/Graph+Visitor+NodesTracking.swift",
"Algorithms/Visit/Graph+Visitor+PathTracking.swift",
"Algorithms/Visit/Graph+Visitor.swift",
"BinaryGraph.swift",
"BipartiteGraph.swift",
"Concrete graphs/ConnectedBinaryGraph.swift",
"Concrete graphs/ConnectedBinaryHashGraph.swift",
"Concrete graphs/ConnectedGraph.swift",
"Concrete graphs/ConnectedHashGraph.swift",
"Concrete graphs/DisjointBinaryGraph.swift",
"Concrete graphs/DisjointBinaryHashGraph.swift",
"Concrete graphs/DisjointGraph.swift",
"Concrete graphs/DisjointHashGraph.swift",
"Concrete graphs/GridGraph.swift",
"Concrete graphs/LazyBinaryGraph.swift",
"Concrete graphs/LazyGraph.swift",
"Concrete graphs/Transformations/ComplementGraph.swift",
"Concrete graphs/Transformations/Graph+Equatable.swift",
"Concrete graphs/Transformations/Graph+Hashable.swift",
"Concrete graphs/Transformations/PartitionedGraph.swift",
"Concrete graphs/Transformations/ResidualGraph.swift",
"Concrete graphs/Transformations/TransposedGraph.swift",
"Concrete graphs/Transformations/UndirectedGraph.swift",
"Concrete graphs/WeightedGraph.swift",
"Distance.swift",
"Graph+Properties.swift",
"Graph.swift",
"GraphComponent.swift",
"MutableGraph.swift",
"Utils.swift",
"Weighted.swift"
],
"type" : "library"
}
],
"tools_version" : "6.0"
}
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:fe1962677657b2408c217cb5cceb3c09bc1d91486e360cebbc6eee461a5945d8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
Done.