Build Information
Successful build of ShellInterface, reference 0.3.0 (0e196e), with Swift 6.1 for Android on 27 May 2025 11:01:28 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/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/hectr/swift-shell-interface.git
Reference: 0.3.0
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/hectr/swift-shell-interface
* tag 0.3.0 -> FETCH_HEAD
HEAD is now at 0e196e9 Release 0.3.0
Cloned https://github.com/hectr/swift-shell-interface.git
Revision (git rev-parse @):
0e196e919ba13128d1b161dbb6024902b0385fdd
SUCCESS checkout https://github.com/hectr/swift-shell-interface.git at 0.3.0
========================================
Build
========================================
Selected platform: android
Swift version: 6.1
Building package at path: $PWD
https://github.com/hectr/swift-shell-interface.git
https://github.com/hectr/swift-shell-interface.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
],
"manifest_display_name" : "ShellInterface",
"name" : "ShellInterface",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "ShellInterface",
"targets" : [
"ShellInterface"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "ShellInterfaceTests",
"module_type" : "SwiftTarget",
"name" : "ShellInterfaceTests",
"path" : "Tests/ShellInterfaceTests",
"sources" : [
"BuildProcessTests.swift",
"ExecuteCommandTests.swift",
"ExpandFilePathTests.swift",
"ExpandVariablesInStringTests.swift",
"LaunchTaskTests.swift",
"Models/TaskContextTests.swift",
"Models/TaskFailureTests.swift",
"Models/TaskResultTests.swift",
"ReadPipeTests.swift"
],
"target_dependencies" : [
"ShellInterface"
],
"type" : "test"
},
{
"c99name" : "ShellInterface",
"module_type" : "SwiftTarget",
"name" : "ShellInterface",
"path" : "Sources/ShellInterface",
"product_memberships" : [
"ShellInterface"
],
"sources" : [
"BuildProcess.swift",
"ExecuteCommand.swift",
"ExpandFilePath.swift",
"ExpandVariablesInString.swift",
"LaunchTask.swift",
"Models/TaskContext.swift",
"Models/TaskFailure.swift",
"Models/TaskResult.swift",
"ReadPipe.swift"
],
"type" : "library"
}
],
"tools_version" : "4.2"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/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
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/11] Compiling ShellInterface TaskResult.swift
[4/12] Compiling ShellInterface ExpandVariablesInString.swift
[5/12] Compiling ShellInterface ExpandFilePath.swift
[6/12] Compiling ShellInterface TaskFailure.swift
[7/12] Compiling ShellInterface TaskContext.swift
[8/12] Emitting module ShellInterface
[9/12] Compiling ShellInterface BuildProcess.swift
/host/spi-builder-workspace/Sources/ShellInterface/BuildProcess.swift:34:14: warning: 'launchPath' is deprecated: renamed to 'executableURL'
32 | {
33 | let task = Process()
34 | task.launchPath = launchPath
| |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
| `- note: use 'executableURL' instead
35 | task.arguments = arguments
36 | if let environment = context?.environment {
/host/spi-builder-workspace/Sources/ShellInterface/BuildProcess.swift:40:18: warning: 'currentDirectoryPath' is deprecated: renamed to 'currentDirectoryURL'
38 | }
39 | if let workingDirectory = context?.workingDirectory {
40 | task.currentDirectoryPath = workingDirectory
| |- warning: 'currentDirectoryPath' is deprecated: renamed to 'currentDirectoryURL'
| `- note: use 'currentDirectoryURL' instead
41 | }
42 | if let stdOut = stdOut {
[10/12] Compiling ShellInterface ExecuteCommand.swift
/host/spi-builder-workspace/Sources/ShellInterface/BuildProcess.swift:34:14: warning: 'launchPath' is deprecated: renamed to 'executableURL'
32 | {
33 | let task = Process()
34 | task.launchPath = launchPath
| |- warning: 'launchPath' is deprecated: renamed to 'executableURL'
| `- note: use 'executableURL' instead
35 | task.arguments = arguments
36 | if let environment = context?.environment {
/host/spi-builder-workspace/Sources/ShellInterface/BuildProcess.swift:40:18: warning: 'currentDirectoryPath' is deprecated: renamed to 'currentDirectoryURL'
38 | }
39 | if let workingDirectory = context?.workingDirectory {
40 | task.currentDirectoryPath = workingDirectory
| |- warning: 'currentDirectoryPath' is deprecated: renamed to 'currentDirectoryURL'
| `- note: use 'currentDirectoryURL' instead
41 | }
42 | if let stdOut = stdOut {
[11/12] Compiling ShellInterface LaunchTask.swift
/host/spi-builder-workspace/Sources/ShellInterface/LaunchTask.swift:49:14: warning: 'launch()' is deprecated: renamed to 'run'
47 | private func launch(_ task: Process, stdOut: Pipe, stdErr: Pipe, waitUntilExit: Bool) -> TaskResult
48 | {
49 | task.launch()
| |- warning: 'launch()' is deprecated: renamed to 'run'
| `- note: use 'run' instead
50 | if waitUntilExit {
51 | task.waitUntilExit()
[12/12] Compiling ShellInterface ReadPipe.swift
Build complete! (11.64s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "ShellInterface",
"name" : "ShellInterface",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "ShellInterface",
"targets" : [
"ShellInterface"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "ShellInterfaceTests",
"module_type" : "SwiftTarget",
"name" : "ShellInterfaceTests",
"path" : "Tests/ShellInterfaceTests",
"sources" : [
"BuildProcessTests.swift",
"ExecuteCommandTests.swift",
"ExpandFilePathTests.swift",
"ExpandVariablesInStringTests.swift",
"LaunchTaskTests.swift",
"Models/TaskContextTests.swift",
"Models/TaskFailureTests.swift",
"Models/TaskResultTests.swift",
"ReadPipeTests.swift"
],
"target_dependencies" : [
"ShellInterface"
],
"type" : "test"
},
{
"c99name" : "ShellInterface",
"module_type" : "SwiftTarget",
"name" : "ShellInterface",
"path" : "Sources/ShellInterface",
"product_memberships" : [
"ShellInterface"
],
"sources" : [
"BuildProcess.swift",
"ExecuteCommand.swift",
"ExpandFilePath.swift",
"ExpandVariablesInString.swift",
"LaunchTask.swift",
"Models/TaskContext.swift",
"Models/TaskFailure.swift",
"Models/TaskResult.swift",
"ReadPipe.swift"
],
"type" : "library"
}
],
"tools_version" : "4.2"
}
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
Done.