The Swift Package Index logo.Swift Package Index

Build Information

Failed to build process-kit, reference 0.1.0 (e9d600), with Swift 6.1 for Wasm on 30 May 2025 11:09:56 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/AnarchoSystems/process-kit.git
Reference: 0.1.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/AnarchoSystems/process-kit
 * tag               0.1.0      -> FETCH_HEAD
HEAD is now at e9d6000 initial commit
Cloned https://github.com/AnarchoSystems/process-kit.git
Revision (git rev-parse @):
e9d600083c8f4e8376a7f17e938a88be7de372f4
SUCCESS checkout https://github.com/AnarchoSystems/process-kit.git at 0.1.0
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/AnarchoSystems/process-kit.git
https://github.com/AnarchoSystems/process-kit.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
  ],
  "manifest_display_name" : "process-kit",
  "name" : "process-kit",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "ProcessKit",
      "targets" : [
        "ProcessKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ProcessKitTests",
      "module_type" : "SwiftTarget",
      "name" : "ProcessKitTests",
      "path" : "Tests/ProcessKitTests",
      "resources" : [
        {
          "path" : "/host/spi-builder-workspace/Tests/ProcessKitTests/MyGrep.sh",
          "rule" : {
            "process" : {
            }
          }
        }
      ],
      "sources" : [
        "ProcessKitTests.swift",
        "Snooper.swift"
      ],
      "target_dependencies" : [
        "ProcessKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ProcessKit",
      "module_type" : "SwiftTarget",
      "name" : "ProcessKit",
      "path" : "Sources/ProcessKit",
      "product_memberships" : [
        "ProcessKit"
      ],
      "sources" : [
        "ChainProcess.swift",
        "FindExecutable.swift",
        "Lib.swift",
        "Operator.swift",
        "ProcessBuilder.swift",
        "ProcessError.swift",
        "ProcessProtocol.swift",
        "Tipe.swift",
        "TypedProcess.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.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 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/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/11] Compiling ProcessKit Tipe.swift
[4/11] Compiling ProcessKit ProcessProtocol.swift
/host/spi-builder-workspace/Sources/ProcessKit/ProcessProtocol.swift:7:11: error: cannot find type 'Process' in scope
 5 | }
 6 |
 7 | extension Process : ProcessProtocol {
   |           `- error: cannot find type 'Process' in scope
 8 |
 9 |     public func run(stdin: Pipe) async throws -> Pipe {
error: emit-module command failed with exit code 1 (use -v to see invocation)
[5/12] Compiling ProcessKit ChainProcess.swift
[6/12] Compiling ProcessKit FindExecutable.swift
[7/12] Emitting module ProcessKit
/host/spi-builder-workspace/Sources/ProcessKit/ProcessProtocol.swift:7:11: error: cannot find type 'Process' in scope
 5 | }
 6 |
 7 | extension Process : ProcessProtocol {
   |           `- error: cannot find type 'Process' in scope
 8 |
 9 |     public func run(stdin: Pipe) async throws -> Pipe {
/host/spi-builder-workspace/Sources/ProcessKit/TypedProcess.swift:20:66: error: cannot find type 'Process' in scope
18 | }
19 |
20 | public protocol Proc<Input, Output> : TypedProcess where Proc == Process {
   |                                                                  `- error: cannot find type 'Process' in scope
21 |
22 |     associatedtype Input
/host/spi-builder-workspace/Sources/ProcessKit/TypedProcess.swift:31:34: error: cannot find type 'Process' in scope
29 | public extension Proc {
30 |
31 |     func makeProcess() throws -> Process {
   |                                  `- error: cannot find type 'Process' in scope
32 |         let proc = Process()
33 |         proc.executableURL = try path()
[8/12] Compiling ProcessKit TypedProcess.swift
/host/spi-builder-workspace/Sources/ProcessKit/TypedProcess.swift:20:66: error: cannot find type 'Process' in scope
18 | }
19 |
20 | public protocol Proc<Input, Output> : TypedProcess where Proc == Process {
   |                                                                  `- error: cannot find type 'Process' in scope
21 |
22 |     associatedtype Input
/host/spi-builder-workspace/Sources/ProcessKit/TypedProcess.swift:31:34: error: cannot find type 'Process' in scope
29 | public extension Proc {
30 |
31 |     func makeProcess() throws -> Process {
   |                                  `- error: cannot find type 'Process' in scope
32 |         let proc = Process()
33 |         proc.executableURL = try path()
/host/spi-builder-workspace/Sources/ProcessKit/TypedProcess.swift:32:20: error: cannot find 'Process' in scope
30 |
31 |     func makeProcess() throws -> Process {
32 |         let proc = Process()
   |                    `- error: cannot find 'Process' in scope
33 |         proc.executableURL = try path()
34 |         proc.arguments = arguments
[9/12] Compiling ProcessKit Operator.swift
[10/12] Compiling ProcessKit Lib.swift
[11/12] Compiling ProcessKit ProcessBuilder.swift
[12/12] Compiling ProcessKit ProcessError.swift
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/1] Write swift-version-24593BA9C3E375BF.txt
[2/10] Compiling ProcessKit ProcessProtocol.swift
/host/spi-builder-workspace/Sources/ProcessKit/ProcessProtocol.swift:7:11: error: cannot find type 'Process' in scope
 5 | }
 6 |
 7 | extension Process : ProcessProtocol {
   |           `- error: cannot find type 'Process' in scope
 8 |
 9 |     public func run(stdin: Pipe) async throws -> Pipe {
[3/10] Compiling ProcessKit Tipe.swift
[4/11] Compiling ProcessKit ProcessError.swift
[5/11] Compiling ProcessKit Lib.swift
[6/11] Compiling ProcessKit Operator.swift
[7/11] Compiling ProcessKit ProcessBuilder.swift
[8/11] Compiling ProcessKit TypedProcess.swift
/host/spi-builder-workspace/Sources/ProcessKit/TypedProcess.swift:20:66: error: cannot find type 'Process' in scope
18 | }
19 |
20 | public protocol Proc<Input, Output> : TypedProcess where Proc == Process {
   |                                                                  `- error: cannot find type 'Process' in scope
21 |
22 |     associatedtype Input
/host/spi-builder-workspace/Sources/ProcessKit/TypedProcess.swift:31:34: error: cannot find type 'Process' in scope
29 | public extension Proc {
30 |
31 |     func makeProcess() throws -> Process {
   |                                  `- error: cannot find type 'Process' in scope
32 |         let proc = Process()
33 |         proc.executableURL = try path()
/host/spi-builder-workspace/Sources/ProcessKit/TypedProcess.swift:32:20: error: cannot find 'Process' in scope
30 |
31 |     func makeProcess() throws -> Process {
32 |         let proc = Process()
   |                    `- error: cannot find 'Process' in scope
33 |         proc.executableURL = try path()
34 |         proc.arguments = arguments
error: emit-module command failed with exit code 1 (use -v to see invocation)
[9/11] Compiling ProcessKit ChainProcess.swift
[10/11] Compiling ProcessKit FindExecutable.swift
[11/11] Emitting module ProcessKit
/host/spi-builder-workspace/Sources/ProcessKit/ProcessProtocol.swift:7:11: error: cannot find type 'Process' in scope
 5 | }
 6 |
 7 | extension Process : ProcessProtocol {
   |           `- error: cannot find type 'Process' in scope
 8 |
 9 |     public func run(stdin: Pipe) async throws -> Pipe {
/host/spi-builder-workspace/Sources/ProcessKit/TypedProcess.swift:20:66: error: cannot find type 'Process' in scope
18 | }
19 |
20 | public protocol Proc<Input, Output> : TypedProcess where Proc == Process {
   |                                                                  `- error: cannot find type 'Process' in scope
21 |
22 |     associatedtype Input
/host/spi-builder-workspace/Sources/ProcessKit/TypedProcess.swift:31:34: error: cannot find type 'Process' in scope
29 | public extension Proc {
30 |
31 |     func makeProcess() throws -> Process {
   |                                  `- error: cannot find type 'Process' in scope
32 |         let proc = Process()
33 |         proc.executableURL = try path()
BUILD FAILURE 6.1 wasm