Build Information
Successful build of ProcessRunner, reference 1.0.11 (70e49a), with Swift 6.1 for Android on 27 May 2025 19:03:13 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-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 -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>&1Build Log
========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/saltzmanjoelh/ProcessRunner.git
Reference: 1.0.11
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/saltzmanjoelh/ProcessRunner
* tag 1.0.11 -> FETCH_HEAD
HEAD is now at 70e49aa Fixed a bug where newlines in stderr would result in an errored task
Cloned https://github.com/saltzmanjoelh/ProcessRunner.git
Revision (git rev-parse @):
70e49aada9d8d504a390e08870ab1f143018de37
SUCCESS checkout https://github.com/saltzmanjoelh/ProcessRunner.git at 1.0.11
========================================
Build
========================================
Selected platform: android
Swift version: 6.1
Building package at path: $PWD
https://github.com/saltzmanjoelh/ProcessRunner.git
https://github.com/saltzmanjoelh/ProcessRunner.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
],
"manifest_display_name" : "ProcessRunner",
"name" : "ProcessRunner",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "ProcessRunner",
"targets" : [
"ProcessRunner"
],
"type" : {
"library" : [
"static"
]
}
}
],
"targets" : [
{
"c99name" : "ProcessRunnerTests",
"module_type" : "SwiftTarget",
"name" : "ProcessRunnerTests",
"path" : "Tests/ProcessRunnerTests",
"sources" : [
"ProcessRunnerTests.swift"
],
"target_dependencies" : [
"ProcessRunner"
],
"type" : "test"
},
{
"c99name" : "ProcessRunner",
"module_type" : "SwiftTarget",
"name" : "ProcessRunner",
"path" : "Sources/ProcessRunner",
"product_memberships" : [
"ProcessRunner"
],
"sources" : [
"ProcessRunner.swift"
],
"type" : "library"
}
],
"tools_version" : "4.1"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-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 -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:fe1962677657b2408c217cb5cceb3c09bc1d91486e360cebbc6eee461a5945d8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
Building for debugging...
[0/5] Write sources
[1/5] Write swift-version-24593BA9C3E375BF.txt
[3/7] Compiling ProcessRunner ProcessRunner.swift
/host/spi-builder-workspace/Sources/ProcessRunner/ProcessRunner.swift:60:26: warning: 'launchPath' is deprecated: renamed to 'executableURL'
58 | //Launch path
59 | executingProcess = Process()
60 | executingProcess.launchPath = NSString(string: launchPath).standardizingPath
| |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
| `- note: use 'executableURL' instead
61 | guard let path = executingProcess.launchPath,
62 | FileManager.default.isExecutableFile(atPath: path) else {
/host/spi-builder-workspace/Sources/ProcessRunner/ProcessRunner.swift:61:43: warning: 'launchPath' is deprecated: renamed to 'executableURL'
59 | executingProcess = Process()
60 | executingProcess.launchPath = NSString(string: launchPath).standardizingPath
61 | guard let path = executingProcess.launchPath,
| |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
| `- note: use 'executableURL' instead
62 | FileManager.default.isExecutableFile(atPath: path) else {
63 | throw ProcessRunnerError.InvalidExecutable(path: executingProcess.launchPath)
/host/spi-builder-workspace/Sources/ProcessRunner/ProcessRunner.swift:63:83: warning: 'launchPath' is deprecated: renamed to 'executableURL'
61 | guard let path = executingProcess.launchPath,
62 | FileManager.default.isExecutableFile(atPath: path) else {
63 | throw ProcessRunnerError.InvalidExecutable(path: executingProcess.launchPath)
| |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
| `- note: use 'executableURL' instead
64 | }
65 |
/host/spi-builder-workspace/Sources/ProcessRunner/ProcessRunner.swift:77:26: warning: 'currentDirectoryPath' is deprecated: renamed to 'currentDirectoryURL'
75 |
76 | //Current directory
77 | executingProcess.currentDirectoryPath = FileManager.default.currentDirectoryPath
| |- warning: 'currentDirectoryPath' is deprecated: renamed to 'currentDirectoryURL'
| `- note: use 'currentDirectoryURL' instead
78 |
79 | //Pipes
/host/spi-builder-workspace/Sources/ProcessRunner/ProcessRunner.swift:82:60: warning: assigning non-sendable parameter 'stdOut' to a @Sendable closure
54 | arguments: [String]? = nil,
55 | environment: [String:String]? = nil,
56 | stdOut: ((_ stdOutRead: FileHandle) -> Void)? = nil,
| `- note: parameter 'stdOut' is implicitly non-sendable
57 | stdErr: ((_ stdErrRead: FileHandle) -> Void)? = nil) throws {
58 | //Launch path
:
80 | stdOutPipe = Pipe()
81 | #if !os(Linux)
82 | stdOutPipe.fileHandleForReading.readabilityHandler = stdOut
| `- warning: assigning non-sendable parameter 'stdOut' to a @Sendable closure
83 | #endif
84 | executingProcess.standardOutput = stdOutPipe
/host/spi-builder-workspace/Sources/ProcessRunner/ProcessRunner.swift:88:60: warning: assigning non-sendable parameter 'stdErr' to a @Sendable closure
55 | environment: [String:String]? = nil,
56 | stdOut: ((_ stdOutRead: FileHandle) -> Void)? = nil,
57 | stdErr: ((_ stdErrRead: FileHandle) -> Void)? = nil) throws {
| `- note: parameter 'stdErr' is implicitly non-sendable
58 | //Launch path
59 | executingProcess = Process()
:
86 | stdErrPipe = Pipe()
87 | #if !os(Linux)
88 | stdErrPipe.fileHandleForReading.readabilityHandler = stdErr
| `- warning: assigning non-sendable parameter 'stdErr' to a @Sendable closure
89 | #endif
90 | executingProcess.standardError = stdErrPipe
/host/spi-builder-workspace/Sources/ProcessRunner/ProcessRunner.swift:96:26: warning: 'launch()' is deprecated: renamed to 'run'
94 | }
95 | public func launch() {
96 | executingProcess.launch()
| |- warning: 'launch()' is deprecated: renamed to 'run'
| `- note: use 'run' instead
97 | }
98 | /**
/host/spi-builder-workspace/Sources/ProcessRunner/ProcessRunner.swift:113:60: warning: assigning non-sendable parameter 'reader' to a @Sendable closure
110 | #if !os(Linux)
111 | @discardableResult
112 | public func stdOut(_ reader: ((FileHandle) -> Void)?) -> Self {
| `- note: parameter 'reader' is implicitly non-sendable
113 | stdOutPipe.fileHandleForReading.readabilityHandler = reader
| `- warning: assigning non-sendable parameter 'reader' to a @Sendable closure
114 | return self
115 | }
/host/spi-builder-workspace/Sources/ProcessRunner/ProcessRunner.swift:126:60: warning: assigning non-sendable parameter 'reader' to a @Sendable closure
123 | */
124 | @discardableResult
125 | public func stdErr(_ reader: ((FileHandle) -> Void)?) -> Self {
| `- note: parameter 'reader' is implicitly non-sendable
126 | stdErrPipe.fileHandleForReading.readabilityHandler = reader
| `- warning: assigning non-sendable parameter 'reader' to a @Sendable closure
127 | return self
128 | }
[4/7] Emitting module ProcessRunner
[5/8] Wrapping AST for ProcessRunner for debugging
[6/8] Write Objects.LinkFileList
[7/8] Archiving libProcessRunner.a
Build complete! (9.81s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "ProcessRunner",
"name" : "ProcessRunner",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "ProcessRunner",
"targets" : [
"ProcessRunner"
],
"type" : {
"library" : [
"static"
]
}
}
],
"targets" : [
{
"c99name" : "ProcessRunnerTests",
"module_type" : "SwiftTarget",
"name" : "ProcessRunnerTests",
"path" : "Tests/ProcessRunnerTests",
"sources" : [
"ProcessRunnerTests.swift"
],
"target_dependencies" : [
"ProcessRunner"
],
"type" : "test"
},
{
"c99name" : "ProcessRunner",
"module_type" : "SwiftTarget",
"name" : "ProcessRunner",
"path" : "Sources/ProcessRunner",
"product_memberships" : [
"ProcessRunner"
],
"sources" : [
"ProcessRunner.swift"
],
"type" : "library"
}
],
"tools_version" : "4.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
Done.