Build Information
Failed to build Commands, reference main (94921f
), with Swift 6.1 for Wasm on 28 May 2025 05:20:39 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/q231950/commands.git
Reference: main
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/q231950/commands
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 94921f2 Remove old and unused resources
Cloned https://github.com/q231950/commands.git
Revision (git rev-parse @):
94921f2de9262a74e8abe2d218242214df00a2ef
SUCCESS checkout https://github.com/q231950/commands.git at main
========================================
Build
========================================
Selected platform: wasm
Swift version: 6.1
Building package at path: $PWD
https://github.com/q231950/commands.git
https://github.com/q231950/commands.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
],
"manifest_display_name" : "Commands",
"name" : "Commands",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "CommandsExample",
"targets" : [
"CommandsExample"
],
"type" : {
"executable" : null
}
},
{
"name" : "Commands",
"targets" : [
"Commands"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "CommandsTests",
"module_type" : "SwiftTarget",
"name" : "CommandsTests",
"path" : "Tests/CommandsTests",
"sources" : [
"CommandExecutorTests.swift",
"TestHelper.swift"
],
"target_dependencies" : [
"Commands"
],
"type" : "test"
},
{
"c99name" : "CommandsExample",
"module_type" : "SwiftTarget",
"name" : "CommandsExample",
"path" : "Sources/CommandsExample",
"product_memberships" : [
"CommandsExample"
],
"sources" : [
"main.swift"
],
"target_dependencies" : [
"Commands"
],
"type" : "executable"
},
{
"c99name" : "Commands",
"module_type" : "SwiftTarget",
"name" : "Commands",
"path" : "Sources/Commands",
"product_memberships" : [
"CommandsExample",
"Commands"
],
"sources" : [
"Command.swift",
"CommandExecutor.swift"
],
"type" : "library"
}
],
"tools_version" : "4.0"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi -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
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
Building for debugging...
[0/7] Write sources
[2/7] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[4/10] Compiling Commands Command.swift
[5/10] Emitting module Commands
/host/spi-builder-workspace/Sources/Commands/CommandExecutor.swift:21:27: error: cannot find 'Process' in scope
19 |
20 | private let inputPipe = Pipe()
21 | private let process = Process()
| `- error: cannot find 'Process' in scope
22 |
23 | public func execute(_ command: Command) {
[6/10] Compiling Commands CommandExecutor.swift
/host/spi-builder-workspace/Sources/Commands/CommandExecutor.swift:21:27: error: cannot find 'Process' in scope
19 |
20 | private let inputPipe = Pipe()
21 | private let process = Process()
| `- error: cannot find 'Process' in scope
22 |
23 | public func execute(_ command: Command) {
/host/spi-builder-workspace/Sources/Commands/CommandExecutor.swift:39:40: error: cannot infer type of closure parameter 'process' without a type annotation
37 |
38 | process.standardInput = inputPipe
39 | process.terminationHandler = { process in
| `- error: cannot infer type of closure parameter 'process' without a type annotation
40 | self.terminationHandler?(process.terminationStatus)
41 | }
/host/spi-builder-workspace/Sources/Commands/CommandExecutor.swift:58:41: error: value of type 'FileHandle' has no member 'readabilityHandler'
56 | private func outputStreamWritingPipe() -> Pipe {
57 | let outputPipe = Pipe()
58 | outputPipe.fileHandleForReading.readabilityHandler = { [weak self] handle in
| `- error: value of type 'FileHandle' has no member 'readabilityHandler'
59 | let data = handle.availableData
60 | if data.count > 0, let output = String(data: data, encoding: .utf8) {
/host/spi-builder-workspace/Sources/Commands/CommandExecutor.swift:58:76: error: cannot infer type of closure parameter 'handle' without a type annotation
56 | private func outputStreamWritingPipe() -> Pipe {
57 | let outputPipe = Pipe()
58 | outputPipe.fileHandleForReading.readabilityHandler = { [weak self] handle in
| `- error: cannot infer type of closure parameter 'handle' without a type annotation
59 | let data = handle.availableData
60 | if data.count > 0, let output = String(data: data, encoding: .utf8) {
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest swift build --swift-sdk wasm32-unknown-wasi 2>&1
wasm-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:7e37457820e5f17452a98118754f345f2619722c485f2db0d8b666940a83afd2
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:wasm-6.1-latest
[0/1] Planning build
Building for debugging...
[0/5] Write swift-version-24593BA9C3E375BF.txt
[2/8] Compiling Commands CommandExecutor.swift
/host/spi-builder-workspace/Sources/Commands/CommandExecutor.swift:21:27: error: cannot find 'Process' in scope
19 |
20 | private let inputPipe = Pipe()
21 | private let process = Process()
| `- error: cannot find 'Process' in scope
22 |
23 | public func execute(_ command: Command) {
/host/spi-builder-workspace/Sources/Commands/CommandExecutor.swift:39:40: error: cannot infer type of closure parameter 'process' without a type annotation
37 |
38 | process.standardInput = inputPipe
39 | process.terminationHandler = { process in
| `- error: cannot infer type of closure parameter 'process' without a type annotation
40 | self.terminationHandler?(process.terminationStatus)
41 | }
/host/spi-builder-workspace/Sources/Commands/CommandExecutor.swift:58:41: error: value of type 'FileHandle' has no member 'readabilityHandler'
56 | private func outputStreamWritingPipe() -> Pipe {
57 | let outputPipe = Pipe()
58 | outputPipe.fileHandleForReading.readabilityHandler = { [weak self] handle in
| `- error: value of type 'FileHandle' has no member 'readabilityHandler'
59 | let data = handle.availableData
60 | if data.count > 0, let output = String(data: data, encoding: .utf8) {
/host/spi-builder-workspace/Sources/Commands/CommandExecutor.swift:58:76: error: cannot infer type of closure parameter 'handle' without a type annotation
56 | private func outputStreamWritingPipe() -> Pipe {
57 | let outputPipe = Pipe()
58 | outputPipe.fileHandleForReading.readabilityHandler = { [weak self] handle in
| `- error: cannot infer type of closure parameter 'handle' without a type annotation
59 | let data = handle.availableData
60 | if data.count > 0, let output = String(data: data, encoding: .utf8) {
error: emit-module command failed with exit code 1 (use -v to see invocation)
[3/8] Compiling Commands Command.swift
[4/8] Emitting module Commands
/host/spi-builder-workspace/Sources/Commands/CommandExecutor.swift:21:27: error: cannot find 'Process' in scope
19 |
20 | private let inputPipe = Pipe()
21 | private let process = Process()
| `- error: cannot find 'Process' in scope
22 |
23 | public func execute(_ command: Command) {
BUILD FAILURE 6.1 wasm