The Swift Package Index logo.Swift Package Index

Build Information

Failed to build Playwright, reference main (27fd48), with Swift 6.2 for Wasm on 13 Apr 2026 21:13:55 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-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:wasm-6.2-latest swift build --swift-sdk swift-6.2-RELEASE_wasm 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/m1guelpf/swift-playwright.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/m1guelpf/swift-playwright
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 27fd489 Add PlaywrightDriverPlugin to products
Cloned https://github.com/m1guelpf/swift-playwright.git
Revision (git rev-parse @):
27fd489d01a4ca5f68350774f253f82c6afd5cc7
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/m1guelpf/swift-playwright.git at main
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/m1guelpf/swift-playwright.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-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:wasm-6.2-latest swift build --swift-sdk swift-6.2-RELEASE_wasm 2>&1
wasm-6.2-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:2a8b2d9e022a9894c61e0736af7cdaa1ee64c002dbb133a55c0d7e8980b3ad16
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.2-latest
Fetching https://github.com/apple/swift-argument-parser
[1/17523] Fetching swift-argument-parser
Fetched https://github.com/apple/swift-argument-parser from cache (1.34s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 1.7.1 (2.28s)
Creating working copy for https://github.com/apple/swift-argument-parser
Working copy of https://github.com/apple/swift-argument-parser resolved at 1.7.1
[1/1] Compiling plugin PlaywrightDriverPlugin
[2/2] Compiling plugin GenerateManual
[3/3] Compiling plugin GenerateDoccReference
Building for debugging...
[3/23] Write sources
[11/23] Copying drivers
[12/23] Write swift-version-24593BA9C3E375BF.txt
[14/59] Emitting module ArgumentParserToolInfo
[15/59] Compiling ArgumentParserToolInfo ToolInfo.swift
[16/59] Emitting module ArgumentParserToolInfo
[18/60] Compiling ArgumentParserToolInfo ToolInfo.swift
[19/61] Wrapping AST for ArgumentParserToolInfo for debugging
[22/153] Compiling ArgumentParser Name.swift
[23/153] Compiling ArgumentParser Parsed.swift
[24/153] Compiling ArgumentParser ParsedValues.swift
[25/153] Compiling ArgumentParser ParserError.swift
[26/157] Compiling Playwright PlaywrightServer.swift
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:17:23: error: cannot find type 'Process' in scope
 15 | 	let messages: AsyncStream<Data>
 16 |
 17 | 	private let process: Process
    |                       `- error: cannot find type 'Process' in scope
 18 | 	private let stdinHandle: FileHandle
 19 | 	private let stdoutHandle: FileHandle
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:25:12: error: cannot find type 'Process' in scope
 23 |
 24 | 	private init(
 25 | 		process: Process,
    |            `- error: cannot find type 'Process' in scope
 26 | 		stdinHandle: FileHandle,
 27 | 		stdoutHandle: FileHandle,
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:55:14: error: cannot find 'Process' in scope
 53 | 		let executable = try Driver.find()
 54 |
 55 | 		let proc = Process()
    |              `- error: cannot find 'Process' in scope
 56 | 		if executable.program.contains("/") {
 57 | 			proc.arguments = executable.arguments
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:80:14: error: value of type 'FileHandle' has no member 'readabilityHandler'
 78 | 		let (messages, continuation) = AsyncStream<Data>.makeStream()
 79 | 		let readHandle = stdoutPipe.fileHandleForReading
 80 | 		readHandle.readabilityHandler = { handle in
    |              `- error: value of type 'FileHandle' has no member 'readabilityHandler'
 81 | 			let data = handle.availableData
 82 | 			if data.isEmpty {
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:80:37: error: cannot infer type of closure parameter 'handle' without a type annotation
 78 | 		let (messages, continuation) = AsyncStream<Data>.makeStream()
 79 | 		let readHandle = stdoutPipe.fileHandleForReading
 80 | 		readHandle.readabilityHandler = { handle in
    |                                     `- error: cannot infer type of closure parameter 'handle' without a type annotation
 81 | 			let data = handle.availableData
 82 | 			if data.isEmpty {
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:103:20: error: value of type 'FileHandle' has no member 'readabilityHandler'
101 | 		// Drain stderr to prevent the server from blocking on a full pipe buffer
102 | 		let stderrReadHandle = stderrPipe.fileHandleForReading
103 | 		stderrReadHandle.readabilityHandler = { handle in
    |                    `- error: value of type 'FileHandle' has no member 'readabilityHandler'
104 | 			// TODO: Should we be logging this somewhere?
105 | 			_ = handle.availableData
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:103:43: error: cannot infer type of closure parameter 'handle' without a type annotation
101 | 		// Drain stderr to prevent the server from blocking on a full pipe buffer
102 | 		let stderrReadHandle = stderrPipe.fileHandleForReading
103 | 		stderrReadHandle.readabilityHandler = { handle in
    |                                           `- error: cannot infer type of closure parameter 'handle' without a type annotation
104 | 			// TODO: Should we be logging this somewhere?
105 | 			_ = handle.availableData
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:130:17: error: value of type 'FileHandle' has no member 'readabilityHandler'
128 | 	func close() {
129 | 		closeGuard.closeOnce {
130 | 			stdoutHandle.readabilityHandler = nil
    |                 `- error: value of type 'FileHandle' has no member 'readabilityHandler'
131 | 			stderrHandle.readabilityHandler = nil
132 | 			continuation.finish()
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:154:35: error: cannot infer type of closure parameter '_' without a type annotation
152 | 			// If the process already exited between our check and setting the handler,
153 | 			// Foundation still calls the handler immediately.
154 | 			process.terminationHandler = { _ in
    |                                   `- error: cannot infer type of closure parameter '_' without a type annotation
155 | 				cont.resume()
156 | 			}
[27/157] Compiling Playwright Transport.swift
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:17:23: error: cannot find type 'Process' in scope
 15 | 	let messages: AsyncStream<Data>
 16 |
 17 | 	private let process: Process
    |                       `- error: cannot find type 'Process' in scope
 18 | 	private let stdinHandle: FileHandle
 19 | 	private let stdoutHandle: FileHandle
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:25:12: error: cannot find type 'Process' in scope
 23 |
 24 | 	private init(
 25 | 		process: Process,
    |            `- error: cannot find type 'Process' in scope
 26 | 		stdinHandle: FileHandle,
 27 | 		stdoutHandle: FileHandle,
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:55:14: error: cannot find 'Process' in scope
 53 | 		let executable = try Driver.find()
 54 |
 55 | 		let proc = Process()
    |              `- error: cannot find 'Process' in scope
 56 | 		if executable.program.contains("/") {
 57 | 			proc.arguments = executable.arguments
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:80:14: error: value of type 'FileHandle' has no member 'readabilityHandler'
 78 | 		let (messages, continuation) = AsyncStream<Data>.makeStream()
 79 | 		let readHandle = stdoutPipe.fileHandleForReading
 80 | 		readHandle.readabilityHandler = { handle in
    |              `- error: value of type 'FileHandle' has no member 'readabilityHandler'
 81 | 			let data = handle.availableData
 82 | 			if data.isEmpty {
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:80:37: error: cannot infer type of closure parameter 'handle' without a type annotation
 78 | 		let (messages, continuation) = AsyncStream<Data>.makeStream()
 79 | 		let readHandle = stdoutPipe.fileHandleForReading
 80 | 		readHandle.readabilityHandler = { handle in
    |                                     `- error: cannot infer type of closure parameter 'handle' without a type annotation
 81 | 			let data = handle.availableData
 82 | 			if data.isEmpty {
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:103:20: error: value of type 'FileHandle' has no member 'readabilityHandler'
101 | 		// Drain stderr to prevent the server from blocking on a full pipe buffer
102 | 		let stderrReadHandle = stderrPipe.fileHandleForReading
103 | 		stderrReadHandle.readabilityHandler = { handle in
    |                    `- error: value of type 'FileHandle' has no member 'readabilityHandler'
104 | 			// TODO: Should we be logging this somewhere?
105 | 			_ = handle.availableData
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:103:43: error: cannot infer type of closure parameter 'handle' without a type annotation
101 | 		// Drain stderr to prevent the server from blocking on a full pipe buffer
102 | 		let stderrReadHandle = stderrPipe.fileHandleForReading
103 | 		stderrReadHandle.readabilityHandler = { handle in
    |                                           `- error: cannot infer type of closure parameter 'handle' without a type annotation
104 | 			// TODO: Should we be logging this somewhere?
105 | 			_ = handle.availableData
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:130:17: error: value of type 'FileHandle' has no member 'readabilityHandler'
128 | 	func close() {
129 | 		closeGuard.closeOnce {
130 | 			stdoutHandle.readabilityHandler = nil
    |                 `- error: value of type 'FileHandle' has no member 'readabilityHandler'
131 | 			stderrHandle.readabilityHandler = nil
132 | 			continuation.finish()
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:154:35: error: cannot infer type of closure parameter '_' without a type annotation
152 | 			// If the process already exited between our check and setting the handler,
153 | 			// Foundation still calls the handler immediately.
154 | 			process.terminationHandler = { _ in
    |                                   `- error: cannot infer type of closure parameter '_' without a type annotation
155 | 				cont.resume()
156 | 			}
[28/157] Compiling Playwright helpers.swift
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:17:23: error: cannot find type 'Process' in scope
 15 | 	let messages: AsyncStream<Data>
 16 |
 17 | 	private let process: Process
    |                       `- error: cannot find type 'Process' in scope
 18 | 	private let stdinHandle: FileHandle
 19 | 	private let stdoutHandle: FileHandle
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:25:12: error: cannot find type 'Process' in scope
 23 |
 24 | 	private init(
 25 | 		process: Process,
    |            `- error: cannot find type 'Process' in scope
 26 | 		stdinHandle: FileHandle,
 27 | 		stdoutHandle: FileHandle,
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:55:14: error: cannot find 'Process' in scope
 53 | 		let executable = try Driver.find()
 54 |
 55 | 		let proc = Process()
    |              `- error: cannot find 'Process' in scope
 56 | 		if executable.program.contains("/") {
 57 | 			proc.arguments = executable.arguments
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:80:14: error: value of type 'FileHandle' has no member 'readabilityHandler'
 78 | 		let (messages, continuation) = AsyncStream<Data>.makeStream()
 79 | 		let readHandle = stdoutPipe.fileHandleForReading
 80 | 		readHandle.readabilityHandler = { handle in
    |              `- error: value of type 'FileHandle' has no member 'readabilityHandler'
 81 | 			let data = handle.availableData
 82 | 			if data.isEmpty {
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:80:37: error: cannot infer type of closure parameter 'handle' without a type annotation
 78 | 		let (messages, continuation) = AsyncStream<Data>.makeStream()
 79 | 		let readHandle = stdoutPipe.fileHandleForReading
 80 | 		readHandle.readabilityHandler = { handle in
    |                                     `- error: cannot infer type of closure parameter 'handle' without a type annotation
 81 | 			let data = handle.availableData
 82 | 			if data.isEmpty {
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:103:20: error: value of type 'FileHandle' has no member 'readabilityHandler'
101 | 		// Drain stderr to prevent the server from blocking on a full pipe buffer
102 | 		let stderrReadHandle = stderrPipe.fileHandleForReading
103 | 		stderrReadHandle.readabilityHandler = { handle in
    |                    `- error: value of type 'FileHandle' has no member 'readabilityHandler'
104 | 			// TODO: Should we be logging this somewhere?
105 | 			_ = handle.availableData
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:103:43: error: cannot infer type of closure parameter 'handle' without a type annotation
101 | 		// Drain stderr to prevent the server from blocking on a full pipe buffer
102 | 		let stderrReadHandle = stderrPipe.fileHandleForReading
103 | 		stderrReadHandle.readabilityHandler = { handle in
    |                                           `- error: cannot infer type of closure parameter 'handle' without a type annotation
104 | 			// TODO: Should we be logging this somewhere?
105 | 			_ = handle.availableData
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:130:17: error: value of type 'FileHandle' has no member 'readabilityHandler'
128 | 	func close() {
129 | 		closeGuard.closeOnce {
130 | 			stdoutHandle.readabilityHandler = nil
    |                 `- error: value of type 'FileHandle' has no member 'readabilityHandler'
131 | 			stderrHandle.readabilityHandler = nil
132 | 			continuation.finish()
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:154:35: error: cannot infer type of closure parameter '_' without a type annotation
152 | 			// If the process already exited between our check and setting the handler,
153 | 			// Foundation still calls the handler immediately.
154 | 			process.terminationHandler = { _ in
    |                                   `- error: cannot infer type of closure parameter '_' without a type annotation
155 | 				cont.resume()
156 | 			}
[29/157] Compiling Playwright resource_bundle_accessor.swift
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:17:23: error: cannot find type 'Process' in scope
 15 | 	let messages: AsyncStream<Data>
 16 |
 17 | 	private let process: Process
    |                       `- error: cannot find type 'Process' in scope
 18 | 	private let stdinHandle: FileHandle
 19 | 	private let stdoutHandle: FileHandle
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:25:12: error: cannot find type 'Process' in scope
 23 |
 24 | 	private init(
 25 | 		process: Process,
    |            `- error: cannot find type 'Process' in scope
 26 | 		stdinHandle: FileHandle,
 27 | 		stdoutHandle: FileHandle,
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:55:14: error: cannot find 'Process' in scope
 53 | 		let executable = try Driver.find()
 54 |
 55 | 		let proc = Process()
    |              `- error: cannot find 'Process' in scope
 56 | 		if executable.program.contains("/") {
 57 | 			proc.arguments = executable.arguments
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:80:14: error: value of type 'FileHandle' has no member 'readabilityHandler'
 78 | 		let (messages, continuation) = AsyncStream<Data>.makeStream()
 79 | 		let readHandle = stdoutPipe.fileHandleForReading
 80 | 		readHandle.readabilityHandler = { handle in
    |              `- error: value of type 'FileHandle' has no member 'readabilityHandler'
 81 | 			let data = handle.availableData
 82 | 			if data.isEmpty {
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:80:37: error: cannot infer type of closure parameter 'handle' without a type annotation
 78 | 		let (messages, continuation) = AsyncStream<Data>.makeStream()
 79 | 		let readHandle = stdoutPipe.fileHandleForReading
 80 | 		readHandle.readabilityHandler = { handle in
    |                                     `- error: cannot infer type of closure parameter 'handle' without a type annotation
 81 | 			let data = handle.availableData
 82 | 			if data.isEmpty {
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:103:20: error: value of type 'FileHandle' has no member 'readabilityHandler'
101 | 		// Drain stderr to prevent the server from blocking on a full pipe buffer
102 | 		let stderrReadHandle = stderrPipe.fileHandleForReading
103 | 		stderrReadHandle.readabilityHandler = { handle in
    |                    `- error: value of type 'FileHandle' has no member 'readabilityHandler'
104 | 			// TODO: Should we be logging this somewhere?
105 | 			_ = handle.availableData
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:103:43: error: cannot infer type of closure parameter 'handle' without a type annotation
101 | 		// Drain stderr to prevent the server from blocking on a full pipe buffer
102 | 		let stderrReadHandle = stderrPipe.fileHandleForReading
103 | 		stderrReadHandle.readabilityHandler = { handle in
    |                                           `- error: cannot infer type of closure parameter 'handle' without a type annotation
104 | 			// TODO: Should we be logging this somewhere?
105 | 			_ = handle.availableData
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:130:17: error: value of type 'FileHandle' has no member 'readabilityHandler'
128 | 	func close() {
129 | 		closeGuard.closeOnce {
130 | 			stdoutHandle.readabilityHandler = nil
    |                 `- error: value of type 'FileHandle' has no member 'readabilityHandler'
131 | 			stderrHandle.readabilityHandler = nil
132 | 			continuation.finish()
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:154:35: error: cannot infer type of closure parameter '_' without a type annotation
152 | 			// If the process already exited between our check and setting the handler,
153 | 			// Foundation still calls the handler immediately.
154 | 			process.terminationHandler = { _ in
    |                                   `- error: cannot infer type of closure parameter '_' without a type annotation
155 | 				cont.resume()
156 | 			}
[30/157] Compiling ArgumentParser Foundation.swift
[31/157] Compiling ArgumentParser Mutex.swift
[32/157] Compiling ArgumentParser Platform.swift
[33/157] Compiling ArgumentParser SequenceExtensions.swift
[34/157] Compiling ArgumentParser StringExtensions.swift
[35/157] Compiling ArgumentParser SwiftExtensions.swift
[36/163] Compiling ArgumentParser InputKey.swift
[37/163] Compiling ArgumentParser DumpHelpGenerator.swift
[38/163] Compiling ArgumentParser HelpCommand.swift
[39/163] Compiling ArgumentParser HelpGenerator.swift
[40/163] Compiling ArgumentParser MessageInfo.swift
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:17:23: error: cannot find type 'Process' in scope
 15 | 	let messages: AsyncStream<Data>
 16 |
 17 | 	private let process: Process
    |                       `- error: cannot find type 'Process' in scope
 18 | 	private let stdinHandle: FileHandle
 19 | 	private let stdoutHandle: FileHandle
[41/163] Compiling ArgumentParser UsageGenerator.swift
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:17:23: error: cannot find type 'Process' in scope
 15 | 	let messages: AsyncStream<Data>
 16 |
 17 | 	private let process: Process
    |                       `- error: cannot find type 'Process' in scope
 18 | 	private let stdinHandle: FileHandle
 19 | 	private let stdoutHandle: FileHandle
[42/163] Compiling ArgumentParser CollectionExtensions.swift
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:17:23: error: cannot find type 'Process' in scope
 15 | 	let messages: AsyncStream<Data>
 16 |
 17 | 	private let process: Process
    |                       `- error: cannot find type 'Process' in scope
 18 | 	private let stdinHandle: FileHandle
 19 | 	private let stdoutHandle: FileHandle
[43/163] Compiling ArgumentParser InputOrigin.swift
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:17:23: error: cannot find type 'Process' in scope
 15 | 	let messages: AsyncStream<Data>
 16 |
 17 | 	private let process: Process
    |                       `- error: cannot find type 'Process' in scope
 18 | 	private let stdinHandle: FileHandle
 19 | 	private let stdoutHandle: FileHandle
[44/163] Compiling ArgumentParser Option.swift
[45/163] Compiling ArgumentParser OptionGroup.swift
[46/163] Compiling ArgumentParser BashCompletionsGenerator.swift
[47/163] Compiling ArgumentParser CompletionsGenerator.swift
[48/163] Compiling ArgumentParser FishCompletionsGenerator.swift
[49/163] Compiling ArgumentParser ArgumentDecoder.swift
[50/163] Compiling ArgumentParser ArgumentDefinition.swift
[51/163] Compiling ArgumentParser ArgumentSet.swift
[52/163] Compiling ArgumentParser CommandParser.swift
[53/163] Compiling ArgumentParser ArgumentVisibility.swift
[54/163] Compiling ArgumentParser CompletionKind.swift
[55/163] Compiling ArgumentParser Errors.swift
[56/163] Compiling ArgumentParser Flag.swift
[57/163] Compiling ArgumentParser NameSpecification.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[58/163] Emitting module Playwright
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:17:23: error: cannot find type 'Process' in scope
 15 | 	let messages: AsyncStream<Data>
 16 |
 17 | 	private let process: Process
    |                       `- error: cannot find type 'Process' in scope
 18 | 	private let stdinHandle: FileHandle
 19 | 	private let stdoutHandle: FileHandle
/host/spi-builder-workspace/src/core/Protocol/PlaywrightServer.swift:25:12: error: cannot find type 'Process' in scope
 23 |
 24 | 	private init(
 25 | 		process: Process,
    |            `- error: cannot find type 'Process' in scope
 26 | 		stdinHandle: FileHandle,
 27 | 		stdoutHandle: FileHandle,
[59/163] Compiling ArgumentParser ZshCompletionsGenerator.swift
[60/163] Compiling ArgumentParser Argument.swift
[61/163] Compiling ArgumentParser ArgumentDiscussion.swift
[62/163] Compiling ArgumentParser ArgumentHelp.swift
[63/163] Compiling ArgumentParser ParsableCommand.swift
[70/163] Emitting module ArgumentParser
BUILD FAILURE 6.2 wasm