The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Failed to build MultipartFormDataParser, reference main (61e884), with Swift 6.1 for Wasm on 13 Dec 2025 01:37:13 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" 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.68.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 61e884e Merge pull request #110 from 417-72KI/renovate/major-6-artifact-actions
Cloned https://github.com/417-72KI/MultipartFormDataParser.git
Revision (git rev-parse @):
61e884e4eb7abdfef3ad530b7ed54ff4fc18adf4
SUCCESS checkout https://github.com/417-72KI/MultipartFormDataParser.git at main
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/417-72KI/MultipartFormDataParser.git
https://github.com/417-72KI/MultipartFormDataParser.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
  ],
  "manifest_display_name" : "MultipartFormDataParser",
  "name" : "MultipartFormDataParser",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "13.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "16.0"
    },
    {
      "name" : "ios",
      "version" : "16.0"
    },
    {
      "name" : "tvos",
      "version" : "16.0"
    }
  ],
  "products" : [
    {
      "name" : "MultipartFormDataParser",
      "targets" : [
        "MultipartFormDataParser"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "MultipartFormDataParserTests",
      "module_type" : "SwiftTarget",
      "name" : "MultipartFormDataParserTests",
      "path" : "Tests/MultipartFormDataParserTests",
      "sources" : [
        "MultipartFormDataParserTests.swift",
        "_Extension/NSImage+Util.swift",
        "_Extension/URLSession+Linux.swift",
        "_Extension/XCTest+Activity.swift",
        "_TestFunctions/TestFunction_APIKit.swift",
        "_TestFunctions/TestFunction_Alamofire.swift",
        "_TestFunctions/TestFunction_URLSession.swift",
        "_Util/Constants.swift",
        "_Util/LinuxImage.swift",
        "_Util/StubURLProtocol.swift",
        "_Util/TestEntity.swift",
        "_Util/TestResource.swift",
        "_Util/TestStub.swift"
      ],
      "target_dependencies" : [
        "MultipartFormDataParser"
      ],
      "type" : "test"
    },
    {
      "c99name" : "MultipartFormDataParser",
      "module_type" : "SwiftTarget",
      "name" : "MultipartFormDataParser",
      "path" : "Sources/MultipartFormDataParser",
      "product_memberships" : [
        "MultipartFormDataParser"
      ],
      "sources" : [
        "Error.swift",
        "Extensions/Data+Util.swift",
        "MultipartFormData+Sequence.swift",
        "MultipartFormData.swift",
        "MultipartFormDataParser.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.10"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" 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:dbcbf45695e2d1afcaee9a5a93239e71a6cc4a5872f338d6e993e9ceefe7df1b
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/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
[4/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 |     }
[5/8] Compiling MultipartFormDataParser MultipartFormData+Sequence.swift
[6/8] Compiling MultipartFormDataParser Error.swift
error: emit-module command failed with exit code 1 (use -v to see invocation)
[7/8] Compiling MultipartFormDataParser Data+Util.swift
[8/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
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-3":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" 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:dbcbf45695e2d1afcaee9a5a93239e71a6cc4a5872f338d6e993e9ceefe7df1b
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/7] Compiling MultipartFormDataParser MultipartFormData+Sequence.swift
[3/7] 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
[4/7] 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 |     }
error: emit-module command failed with exit code 1 (use -v to see invocation)
[5/7] Compiling MultipartFormDataParser Data+Util.swift
[6/7] 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
[7/7] Compiling MultipartFormDataParser Error.swift
BUILD FAILURE 6.1 wasm