Build Information
Failed to build SwiftGraphs, reference master (7b724c), with Swift 6.1 for Android on 27 May 2025 09:44:59 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/sbromberger/swiftgraphs.git
Reference: master
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/sbromberger/swiftgraphs
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at 7b724c4 4.2 only, with @inlinable
Cloned https://github.com/sbromberger/swiftgraphs.git
Revision (git rev-parse @):
7b724c459cce090963cba639e3252a044959b85c
SUCCESS checkout https://github.com/sbromberger/swiftgraphs.git at master
========================================
Build
========================================
Selected platform: android
Swift version: 6.1
Building package at path: $PWD
https://github.com/sbromberger/swiftgraphs.git
https://github.com/sbromberger/swiftgraphs.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
{
"identity" : "gzipswift",
"requirement" : {
"range" : [
{
"lower_bound" : "4.0.4",
"upper_bound" : "5.0.0"
}
]
},
"type" : "sourceControl",
"url" : "https://github.com/1024jp/GzipSwift.git"
}
],
"manifest_display_name" : "SwiftGraphs",
"name" : "SwiftGraphs",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "SwiftGraphs",
"targets" : [
"SwiftGraphs"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "SwiftGraphsTests",
"module_type" : "SwiftTarget",
"name" : "SwiftGraphsTests",
"path" : "Tests/SwiftGraphsTests",
"product_dependencies" : [
"Gzip"
],
"sources" : [
"SwiftGraphsTests.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"SwiftGraphs"
],
"type" : "test"
},
{
"c99name" : "SwiftGraphs",
"module_type" : "SwiftTarget",
"name" : "SwiftGraphs",
"path" : "Sources/SwiftGraphs",
"product_dependencies" : [
"Gzip"
],
"product_memberships" : [
"SwiftGraphs"
],
"sources" : [
"AbstractGraph.swift",
"Degeneracy.swift",
"DiGraph.swift",
"Dijkstra.swift",
"Edge.swift",
"Graph.swift",
"LineReader.swift",
"PriorityQueue.swift",
"RandomAccessCollectionExtensions.swift",
"SimpleGraph.swift",
"Time.swift",
"UnsafeArray.swift",
"radixSort.swift"
],
"type" : "library"
}
],
"tools_version" : "4.0"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/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 -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:9f3c606dcd2a4f06d17ba472aa533c43685ba7ba19a5c9bc23518a066eb7f86a
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
Fetching https://github.com/1024jp/GzipSwift.git
[1/1549] Fetching gzipswift
Fetched https://github.com/1024jp/GzipSwift.git from cache (0.25s)
Computing version for https://github.com/1024jp/GzipSwift.git
Computed https://github.com/1024jp/GzipSwift.git at 4.1.0 (1.19s)
Creating working copy for https://github.com/1024jp/GzipSwift.git
Working copy of https://github.com/1024jp/GzipSwift.git resolved at 4.1.0
Building for debugging...
[0/4] Write sources
[2/4] Compiling system-zlib anchor.c
[3/4] Write swift-version-24593BA9C3E375BF.txt
[5/6] Emitting module Gzip
[6/6] Compiling Gzip Data+Gzip.swift
[8/20] Compiling SwiftGraphs Edge.swift
/host/spi-builder-workspace/Sources/SwiftGraphs/Graph.swift:80:28: error: initializer 'init(path:)' is internal and cannot be referenced from an '@inlinable' function
78 | let offset = oneIndexed ? -1 : 0
79 |
80 | guard let reader = LineReader(path: fileName) else {
| `- error: initializer 'init(path:)' is internal and cannot be referenced from an '@inlinable' function
81 | fatalError("error opening file \(fileName)")
82 | }
/host/spi-builder-workspace/Sources/SwiftGraphs/LineReader.swift:11:5: note: initializer 'init(path:)' is not '@usableFromInline' or public
9 | fileprivate let file: UnsafeMutablePointer<FILE>!
10 |
11 | init?(path: String) {
| `- note: initializer 'init(path:)' is not '@usableFromInline' or public
12 | self.path = path
13 | file = fopen(path, "r")
/host/spi-builder-workspace/Sources/SwiftGraphs/Graph.swift:156:80: error: instance method 'outNeighbors(of:)' is internal and cannot be referenced from an '@inlinable' function
154 | }
155 |
156 | @inlinable public func inNeighbors(of vertex: T) -> ArraySlice<T> { return outNeighbors(of: vertex) }
| `- error: instance method 'outNeighbors(of:)' is internal and cannot be referenced from an '@inlinable' function
157 | @inlinable public func neighbors(of vertex: T) -> ArraySlice<T> { return outNeighbors(of: vertex) }
158 |
/host/spi-builder-workspace/Sources/SwiftGraphs/SimpleGraph.swift:34:17: note: instance method 'outNeighbors(of:)' is not '@usableFromInline' or public
32 | }
33 |
34 | public func outNeighbors(of vertex: T) -> ArraySlice<T> {
| `- note: instance method 'outNeighbors(of:)' is not '@usableFromInline' or public
35 | let range = vecRange(Array<T>.Index(vertex))
36 | return rowidx[range]
/host/spi-builder-workspace/Sources/SwiftGraphs/Graph.swift:157:78: error: instance method 'outNeighbors(of:)' is internal and cannot be referenced from an '@inlinable' function
155 |
156 | @inlinable public func inNeighbors(of vertex: T) -> ArraySlice<T> { return outNeighbors(of: vertex) }
157 | @inlinable public func neighbors(of vertex: T) -> ArraySlice<T> { return outNeighbors(of: vertex) }
| `- error: instance method 'outNeighbors(of:)' is internal and cannot be referenced from an '@inlinable' function
158 |
159 | @inlinable public func inDegree(of vertex: T) -> Int { return outDegree(of: vertex) }
/host/spi-builder-workspace/Sources/SwiftGraphs/SimpleGraph.swift:34:17: note: instance method 'outNeighbors(of:)' is not '@usableFromInline' or public
32 | }
33 |
34 | public func outNeighbors(of vertex: T) -> ArraySlice<T> {
| `- note: instance method 'outNeighbors(of:)' is not '@usableFromInline' or public
35 | let range = vecRange(Array<T>.Index(vertex))
36 | return rowidx[range]
/host/spi-builder-workspace/Sources/SwiftGraphs/Graph.swift:159:67: error: instance method 'outDegree(of:)' is internal and cannot be referenced from an '@inlinable' function
157 | @inlinable public func neighbors(of vertex: T) -> ArraySlice<T> { return outNeighbors(of: vertex) }
158 |
159 | @inlinable public func inDegree(of vertex: T) -> Int { return outDegree(of: vertex) }
| `- error: instance method 'outDegree(of:)' is internal and cannot be referenced from an '@inlinable' function
160 | @inlinable public func degree(of vertex: T) -> Int { return outDegree(of: vertex) }
161 | }
/host/spi-builder-workspace/Sources/SwiftGraphs/SimpleGraph.swift:62:17: note: instance method 'outDegree(of:)' is not '@usableFromInline' or public
60 | }
61 |
62 | public func outDegree(of vertex: T) -> Int {
| `- note: instance method 'outDegree(of:)' is not '@usableFromInline' or public
63 | return colptr[Int(vertex) + 1] - colptr[Int(vertex)]
64 | }
/host/spi-builder-workspace/Sources/SwiftGraphs/Graph.swift:160:65: error: instance method 'outDegree(of:)' is internal and cannot be referenced from an '@inlinable' function
158 |
159 | @inlinable public func inDegree(of vertex: T) -> Int { return outDegree(of: vertex) }
160 | @inlinable public func degree(of vertex: T) -> Int { return outDegree(of: vertex) }
| `- error: instance method 'outDegree(of:)' is internal and cannot be referenced from an '@inlinable' function
161 | }
162 |
/host/spi-builder-workspace/Sources/SwiftGraphs/SimpleGraph.swift:62:17: note: instance method 'outDegree(of:)' is not '@usableFromInline' or public
60 | }
61 |
62 | public func outDegree(of vertex: T) -> Int {
| `- note: instance method 'outDegree(of:)' is not '@usableFromInline' or public
63 | return colptr[Int(vertex) + 1] - colptr[Int(vertex)]
64 | }
[9/20] Compiling SwiftGraphs Graph.swift
/host/spi-builder-workspace/Sources/SwiftGraphs/Graph.swift:80:28: error: initializer 'init(path:)' is internal and cannot be referenced from an '@inlinable' function
78 | let offset = oneIndexed ? -1 : 0
79 |
80 | guard let reader = LineReader(path: fileName) else {
| `- error: initializer 'init(path:)' is internal and cannot be referenced from an '@inlinable' function
81 | fatalError("error opening file \(fileName)")
82 | }
/host/spi-builder-workspace/Sources/SwiftGraphs/LineReader.swift:11:5: note: initializer 'init(path:)' is not '@usableFromInline' or public
9 | fileprivate let file: UnsafeMutablePointer<FILE>!
10 |
11 | init?(path: String) {
| `- note: initializer 'init(path:)' is not '@usableFromInline' or public
12 | self.path = path
13 | file = fopen(path, "r")
/host/spi-builder-workspace/Sources/SwiftGraphs/Graph.swift:156:80: error: instance method 'outNeighbors(of:)' is internal and cannot be referenced from an '@inlinable' function
154 | }
155 |
156 | @inlinable public func inNeighbors(of vertex: T) -> ArraySlice<T> { return outNeighbors(of: vertex) }
| `- error: instance method 'outNeighbors(of:)' is internal and cannot be referenced from an '@inlinable' function
157 | @inlinable public func neighbors(of vertex: T) -> ArraySlice<T> { return outNeighbors(of: vertex) }
158 |
/host/spi-builder-workspace/Sources/SwiftGraphs/SimpleGraph.swift:34:17: note: instance method 'outNeighbors(of:)' is not '@usableFromInline' or public
32 | }
33 |
34 | public func outNeighbors(of vertex: T) -> ArraySlice<T> {
| `- note: instance method 'outNeighbors(of:)' is not '@usableFromInline' or public
35 | let range = vecRange(Array<T>.Index(vertex))
36 | return rowidx[range]
/host/spi-builder-workspace/Sources/SwiftGraphs/Graph.swift:157:78: error: instance method 'outNeighbors(of:)' is internal and cannot be referenced from an '@inlinable' function
155 |
156 | @inlinable public func inNeighbors(of vertex: T) -> ArraySlice<T> { return outNeighbors(of: vertex) }
157 | @inlinable public func neighbors(of vertex: T) -> ArraySlice<T> { return outNeighbors(of: vertex) }
| `- error: instance method 'outNeighbors(of:)' is internal and cannot be referenced from an '@inlinable' function
158 |
159 | @inlinable public func inDegree(of vertex: T) -> Int { return outDegree(of: vertex) }
/host/spi-builder-workspace/Sources/SwiftGraphs/SimpleGraph.swift:34:17: note: instance method 'outNeighbors(of:)' is not '@usableFromInline' or public
32 | }
33 |
34 | public func outNeighbors(of vertex: T) -> ArraySlice<T> {
| `- note: instance method 'outNeighbors(of:)' is not '@usableFromInline' or public
35 | let range = vecRange(Array<T>.Index(vertex))
36 | return rowidx[range]
/host/spi-builder-workspace/Sources/SwiftGraphs/Graph.swift:159:67: error: instance method 'outDegree(of:)' is internal and cannot be referenced from an '@inlinable' function
157 | @inlinable public func neighbors(of vertex: T) -> ArraySlice<T> { return outNeighbors(of: vertex) }
158 |
159 | @inlinable public func inDegree(of vertex: T) -> Int { return outDegree(of: vertex) }
| `- error: instance method 'outDegree(of:)' is internal and cannot be referenced from an '@inlinable' function
160 | @inlinable public func degree(of vertex: T) -> Int { return outDegree(of: vertex) }
161 | }
/host/spi-builder-workspace/Sources/SwiftGraphs/SimpleGraph.swift:62:17: note: instance method 'outDegree(of:)' is not '@usableFromInline' or public
60 | }
61 |
62 | public func outDegree(of vertex: T) -> Int {
| `- note: instance method 'outDegree(of:)' is not '@usableFromInline' or public
63 | return colptr[Int(vertex) + 1] - colptr[Int(vertex)]
64 | }
/host/spi-builder-workspace/Sources/SwiftGraphs/Graph.swift:160:65: error: instance method 'outDegree(of:)' is internal and cannot be referenced from an '@inlinable' function
158 |
159 | @inlinable public func inDegree(of vertex: T) -> Int { return outDegree(of: vertex) }
160 | @inlinable public func degree(of vertex: T) -> Int { return outDegree(of: vertex) }
| `- error: instance method 'outDegree(of:)' is internal and cannot be referenced from an '@inlinable' function
161 | }
162 |
/host/spi-builder-workspace/Sources/SwiftGraphs/SimpleGraph.swift:62:17: note: instance method 'outDegree(of:)' is not '@usableFromInline' or public
60 | }
61 |
62 | public func outDegree(of vertex: T) -> Int {
| `- note: instance method 'outDegree(of:)' is not '@usableFromInline' or public
63 | return colptr[Int(vertex) + 1] - colptr[Int(vertex)]
64 | }
[10/21] Compiling SwiftGraphs LineReader.swift
/host/spi-builder-workspace/Sources/SwiftGraphs/LineReader.swift:9:48: error: cannot find type 'FILE' in scope
7 | public let path: String
8 |
9 | fileprivate let file: UnsafeMutablePointer<FILE>!
| `- error: cannot find type 'FILE' in scope
10 |
11 | init?(path: String) {
[11/21] Compiling SwiftGraphs PriorityQueue.swift
/host/spi-builder-workspace/Sources/SwiftGraphs/LineReader.swift:9:48: error: cannot find type 'FILE' in scope
7 | public let path: String
8 |
9 | fileprivate let file: UnsafeMutablePointer<FILE>!
| `- error: cannot find type 'FILE' in scope
10 |
11 | init?(path: String) {
[12/21] Compiling SwiftGraphs RandomAccessCollectionExtensions.swift
[13/21] Compiling SwiftGraphs SimpleGraph.swift
[14/21] Compiling SwiftGraphs Time.swift
[15/21] Compiling SwiftGraphs UnsafeArray.swift
[16/21] Compiling SwiftGraphs radixSort.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[17/21] Compiling SwiftGraphs DiGraph.swift
[18/21] Compiling SwiftGraphs Dijkstra.swift
[19/21] Compiling SwiftGraphs AbstractGraph.swift
[20/21] Compiling SwiftGraphs Degeneracy.swift
[21/21] Emitting module SwiftGraphs
/host/spi-builder-workspace/Sources/SwiftGraphs/Graph.swift:80:28: error: initializer 'init(path:)' is internal and cannot be referenced from an '@inlinable' function
78 | let offset = oneIndexed ? -1 : 0
79 |
80 | guard let reader = LineReader(path: fileName) else {
| `- error: initializer 'init(path:)' is internal and cannot be referenced from an '@inlinable' function
81 | fatalError("error opening file \(fileName)")
82 | }
/host/spi-builder-workspace/Sources/SwiftGraphs/LineReader.swift:11:5: note: initializer 'init(path:)' is not '@usableFromInline' or public
9 | fileprivate let file: UnsafeMutablePointer<FILE>!
10 |
11 | init?(path: String) {
| `- note: initializer 'init(path:)' is not '@usableFromInline' or public
12 | self.path = path
13 | file = fopen(path, "r")
/host/spi-builder-workspace/Sources/SwiftGraphs/Graph.swift:156:80: error: instance method 'outNeighbors(of:)' is internal and cannot be referenced from an '@inlinable' function
154 | }
155 |
156 | @inlinable public func inNeighbors(of vertex: T) -> ArraySlice<T> { return outNeighbors(of: vertex) }
| `- error: instance method 'outNeighbors(of:)' is internal and cannot be referenced from an '@inlinable' function
157 | @inlinable public func neighbors(of vertex: T) -> ArraySlice<T> { return outNeighbors(of: vertex) }
158 |
/host/spi-builder-workspace/Sources/SwiftGraphs/SimpleGraph.swift:34:17: note: instance method 'outNeighbors(of:)' is not '@usableFromInline' or public
32 | }
33 |
34 | public func outNeighbors(of vertex: T) -> ArraySlice<T> {
| `- note: instance method 'outNeighbors(of:)' is not '@usableFromInline' or public
35 | let range = vecRange(Array<T>.Index(vertex))
36 | return rowidx[range]
/host/spi-builder-workspace/Sources/SwiftGraphs/Graph.swift:157:78: error: instance method 'outNeighbors(of:)' is internal and cannot be referenced from an '@inlinable' function
155 |
156 | @inlinable public func inNeighbors(of vertex: T) -> ArraySlice<T> { return outNeighbors(of: vertex) }
157 | @inlinable public func neighbors(of vertex: T) -> ArraySlice<T> { return outNeighbors(of: vertex) }
| `- error: instance method 'outNeighbors(of:)' is internal and cannot be referenced from an '@inlinable' function
158 |
159 | @inlinable public func inDegree(of vertex: T) -> Int { return outDegree(of: vertex) }
/host/spi-builder-workspace/Sources/SwiftGraphs/SimpleGraph.swift:34:17: note: instance method 'outNeighbors(of:)' is not '@usableFromInline' or public
32 | }
33 |
34 | public func outNeighbors(of vertex: T) -> ArraySlice<T> {
| `- note: instance method 'outNeighbors(of:)' is not '@usableFromInline' or public
35 | let range = vecRange(Array<T>.Index(vertex))
36 | return rowidx[range]
/host/spi-builder-workspace/Sources/SwiftGraphs/Graph.swift:159:67: error: instance method 'outDegree(of:)' is internal and cannot be referenced from an '@inlinable' function
157 | @inlinable public func neighbors(of vertex: T) -> ArraySlice<T> { return outNeighbors(of: vertex) }
158 |
159 | @inlinable public func inDegree(of vertex: T) -> Int { return outDegree(of: vertex) }
| `- error: instance method 'outDegree(of:)' is internal and cannot be referenced from an '@inlinable' function
160 | @inlinable public func degree(of vertex: T) -> Int { return outDegree(of: vertex) }
161 | }
/host/spi-builder-workspace/Sources/SwiftGraphs/SimpleGraph.swift:62:17: note: instance method 'outDegree(of:)' is not '@usableFromInline' or public
60 | }
61 |
62 | public func outDegree(of vertex: T) -> Int {
| `- note: instance method 'outDegree(of:)' is not '@usableFromInline' or public
63 | return colptr[Int(vertex) + 1] - colptr[Int(vertex)]
64 | }
/host/spi-builder-workspace/Sources/SwiftGraphs/Graph.swift:160:65: error: instance method 'outDegree(of:)' is internal and cannot be referenced from an '@inlinable' function
158 |
159 | @inlinable public func inDegree(of vertex: T) -> Int { return outDegree(of: vertex) }
160 | @inlinable public func degree(of vertex: T) -> Int { return outDegree(of: vertex) }
| `- error: instance method 'outDegree(of:)' is internal and cannot be referenced from an '@inlinable' function
161 | }
162 |
/host/spi-builder-workspace/Sources/SwiftGraphs/SimpleGraph.swift:62:17: note: instance method 'outDegree(of:)' is not '@usableFromInline' or public
60 | }
61 |
62 | public func outDegree(of vertex: T) -> Int {
| `- note: instance method 'outDegree(of:)' is not '@usableFromInline' or public
63 | return colptr[Int(vertex) + 1] - colptr[Int(vertex)]
64 | }
/host/spi-builder-workspace/Sources/SwiftGraphs/LineReader.swift:9:48: error: cannot find type 'FILE' in scope
7 | public let path: String
8 |
9 | fileprivate let file: UnsafeMutablePointer<FILE>!
| `- error: cannot find type 'FILE' in scope
10 |
11 | init?(path: String) {
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:9f3c606dcd2a4f06d17ba472aa533c43685ba7ba19a5c9bc23518a066eb7f86a
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
[2/3] Emitting module Gzip
[3/3] Compiling Gzip Data+Gzip.swift
[5/17] Compiling SwiftGraphs LineReader.swift
/host/spi-builder-workspace/Sources/SwiftGraphs/LineReader.swift:9:48: error: cannot find type 'FILE' in scope
7 | public let path: String
8 |
9 | fileprivate let file: UnsafeMutablePointer<FILE>!
| `- error: cannot find type 'FILE' in scope
10 |
11 | init?(path: String) {
[6/17] Compiling SwiftGraphs PriorityQueue.swift
/host/spi-builder-workspace/Sources/SwiftGraphs/LineReader.swift:9:48: error: cannot find type 'FILE' in scope
7 | public let path: String
8 |
9 | fileprivate let file: UnsafeMutablePointer<FILE>!
| `- error: cannot find type 'FILE' in scope
10 |
11 | init?(path: String) {
[7/18] Compiling SwiftGraphs radixSort.swift
[8/18] Compiling SwiftGraphs Time.swift
[9/18] Compiling SwiftGraphs RandomAccessCollectionExtensions.swift
[10/18] Compiling SwiftGraphs SimpleGraph.swift
[11/18] Compiling SwiftGraphs UnsafeArray.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[12/18] Compiling SwiftGraphs AbstractGraph.swift
[13/18] Compiling SwiftGraphs Degeneracy.swift
[14/18] Compiling SwiftGraphs DiGraph.swift
[15/18] Compiling SwiftGraphs Dijkstra.swift
[16/18] Emitting module SwiftGraphs
/host/spi-builder-workspace/Sources/SwiftGraphs/Graph.swift:80:28: error: initializer 'init(path:)' is internal and cannot be referenced from an '@inlinable' function
78 | let offset = oneIndexed ? -1 : 0
79 |
80 | guard let reader = LineReader(path: fileName) else {
| `- error: initializer 'init(path:)' is internal and cannot be referenced from an '@inlinable' function
81 | fatalError("error opening file \(fileName)")
82 | }
/host/spi-builder-workspace/Sources/SwiftGraphs/LineReader.swift:11:5: note: initializer 'init(path:)' is not '@usableFromInline' or public
9 | fileprivate let file: UnsafeMutablePointer<FILE>!
10 |
11 | init?(path: String) {
| `- note: initializer 'init(path:)' is not '@usableFromInline' or public
12 | self.path = path
13 | file = fopen(path, "r")
/host/spi-builder-workspace/Sources/SwiftGraphs/Graph.swift:156:80: error: instance method 'outNeighbors(of:)' is internal and cannot be referenced from an '@inlinable' function
154 | }
155 |
156 | @inlinable public func inNeighbors(of vertex: T) -> ArraySlice<T> { return outNeighbors(of: vertex) }
| `- error: instance method 'outNeighbors(of:)' is internal and cannot be referenced from an '@inlinable' function
157 | @inlinable public func neighbors(of vertex: T) -> ArraySlice<T> { return outNeighbors(of: vertex) }
158 |
/host/spi-builder-workspace/Sources/SwiftGraphs/SimpleGraph.swift:34:17: note: instance method 'outNeighbors(of:)' is not '@usableFromInline' or public
32 | }
33 |
34 | public func outNeighbors(of vertex: T) -> ArraySlice<T> {
| `- note: instance method 'outNeighbors(of:)' is not '@usableFromInline' or public
35 | let range = vecRange(Array<T>.Index(vertex))
36 | return rowidx[range]
/host/spi-builder-workspace/Sources/SwiftGraphs/Graph.swift:157:78: error: instance method 'outNeighbors(of:)' is internal and cannot be referenced from an '@inlinable' function
155 |
156 | @inlinable public func inNeighbors(of vertex: T) -> ArraySlice<T> { return outNeighbors(of: vertex) }
157 | @inlinable public func neighbors(of vertex: T) -> ArraySlice<T> { return outNeighbors(of: vertex) }
| `- error: instance method 'outNeighbors(of:)' is internal and cannot be referenced from an '@inlinable' function
158 |
159 | @inlinable public func inDegree(of vertex: T) -> Int { return outDegree(of: vertex) }
/host/spi-builder-workspace/Sources/SwiftGraphs/SimpleGraph.swift:34:17: note: instance method 'outNeighbors(of:)' is not '@usableFromInline' or public
32 | }
33 |
34 | public func outNeighbors(of vertex: T) -> ArraySlice<T> {
| `- note: instance method 'outNeighbors(of:)' is not '@usableFromInline' or public
35 | let range = vecRange(Array<T>.Index(vertex))
36 | return rowidx[range]
/host/spi-builder-workspace/Sources/SwiftGraphs/Graph.swift:159:67: error: instance method 'outDegree(of:)' is internal and cannot be referenced from an '@inlinable' function
157 | @inlinable public func neighbors(of vertex: T) -> ArraySlice<T> { return outNeighbors(of: vertex) }
158 |
159 | @inlinable public func inDegree(of vertex: T) -> Int { return outDegree(of: vertex) }
| `- error: instance method 'outDegree(of:)' is internal and cannot be referenced from an '@inlinable' function
160 | @inlinable public func degree(of vertex: T) -> Int { return outDegree(of: vertex) }
161 | }
/host/spi-builder-workspace/Sources/SwiftGraphs/SimpleGraph.swift:62:17: note: instance method 'outDegree(of:)' is not '@usableFromInline' or public
60 | }
61 |
62 | public func outDegree(of vertex: T) -> Int {
| `- note: instance method 'outDegree(of:)' is not '@usableFromInline' or public
63 | return colptr[Int(vertex) + 1] - colptr[Int(vertex)]
64 | }
/host/spi-builder-workspace/Sources/SwiftGraphs/Graph.swift:160:65: error: instance method 'outDegree(of:)' is internal and cannot be referenced from an '@inlinable' function
158 |
159 | @inlinable public func inDegree(of vertex: T) -> Int { return outDegree(of: vertex) }
160 | @inlinable public func degree(of vertex: T) -> Int { return outDegree(of: vertex) }
| `- error: instance method 'outDegree(of:)' is internal and cannot be referenced from an '@inlinable' function
161 | }
162 |
/host/spi-builder-workspace/Sources/SwiftGraphs/SimpleGraph.swift:62:17: note: instance method 'outDegree(of:)' is not '@usableFromInline' or public
60 | }
61 |
62 | public func outDegree(of vertex: T) -> Int {
| `- note: instance method 'outDegree(of:)' is not '@usableFromInline' or public
63 | return colptr[Int(vertex) + 1] - colptr[Int(vertex)]
64 | }
/host/spi-builder-workspace/Sources/SwiftGraphs/LineReader.swift:9:48: error: cannot find type 'FILE' in scope
7 | public let path: String
8 |
9 | fileprivate let file: UnsafeMutablePointer<FILE>!
| `- error: cannot find type 'FILE' in scope
10 |
11 | init?(path: String) {
[17/18] Compiling SwiftGraphs Edge.swift
/host/spi-builder-workspace/Sources/SwiftGraphs/Graph.swift:80:28: error: initializer 'init(path:)' is internal and cannot be referenced from an '@inlinable' function
78 | let offset = oneIndexed ? -1 : 0
79 |
80 | guard let reader = LineReader(path: fileName) else {
| `- error: initializer 'init(path:)' is internal and cannot be referenced from an '@inlinable' function
81 | fatalError("error opening file \(fileName)")
82 | }
/host/spi-builder-workspace/Sources/SwiftGraphs/LineReader.swift:11:5: note: initializer 'init(path:)' is not '@usableFromInline' or public
9 | fileprivate let file: UnsafeMutablePointer<FILE>!
10 |
11 | init?(path: String) {
| `- note: initializer 'init(path:)' is not '@usableFromInline' or public
12 | self.path = path
13 | file = fopen(path, "r")
/host/spi-builder-workspace/Sources/SwiftGraphs/Graph.swift:156:80: error: instance method 'outNeighbors(of:)' is internal and cannot be referenced from an '@inlinable' function
154 | }
155 |
156 | @inlinable public func inNeighbors(of vertex: T) -> ArraySlice<T> { return outNeighbors(of: vertex) }
| `- error: instance method 'outNeighbors(of:)' is internal and cannot be referenced from an '@inlinable' function
157 | @inlinable public func neighbors(of vertex: T) -> ArraySlice<T> { return outNeighbors(of: vertex) }
158 |
/host/spi-builder-workspace/Sources/SwiftGraphs/SimpleGraph.swift:34:17: note: instance method 'outNeighbors(of:)' is not '@usableFromInline' or public
32 | }
33 |
34 | public func outNeighbors(of vertex: T) -> ArraySlice<T> {
| `- note: instance method 'outNeighbors(of:)' is not '@usableFromInline' or public
35 | let range = vecRange(Array<T>.Index(vertex))
36 | return rowidx[range]
/host/spi-builder-workspace/Sources/SwiftGraphs/Graph.swift:157:78: error: instance method 'outNeighbors(of:)' is internal and cannot be referenced from an '@inlinable' function
155 |
156 | @inlinable public func inNeighbors(of vertex: T) -> ArraySlice<T> { return outNeighbors(of: vertex) }
157 | @inlinable public func neighbors(of vertex: T) -> ArraySlice<T> { return outNeighbors(of: vertex) }
| `- error: instance method 'outNeighbors(of:)' is internal and cannot be referenced from an '@inlinable' function
158 |
159 | @inlinable public func inDegree(of vertex: T) -> Int { return outDegree(of: vertex) }
/host/spi-builder-workspace/Sources/SwiftGraphs/SimpleGraph.swift:34:17: note: instance method 'outNeighbors(of:)' is not '@usableFromInline' or public
32 | }
33 |
34 | public func outNeighbors(of vertex: T) -> ArraySlice<T> {
| `- note: instance method 'outNeighbors(of:)' is not '@usableFromInline' or public
35 | let range = vecRange(Array<T>.Index(vertex))
36 | return rowidx[range]
/host/spi-builder-workspace/Sources/SwiftGraphs/Graph.swift:159:67: error: instance method 'outDegree(of:)' is internal and cannot be referenced from an '@inlinable' function
157 | @inlinable public func neighbors(of vertex: T) -> ArraySlice<T> { return outNeighbors(of: vertex) }
158 |
159 | @inlinable public func inDegree(of vertex: T) -> Int { return outDegree(of: vertex) }
| `- error: instance method 'outDegree(of:)' is internal and cannot be referenced from an '@inlinable' function
160 | @inlinable public func degree(of vertex: T) -> Int { return outDegree(of: vertex) }
161 | }
/host/spi-builder-workspace/Sources/SwiftGraphs/SimpleGraph.swift:62:17: note: instance method 'outDegree(of:)' is not '@usableFromInline' or public
60 | }
61 |
62 | public func outDegree(of vertex: T) -> Int {
| `- note: instance method 'outDegree(of:)' is not '@usableFromInline' or public
63 | return colptr[Int(vertex) + 1] - colptr[Int(vertex)]
64 | }
/host/spi-builder-workspace/Sources/SwiftGraphs/Graph.swift:160:65: error: instance method 'outDegree(of:)' is internal and cannot be referenced from an '@inlinable' function
158 |
159 | @inlinable public func inDegree(of vertex: T) -> Int { return outDegree(of: vertex) }
160 | @inlinable public func degree(of vertex: T) -> Int { return outDegree(of: vertex) }
| `- error: instance method 'outDegree(of:)' is internal and cannot be referenced from an '@inlinable' function
161 | }
162 |
/host/spi-builder-workspace/Sources/SwiftGraphs/SimpleGraph.swift:62:17: note: instance method 'outDegree(of:)' is not '@usableFromInline' or public
60 | }
61 |
62 | public func outDegree(of vertex: T) -> Int {
| `- note: instance method 'outDegree(of:)' is not '@usableFromInline' or public
63 | return colptr[Int(vertex) + 1] - colptr[Int(vertex)]
64 | }
[18/18] Compiling SwiftGraphs Graph.swift
/host/spi-builder-workspace/Sources/SwiftGraphs/Graph.swift:80:28: error: initializer 'init(path:)' is internal and cannot be referenced from an '@inlinable' function
78 | let offset = oneIndexed ? -1 : 0
79 |
80 | guard let reader = LineReader(path: fileName) else {
| `- error: initializer 'init(path:)' is internal and cannot be referenced from an '@inlinable' function
81 | fatalError("error opening file \(fileName)")
82 | }
/host/spi-builder-workspace/Sources/SwiftGraphs/LineReader.swift:11:5: note: initializer 'init(path:)' is not '@usableFromInline' or public
9 | fileprivate let file: UnsafeMutablePointer<FILE>!
10 |
11 | init?(path: String) {
| `- note: initializer 'init(path:)' is not '@usableFromInline' or public
12 | self.path = path
13 | file = fopen(path, "r")
/host/spi-builder-workspace/Sources/SwiftGraphs/Graph.swift:156:80: error: instance method 'outNeighbors(of:)' is internal and cannot be referenced from an '@inlinable' function
154 | }
155 |
156 | @inlinable public func inNeighbors(of vertex: T) -> ArraySlice<T> { return outNeighbors(of: vertex) }
| `- error: instance method 'outNeighbors(of:)' is internal and cannot be referenced from an '@inlinable' function
157 | @inlinable public func neighbors(of vertex: T) -> ArraySlice<T> { return outNeighbors(of: vertex) }
158 |
/host/spi-builder-workspace/Sources/SwiftGraphs/SimpleGraph.swift:34:17: note: instance method 'outNeighbors(of:)' is not '@usableFromInline' or public
32 | }
33 |
34 | public func outNeighbors(of vertex: T) -> ArraySlice<T> {
| `- note: instance method 'outNeighbors(of:)' is not '@usableFromInline' or public
35 | let range = vecRange(Array<T>.Index(vertex))
36 | return rowidx[range]
/host/spi-builder-workspace/Sources/SwiftGraphs/Graph.swift:157:78: error: instance method 'outNeighbors(of:)' is internal and cannot be referenced from an '@inlinable' function
155 |
156 | @inlinable public func inNeighbors(of vertex: T) -> ArraySlice<T> { return outNeighbors(of: vertex) }
157 | @inlinable public func neighbors(of vertex: T) -> ArraySlice<T> { return outNeighbors(of: vertex) }
| `- error: instance method 'outNeighbors(of:)' is internal and cannot be referenced from an '@inlinable' function
158 |
159 | @inlinable public func inDegree(of vertex: T) -> Int { return outDegree(of: vertex) }
/host/spi-builder-workspace/Sources/SwiftGraphs/SimpleGraph.swift:34:17: note: instance method 'outNeighbors(of:)' is not '@usableFromInline' or public
32 | }
33 |
34 | public func outNeighbors(of vertex: T) -> ArraySlice<T> {
| `- note: instance method 'outNeighbors(of:)' is not '@usableFromInline' or public
35 | let range = vecRange(Array<T>.Index(vertex))
36 | return rowidx[range]
/host/spi-builder-workspace/Sources/SwiftGraphs/Graph.swift:159:67: error: instance method 'outDegree(of:)' is internal and cannot be referenced from an '@inlinable' function
157 | @inlinable public func neighbors(of vertex: T) -> ArraySlice<T> { return outNeighbors(of: vertex) }
158 |
159 | @inlinable public func inDegree(of vertex: T) -> Int { return outDegree(of: vertex) }
| `- error: instance method 'outDegree(of:)' is internal and cannot be referenced from an '@inlinable' function
160 | @inlinable public func degree(of vertex: T) -> Int { return outDegree(of: vertex) }
161 | }
/host/spi-builder-workspace/Sources/SwiftGraphs/SimpleGraph.swift:62:17: note: instance method 'outDegree(of:)' is not '@usableFromInline' or public
60 | }
61 |
62 | public func outDegree(of vertex: T) -> Int {
| `- note: instance method 'outDegree(of:)' is not '@usableFromInline' or public
63 | return colptr[Int(vertex) + 1] - colptr[Int(vertex)]
64 | }
/host/spi-builder-workspace/Sources/SwiftGraphs/Graph.swift:160:65: error: instance method 'outDegree(of:)' is internal and cannot be referenced from an '@inlinable' function
158 |
159 | @inlinable public func inDegree(of vertex: T) -> Int { return outDegree(of: vertex) }
160 | @inlinable public func degree(of vertex: T) -> Int { return outDegree(of: vertex) }
| `- error: instance method 'outDegree(of:)' is internal and cannot be referenced from an '@inlinable' function
161 | }
162 |
/host/spi-builder-workspace/Sources/SwiftGraphs/SimpleGraph.swift:62:17: note: instance method 'outDegree(of:)' is not '@usableFromInline' or public
60 | }
61 |
62 | public func outDegree(of vertex: T) -> Int {
| `- note: instance method 'outDegree(of:)' is not '@usableFromInline' or public
63 | return colptr[Int(vertex) + 1] - colptr[Int(vertex)]
64 | }
BUILD FAILURE 6.1 android