The Swift Package Index logo.Swift Package Index

Build Information

Failed to build MultipartFormDataParser, reference main (7a57ca), with Swift 6.3 for Wasm on 2 May 2026 03:25:47 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/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/417-72KI/MultipartFormDataParser.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/417-72KI/MultipartFormDataParser
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 7a57ca7 Merge pull request #115 from 417-72KI/renovate/slidoapp-xcresulttool-3.x
Cloned https://github.com/417-72KI/MultipartFormDataParser.git
Revision (git rev-parse @):
7a57ca700ff9efad1d719e4cbc6aabce358c277c
SUCCESS checkout https://github.com/417-72KI/MultipartFormDataParser.git at main
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/417-72KI/MultipartFormDataParser.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/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
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[3/8] Emitting module MultipartFormDataParser
/host/spi-builder-workspace/Sources/MultipartFormDataParser/MultipartFormData.swift:18:37: error: cannot find type 'URLRequest' in scope
16 | // MARK: - Static functions
17 | public extension MultipartFormData {
18 |     static func parse(from request: URLRequest) throws -> Self {
   |                                     `- error: cannot find type 'URLRequest' in scope
19 |         try MultipartFormDataParser.parse(request)
20 |     }
/host/spi-builder-workspace/Sources/MultipartFormDataParser/MultipartFormDataParser.swift:58:34: error: cannot find type 'URLRequest' in scope
56 | // MARK: - Static functions
57 | extension MultipartFormDataParser {
58 |     static func parse(_ request: URLRequest) throws -> MultipartFormData {
   |                                  `- error: cannot find type 'URLRequest' in scope
59 |         guard let contentType = request.value(forHTTPHeaderField: "Content-Type") else {
60 |             throw MultipartFormDataError.noContentType
[4/8] Compiling MultipartFormDataParser Error.swift
[5/8] Compiling MultipartFormDataParser MultipartFormData+Sequence.swift
[6/8] Compiling MultipartFormDataParser Data+Util.swift
[7/8] Compiling MultipartFormDataParser MultipartFormDataParser.swift
/host/spi-builder-workspace/Sources/MultipartFormDataParser/MultipartFormDataParser.swift:58:34: error: cannot find type 'URLRequest' in scope
56 | // MARK: - Static functions
57 | extension MultipartFormDataParser {
58 |     static func parse(_ request: URLRequest) throws -> MultipartFormData {
   |                                  `- error: cannot find type 'URLRequest' in scope
59 |         guard let contentType = request.value(forHTTPHeaderField: "Content-Type") else {
60 |             throw MultipartFormDataError.noContentType
[8/8] Compiling MultipartFormDataParser MultipartFormData.swift
/host/spi-builder-workspace/Sources/MultipartFormDataParser/MultipartFormData.swift:18:37: error: cannot find type 'URLRequest' in scope
16 | // MARK: - Static functions
17 | public extension MultipartFormData {
18 |     static func parse(from request: URLRequest) throws -> Self {
   |                                     `- error: cannot find type 'URLRequest' in scope
19 |         try MultipartFormDataParser.parse(request)
20 |     }
/host/spi-builder-workspace/Sources/MultipartFormDataParser/MultipartFormDataParser.swift:58:34: error: cannot find type 'URLRequest' in scope
56 | // MARK: - Static functions
57 | extension MultipartFormDataParser {
58 |     static func parse(_ request: URLRequest) throws -> MultipartFormData {
   |                                  `- error: cannot find type 'URLRequest' in scope
59 |         guard let contentType = request.value(forHTTPHeaderField: "Content-Type") else {
60 |             throw MultipartFormDataError.noContentType
/host/spi-builder-workspace/Sources/MultipartFormDataParser/MultipartFormData.swift:19:37: error: 'parse' is inaccessible due to 'fileprivate' protection level
17 | public extension MultipartFormData {
18 |     static func parse(from request: URLRequest) throws -> Self {
19 |         try MultipartFormDataParser.parse(request)
   |                                     `- error: 'parse' is inaccessible due to 'fileprivate' protection level
20 |     }
21 | }
/host/spi-builder-workspace/Sources/MultipartFormDataParser/MultipartFormDataParser.swift:14:10: note: 'parse' declared here
12 | // MARK: - Functions
13 | private extension MultipartFormDataParser {
14 |     func parse(_ stream: InputStream) throws -> MultipartFormData {
   |          `- note: 'parse' declared here
15 |         try parse(extractData(from: stream))
16 |     }
BUILD FAILURE 6.3 wasm