The Swift Package Index logo.Swift Package Index

Build Information

Failed to build Run, reference 0.1.1 (5a2866), with Swift 6.3 for Linux on 11 Apr 2026 09:22:03 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/getGuaka/Run.git
Reference: 0.1.1
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/getGuaka/Run
 * tag               0.1.1      -> FETCH_HEAD
HEAD is now at 5a2866c Fix execute ls test on Linux
Cloned https://github.com/getGuaka/Run.git
Revision (git rev-parse @):
5a2866c0ae4266e0406d85f16adf65a30a626d7f
SUCCESS checkout https://github.com/getGuaka/Run.git at 0.1.1
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.3
Building package at path:  $PWD
https://github.com/getGuaka/Run.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:5a7d791d2ead8a924b1292cb31bf3288eabcfe8880e0b005b00b45b71a5bc36a
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:basic-6.3-latest
Fetching https://github.com/Quick/Quick.git
Fetching https://github.com/Quick/Nimble.git
Fetching https://github.com/getGuaka/Prompt.git
[1/44] Fetching prompt
[45/14940] Fetching prompt, quick
[9430/34757] Fetching prompt, quick, nimble
Fetched https://github.com/getGuaka/Prompt.git from cache (0.76s)
Fetched https://github.com/Quick/Quick.git from cache (0.77s)
[3369/19817] Fetching nimble
Fetched https://github.com/Quick/Nimble.git from cache (2.01s)
Computing version for https://github.com/getGuaka/Prompt.git
Computed https://github.com/getGuaka/Prompt.git at 0.1.1 (2.77s)
Fetching https://github.com/getGuaka/Args.git
[1/34] Fetching args
Fetched https://github.com/getGuaka/Args.git from cache (0.22s)
Computing version for https://github.com/getGuaka/Args.git
Computed https://github.com/getGuaka/Args.git at 0.1.1 (0.75s)
Computing version for https://github.com/Quick/Quick.git
Computed https://github.com/Quick/Quick.git at 1.3.4 (0.59s)
Computing version for https://github.com/Quick/Nimble.git
Computed https://github.com/Quick/Nimble.git at 7.3.4 (0.51s)
Creating working copy for https://github.com/Quick/Quick.git
Working copy of https://github.com/Quick/Quick.git resolved at 1.3.4
Creating working copy for https://github.com/getGuaka/Args.git
Working copy of https://github.com/getGuaka/Args.git resolved at 0.1.1
Creating working copy for https://github.com/getGuaka/Prompt.git
Working copy of https://github.com/getGuaka/Prompt.git resolved at 0.1.1
Creating working copy for https://github.com/Quick/Nimble.git
Working copy of https://github.com/Quick/Nimble.git resolved at 7.3.4
Building for debugging...
[0/4] Write sources
[3/4] Write swift-version-24593BA9C3E375BF.txt
[5/10] Emitting module Args
[6/10] Compiling Args Argument.swift
[7/10] Compiling Args ArgsParser.swift
[8/10] Compiling Args Args.swift
[9/10] Compiling Args ArgConvertible.swift
[10/10] Compiling Args ProcessInfo.swift
[12/21] Compiling Prompt PromptPrinter.swift
[13/22] Compiling Prompt PromptReader.swift
[14/22] Emitting module Prompt
[15/22] Compiling Prompt Ask.swift
[16/22] Compiling Prompt AskSettings.swift
[17/22] Compiling Prompt PromptSettings.swift
[18/22] Compiling Prompt Choose.swift
[19/22] Compiling Prompt Agree.swift
[20/22] Compiling Prompt AgreeSettings.swift
[21/22] Compiling Prompt ChooseSettings.swift
[22/22] Compiling Prompt AskerValidator.swift
[24/30] Compiling Run TaskPipe.swift
[25/30] Compiling Run ShortHandRunner.swift
[26/30] Compiling Run RunResults.swift
[27/30] Emitting module Run
[28/30] Compiling Run Runner.swift
[29/30] Compiling Run CommandExecutor.swift
/host/spi-builder-workspace/Sources/Run/CommandExecutor.swift:44:14: warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
 42 |         let task = Process()
 43 |
 44 |         task.launchPath = "/usr/bin/env"
    |              |- warning: 'launchPath' is deprecated: renamed to 'executableURL' [#DeprecatedDeclaration]
    |              `- note: use 'executableURL' instead
 45 |         task.arguments = commandParts
 46 |
/host/spi-builder-workspace/Sources/Run/CommandExecutor.swift:52:14: warning: 'launch()' is deprecated: renamed to 'run' [#DeprecatedDeclaration]
 50 |         task.standardOutput = stdoutPipe
 51 |         task.standardError = stderrPipe
 52 |         task.launch()
    |              |- warning: 'launch()' is deprecated: renamed to 'run' [#DeprecatedDeclaration]
    |              `- note: use 'run' instead
 53 |         task.waitUntilExit()
 54 |
/host/spi-builder-workspace/Sources/Run/CommandExecutor.swift:81:44: error: value of optional type 'UnsafeMutablePointer<CChar>?' (aka 'Optional<UnsafeMutablePointer<Int8>>') must be unwrapped to a value of type 'UnsafeMutablePointer<CChar>' (aka 'UnsafeMutablePointer<Int8>')
 79 |
 80 |         var pid: pid_t = 0
 81 |         let result = posix_spawn(&pid, argv[0], &childFDActions, nil, argv + [nil], nil)
    |                                            |- error: value of optional type 'UnsafeMutablePointer<CChar>?' (aka 'Optional<UnsafeMutablePointer<Int8>>') must be unwrapped to a value of type 'UnsafeMutablePointer<CChar>' (aka 'UnsafeMutablePointer<Int8>')
    |                                            |- note: coalesce using '??' to provide a default when the optional value contains 'nil'
    |                                            `- note: force-unwrap using '!' to abort execution if the optional value contains 'nil'
 82 |
 83 |         let emptyPipe = Dryipe(dataToReturn: "".data(using: String.Encoding.utf8)!)
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[30/30] Compiling Run RunnerSettings.swift
BUILD FAILURE 6.3 linux