The Swift Package Index logo.Swift Package Index

Build Information

Failed to build Playwright, reference v0.1.0 (05e121), with Swift 6.3 for Wasm on 13 Apr 2026 19:32:31 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/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.3-latest swift build --swift-sdk swift-6.3-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: v0.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/m1guelpf/swift-playwright
 * tag               v0.1.0     -> FETCH_HEAD
HEAD is now at 05e1213 Update README
Cloned https://github.com/m1guelpf/swift-playwright.git
Revision (git rev-parse @):
05e12135b164277ec4984dacd1474ea578c876f0
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/m1guelpf/swift-playwright.git at v0.1.0
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/m1guelpf/swift-playwright.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/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.3-latest swift build --swift-sdk swift-6.3-RELEASE_wasm 2>&1
wasm-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:d69f4e7582c319245442d62a08b2d7c7fd5a0c0c69f5d2ef11d1530cd8d3329b
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:wasm-6.3-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 (0.88s)
Computing version for https://github.com/apple/swift-argument-parser
Computed https://github.com/apple/swift-argument-parser at 1.7.1 (1.77s)
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] Copying drivers
[4/23] Write sources
[12/23] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[14/59] 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,
[15/63] Emitting module ArgumentParserToolInfo
[16/63] Compiling ArgumentParserToolInfo ToolInfo.swift
[17/64] Wrapping AST for ArgumentParserToolInfo for debugging
[19/110] Emitting module ArgumentParserToolInfo
[20/110] Compiling ArgumentParserToolInfo ToolInfo.swift
[21/111] Wrapping AST for ArgumentParserToolInfo for debugging
[23/157] Compiling ArgumentParser FishCompletionsGenerator.swift
[24/157] Compiling ArgumentParser ZshCompletionsGenerator.swift
[25/157] Compiling ArgumentParser Argument.swift
[26/157] Compiling ArgumentParser ArgumentDiscussion.swift
[27/157] Compiling ArgumentParser ArgumentHelp.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 ArgumentParser ParentCommand.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 ArgumentParser AsyncParsableCommand.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 CommandConfiguration.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 | 			}
[31/157] Compiling ArgumentParser Option.swift
[32/157] Compiling ArgumentParser OptionGroup.swift
[33/157] Compiling ArgumentParser ParsableCommand.swift
[34/157] Compiling ArgumentParser ArgumentDecoder.swift
[35/157] Compiling ArgumentParser ArgumentDefinition.swift
[36/157] Emitting module ArgumentParser
[37/163] Compiling ArgumentParser Foundation.swift
[38/163] Compiling ArgumentParser Mutex.swift
[39/163] Compiling ArgumentParser Platform.swift
[40/163] Compiling ArgumentParser SequenceExtensions.swift
[41/163] Compiling ArgumentParser StringExtensions.swift
[42/163] Compiling ArgumentParser SwiftExtensions.swift
[43/169] Emitting module ArgumentParser
[44/169] Compiling ArgumentParser ParserError.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
[45/169] Compiling ArgumentParser SplitArguments.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
[46/169] Compiling ArgumentParser BashCompletionsGenerator.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
[47/169] Compiling ArgumentParser CompletionsGenerator.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
[48/169] Compiling ArgumentParser InputOrigin.swift
[49/169] Compiling ArgumentParser Name.swift
[50/169] Compiling ArgumentParser Parsed.swift
[51/169] Compiling ArgumentParser ParsedValues.swift
[52/169] Compiling ArgumentParser ArgumentVisibility.swift
[53/169] Compiling ArgumentParser CompletionKind.swift
[54/169] Compiling ArgumentParser Errors.swift
[55/169] Compiling ArgumentParser Flag.swift
[56/169] Compiling ArgumentParser NameSpecification.swift
[60/169] Compiling ArgumentParser CommandGroup.swift
[61/169] Compiling ArgumentParser EnumerableFlag.swift
[62/169] Compiling ArgumentParser ExpressibleByArgument.swift
[63/169] Compiling ArgumentParser ParsableArguments.swift
[64/169] Compiling ArgumentParser ArgumentSet.swift
[65/169] Compiling ArgumentParser CommandParser.swift
[66/169] Compiling ArgumentParser InputKey.swift
[67/169] Compiling ArgumentParser DumpHelpGenerator.swift
[68/169] Compiling ArgumentParser Tree.swift
[69/169] Compiling ArgumentParser CodingKeyValidator.swift
[70/169] Compiling ArgumentParser NonsenseFlagsValidator.swift
[71/169] Compiling ArgumentParser ParsableArgumentsValidation.swift
[72/169] Compiling ArgumentParser PositionalArgumentsValidator.swift
[73/169] Compiling ArgumentParser UniqueNamesValidator.swift
[74/169] Compiling ArgumentParser HelpCommand.swift
[75/169] Compiling ArgumentParser HelpGenerator.swift
[76/169] Compiling ArgumentParser MessageInfo.swift
[77/169] Compiling ArgumentParser UsageGenerator.swift
[78/169] Compiling ArgumentParser CollectionExtensions.swift
BUILD FAILURE 6.3 wasm