Build Information
Successful build of GraphViz, reference main (083bcc
), with Swift 6.2 (beta) for Android on 22 Jun 2025 05:33:22 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.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/tuist/GraphViz.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/tuist/GraphViz
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 083bccf Updates to work with Xcode 16
Cloned https://github.com/tuist/GraphViz.git
Revision (git rev-parse @):
083bccf9e492fd5731dd288a46741ea80148f508
SUCCESS checkout https://github.com/tuist/GraphViz.git at main
========================================
Build
========================================
Selected platform: android
Swift version: 6.2
Building package at path: $PWD
https://github.com/tuist/GraphViz.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:b7c4a6b4153ff40ef9277e2157e708f835b8eb011095d53bd8db4594eb2b7798
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.2-latest
warning: you may be able to install libcgraph using your system-packager:
apt-get install graphviz-dev
warning: you may be able to install libcgraph using your system-packager:
apt-get install graphviz-dev
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-8C5A4AE7A8CE2BA.txt
[3/31] Emitting module GraphViz
/host/spi-builder-workspace/Sources/GraphViz/Core/Extensions/KeyValuePairs+Extensions.swift:1:1: warning: extension declares a conformance of imported type 'KeyValuePairs' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
1 | extension KeyValuePairs: Equatable where Key: Equatable, Value: Equatable {
| |- warning: extension declares a conformance of imported type 'KeyValuePairs' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
2 | public static func == (lhs: KeyValuePairs<Key, Value>, rhs: KeyValuePairs<Key, Value>) -> Bool {
3 | guard lhs.count == rhs.count else { return false }
/host/spi-builder-workspace/Sources/GraphViz/Core/Extensions/KeyValuePairs+Extensions.swift:12:1: warning: extension declares a conformance of imported type 'KeyValuePairs' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
10 | }
11 |
12 | extension KeyValuePairs: Hashable where Key: Hashable, Value: Hashable {
| |- warning: extension declares a conformance of imported type 'KeyValuePairs' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
13 | public func hash(into hasher: inout Hasher) {
14 | for (key, value) in self {
[4/31] Compiling GraphViz GraphBuilder.swift
[5/31] Compiling GraphViz BackwardEdgeOperator.swift
[6/31] Compiling GraphViz BidirectionalEdgeOperator.swift
[7/31] Compiling GraphViz ForwardEdgeOperator.swift
[8/35] Compiling GraphViz Rectangle.swift
[9/35] Compiling GraphViz Size.swift
[10/35] Compiling GraphViz DOT.swift
[11/35] Compiling GraphViz DOTEncoder.swift
[12/35] Compiling GraphViz Edge+Extensions.swift
[13/35] Compiling GraphViz Graph+Extensions.swift
[14/35] Compiling GraphViz Node+Extensions.swift
[15/35] Compiling GraphViz Subgraph+Extensions.swift
[16/35] Compiling GraphViz Location.swift
[17/35] Compiling GraphViz Ordering.swift
[18/35] Compiling GraphViz Point.swift
[19/35] Compiling GraphViz Position.swift
[20/35] Compiling GraphViz UndirectedEdgeOperator.swift
[21/35] Compiling GraphViz SubgraphBuilder.swift
[22/35] Compiling GraphViz Attribute.swift
[23/35] Compiling GraphViz Edge.swift
[24/35] Compiling GraphViz DOTRepresentable.swift
[25/35] Compiling GraphViz Error.swift
[26/35] Compiling GraphViz Graph+Rendering.swift
[27/35] Compiling GraphViz Renderer.swift
[28/35] Compiling GraphViz LayoutAlgorithm.swift
[29/35] Compiling GraphViz Subgraph.swift
[30/35] Compiling GraphViz AspectRatio.swift
[31/35] Compiling GraphViz Color.swift
[32/35] Compiling GraphViz KeyValuePairs+Extensions.swift
/host/spi-builder-workspace/Sources/GraphViz/Core/Extensions/KeyValuePairs+Extensions.swift:1:1: warning: extension declares a conformance of imported type 'KeyValuePairs' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
1 | extension KeyValuePairs: Equatable where Key: Equatable, Value: Equatable {
| |- warning: extension declares a conformance of imported type 'KeyValuePairs' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
2 | public static func == (lhs: KeyValuePairs<Key, Value>, rhs: KeyValuePairs<Key, Value>) -> Bool {
3 | guard lhs.count == rhs.count else { return false }
/host/spi-builder-workspace/Sources/GraphViz/Core/Extensions/KeyValuePairs+Extensions.swift:12:1: warning: extension declares a conformance of imported type 'KeyValuePairs' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
10 | }
11 |
12 | extension KeyValuePairs: Hashable where Key: Hashable, Value: Hashable {
| |- warning: extension declares a conformance of imported type 'KeyValuePairs' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
13 | public func hash(into hasher: inout Hasher) {
14 | for (key, value) in self {
[33/35] Compiling GraphViz Graph.swift
/host/spi-builder-workspace/Sources/GraphViz/Core/Extensions/KeyValuePairs+Extensions.swift:1:1: warning: extension declares a conformance of imported type 'KeyValuePairs' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
1 | extension KeyValuePairs: Equatable where Key: Equatable, Value: Equatable {
| |- warning: extension declares a conformance of imported type 'KeyValuePairs' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
2 | public static func == (lhs: KeyValuePairs<Key, Value>, rhs: KeyValuePairs<Key, Value>) -> Bool {
3 | guard lhs.count == rhs.count else { return false }
/host/spi-builder-workspace/Sources/GraphViz/Core/Extensions/KeyValuePairs+Extensions.swift:12:1: warning: extension declares a conformance of imported type 'KeyValuePairs' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
10 | }
11 |
12 | extension KeyValuePairs: Hashable where Key: Hashable, Value: Hashable {
| |- warning: extension declares a conformance of imported type 'KeyValuePairs' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
13 | public func hash(into hasher: inout Hasher) {
14 | for (key, value) in self {
[34/35] Compiling GraphViz Node.swift
/host/spi-builder-workspace/Sources/GraphViz/Core/Extensions/KeyValuePairs+Extensions.swift:1:1: warning: extension declares a conformance of imported type 'KeyValuePairs' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
1 | extension KeyValuePairs: Equatable where Key: Equatable, Value: Equatable {
| |- warning: extension declares a conformance of imported type 'KeyValuePairs' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
2 | public static func == (lhs: KeyValuePairs<Key, Value>, rhs: KeyValuePairs<Key, Value>) -> Bool {
3 | guard lhs.count == rhs.count else { return false }
/host/spi-builder-workspace/Sources/GraphViz/Core/Extensions/KeyValuePairs+Extensions.swift:12:1: warning: extension declares a conformance of imported type 'KeyValuePairs' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
10 | }
11 |
12 | extension KeyValuePairs: Hashable where Key: Hashable, Value: Hashable {
| |- warning: extension declares a conformance of imported type 'KeyValuePairs' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
13 | public func hash(into hasher: inout Hasher) {
14 | for (key, value) in self {
[35/35] Compiling GraphViz Format.swift
/host/spi-builder-workspace/Sources/GraphViz/Core/Extensions/KeyValuePairs+Extensions.swift:1:1: warning: extension declares a conformance of imported type 'KeyValuePairs' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
1 | extension KeyValuePairs: Equatable where Key: Equatable, Value: Equatable {
| |- warning: extension declares a conformance of imported type 'KeyValuePairs' to imported protocol 'Equatable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
2 | public static func == (lhs: KeyValuePairs<Key, Value>, rhs: KeyValuePairs<Key, Value>) -> Bool {
3 | guard lhs.count == rhs.count else { return false }
/host/spi-builder-workspace/Sources/GraphViz/Core/Extensions/KeyValuePairs+Extensions.swift:12:1: warning: extension declares a conformance of imported type 'KeyValuePairs' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
10 | }
11 |
12 | extension KeyValuePairs: Hashable where Key: Hashable, Value: Hashable {
| |- warning: extension declares a conformance of imported type 'KeyValuePairs' to imported protocol 'Hashable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
13 | public func hash(into hasher: inout Hasher) {
14 | for (key, value) in self {
Build complete! (13.29s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "GraphViz",
"name" : "GraphViz",
"path" : "/host/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
}
],
"products" : [
{
"name" : "GraphViz",
"targets" : [
"GraphViz"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "GraphVizTests",
"module_type" : "SwiftTarget",
"name" : "GraphVizTests",
"path" : "Tests/GraphVizTests",
"sources" : [
"AttributesTest.swift",
"EdgeTests.swift",
"GraphBuilderTests.swift",
"GraphTests.swift",
"NodeTests.swift",
"RenderingTests.swift",
"SubgraphBuilderTests.swift",
"SubgraphTests.swift"
],
"target_dependencies" : [
"GraphViz"
],
"type" : "test"
},
{
"c99name" : "GraphViz",
"module_type" : "SwiftTarget",
"name" : "GraphViz",
"path" : "Sources/GraphViz",
"product_memberships" : [
"GraphViz"
],
"sources" : [
"Builder/Extensions/Edge+Extensions.swift",
"Builder/Extensions/Graph+Extensions.swift",
"Builder/Extensions/Node+Extensions.swift",
"Builder/Extensions/Subgraph+Extensions.swift",
"Builder/GraphBuilder.swift",
"Builder/Operators/BackwardEdgeOperator.swift",
"Builder/Operators/BidirectionalEdgeOperator.swift",
"Builder/Operators/ForwardEdgeOperator.swift",
"Builder/Operators/UndirectedEdgeOperator.swift",
"Builder/SubgraphBuilder.swift",
"Core/Attribute.swift",
"Core/Edge.swift",
"Core/Extensions/KeyValuePairs+Extensions.swift",
"Core/Graph.swift",
"Core/Node.swift",
"Core/Rendering/Format.swift",
"Core/Rendering/LayoutAlgorithm.swift",
"Core/Subgraph.swift",
"Core/Supporting Types/AspectRatio.swift",
"Core/Supporting Types/Color.swift",
"Core/Supporting Types/Location.swift",
"Core/Supporting Types/Ordering.swift",
"Core/Supporting Types/Point.swift",
"Core/Supporting Types/Position.swift",
"Core/Supporting Types/Rectangle.swift",
"Core/Supporting Types/Size.swift",
"DOT/DOT.swift",
"DOT/DOTEncoder.swift",
"DOT/DOTRepresentable.swift",
"Tools/Error.swift",
"Tools/Extensions/Graph+Rendering.swift",
"Tools/Renderer.swift"
],
"target_dependencies" : [
"Clibgraphviz"
],
"type" : "library"
},
{
"c99name" : "Clibgraphviz",
"module_type" : "SystemLibraryTarget",
"name" : "Clibgraphviz",
"path" : "Sources/Clibgraphviz",
"product_memberships" : [
"GraphViz"
],
"sources" : [
],
"type" : "system-target"
}
],
"tools_version" : "5.2"
}
android-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:b7c4a6b4153ff40ef9277e2157e708f835b8eb011095d53bd8db4594eb2b7798
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.2-latest
Done.