The Swift Package Index logo.Swift Package Index

Build Information

Successful build of ProcessRunner, reference master (70e49a), with Swift 6.2 for Android on 18 Jun 2025 14:52:01 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/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/saltzmanjoelh/ProcessRunner.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/saltzmanjoelh/ProcessRunner
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
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 master
========================================
Build
========================================
Selected platform:         android
Swift version:             6.2
Building package at path:  $PWD
https://github.com/saltzmanjoelh/ProcessRunner.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/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
Building for debugging...
[0/5] Write sources
[1/5] Write swift-version-8C5A4AE7A8CE2BA.txt
[3/7] Emitting module ProcessRunner
[4/7] Compiling ProcessRunner ProcessRunner.swift
/host/spi-builder-workspace/Sources/ProcessRunner/ProcessRunner.swift:60:26: warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
 58 |         //Launch path
 59 |         executingProcess = Process()
 60 |         executingProcess.launchPath = NSString(string: launchPath).standardizingPath
    |                          |- warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
    |                          `- 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' [#DeprecatedDeclaration]
 59 |         executingProcess = Process()
 60 |         executingProcess.launchPath = NSString(string: launchPath).standardizingPath
 61 |         guard let path = executingProcess.launchPath,
    |                                           |- warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
    |                                           `- 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' [#DeprecatedDeclaration]
 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' [#DeprecatedDeclaration]
    |                                                                                   `- note: use 'executableURL' instead
 64 |         }
 65 |
/host/spi-builder-workspace/Sources/ProcessRunner/ProcessRunner.swift:77:26: warning: 'currentDirectoryPath' is deprecated: renamed to 'currentDirectoryURL' [#DeprecatedDeclaration]
 75 |
 76 |         //Current directory
 77 |         executingProcess.currentDirectoryPath = FileManager.default.currentDirectoryPath
    |                          |- warning: 'currentDirectoryPath' is deprecated: renamed to 'currentDirectoryURL' [#DeprecatedDeclaration]
    |                          `- 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' [#DeprecatedDeclaration]
 94 |     }
 95 |     public func launch() {
 96 |         executingProcess.launch()
    |                          |- warning: 'launch()' is deprecated: renamed to 'run' [#DeprecatedDeclaration]
    |                          `- 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 |     }
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[5/8] Wrapping AST for ProcessRunner for debugging
[6/8] Write Objects.LinkFileList
[7/8] Archiving libProcessRunner.a
Build complete! (10.15s)
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.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.