Build Information
Failed to build DependencyInjectorObjectMapper, reference master (7a5335), with Swift 6.3 for Wasm on 10 Apr 2026 19:25:11 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>&1Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Digipolitan/dependency-injector-object-mapper.git
Reference: master
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/Digipolitan/dependency-injector-object-mapper
* branch master -> FETCH_HEAD
* [new branch] master -> origin/master
HEAD is now at 7a5335d Merge branch 'release/1.0.6'
Cloned https://github.com/Digipolitan/dependency-injector-object-mapper.git
Revision (git rev-parse @):
7a5335dfcf6c94b0ae31b773d640331da28eee9c
SUCCESS checkout https://github.com/Digipolitan/dependency-injector-object-mapper.git at master
========================================
Build
========================================
Selected platform: wasm
Swift version: 6.3
Building package at path: $PWD
https://github.com/Digipolitan/dependency-injector-object-mapper.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
Fetching https://github.com/Digipolitan/dependency-injector.git
Fetching https://github.com/Hearst-DD/ObjectMapper.git
[1/748] Fetching dependency-injector
Fetched https://github.com/Digipolitan/dependency-injector.git from cache (0.26s)
[1/6334] Fetching objectmapper
Fetched https://github.com/Hearst-DD/ObjectMapper.git from cache (0.93s)
Computing version for https://github.com/Digipolitan/dependency-injector.git
Computed https://github.com/Digipolitan/dependency-injector.git at 2.2.1 (3.35s)
Computing version for https://github.com/Hearst-DD/ObjectMapper.git
Computed https://github.com/Hearst-DD/ObjectMapper.git at 3.5.3 (2.69s)
Creating working copy for https://github.com/Digipolitan/dependency-injector.git
Working copy of https://github.com/Digipolitan/dependency-injector.git resolved at 2.2.1
Creating working copy for https://github.com/Hearst-DD/ObjectMapper.git
Working copy of https://github.com/Hearst-DD/ObjectMapper.git resolved at 3.5.3
Building for debugging...
[0/4] Write sources
[3/4] Write swift-version-24593BA9C3E375BF.txt
[5/32] Emitting module ObjectMapper
[6/35] Compiling DependencyInjector Injector.swift
[7/35] Compiling DependencyInjector Module.swift
[8/35] Emitting module DependencyInjector
[9/35] Compiling DependencyInjector Injectable.swift
[10/35] Compiling DependencyInjector Binder.swift
[11/35] Compiling DependencyInjector Provider.swift
[13/36] Compiling ObjectMapper DateFormatterTransform.swift
[14/36] Compiling ObjectMapper DateTransform.swift
[15/36] Compiling ObjectMapper DictionaryTransform.swift
[16/36] Compiling ObjectMapper HexColorTransform.swift
[17/36] Compiling ObjectMapper ISO8601DateTransform.swift
[18/36] Compiling ObjectMapper ImmutableMappable.swift
[19/36] Compiling ObjectMapper IntegerOperators.swift
[20/36] Compiling ObjectMapper Map.swift
[21/36] Compiling ObjectMapper MapError.swift
[22/36] Compiling ObjectMapper TransformOperators.swift
[23/36] Compiling ObjectMapper TransformType.swift
[24/36] Compiling ObjectMapper URLTransform.swift
[25/36] Compiling ObjectMapper CodableTransform.swift
[26/36] Compiling ObjectMapper CustomDateFormatTransform.swift
[27/36] Compiling ObjectMapper DataTransform.swift
[28/36] Compiling ObjectMapper EnumOperators.swift
[29/36] Compiling ObjectMapper EnumTransform.swift
[30/36] Compiling ObjectMapper FromJSON.swift
[31/36] Compiling ObjectMapper Operators.swift
[32/36] Compiling ObjectMapper ToJSON.swift
[33/36] Compiling ObjectMapper TransformOf.swift
[34/36] Compiling ObjectMapper Mappable.swift
/host/spi-builder-workspace/.build/checkouts/ObjectMapper/Sources/Mapper.swift:118:20: error: cannot find type 'NSException' in scope
116 | #if DEBUG
117 | #if !os(Linux)
118 | let exception: NSException
| `- error: cannot find type 'NSException' in scope
119 | if let mapError = error as? MapError {
120 | exception = NSException(name: .init(rawValue: "MapError"), reason: mapError.description, userInfo: nil)
/host/spi-builder-workspace/.build/checkouts/ObjectMapper/Sources/Mapper.swift:120:18: error: cannot find 'NSException' in scope
118 | let exception: NSException
119 | if let mapError = error as? MapError {
120 | exception = NSException(name: .init(rawValue: "MapError"), reason: mapError.description, userInfo: nil)
| `- error: cannot find 'NSException' in scope
121 | } else {
122 | exception = NSException(name: .init(rawValue: "ImmutableMappableError"), reason: error.localizedDescription, userInfo: nil)
/host/spi-builder-workspace/.build/checkouts/ObjectMapper/Sources/Mapper.swift:120:37: error: cannot infer contextual base in reference to member 'init'
118 | let exception: NSException
119 | if let mapError = error as? MapError {
120 | exception = NSException(name: .init(rawValue: "MapError"), reason: mapError.description, userInfo: nil)
| `- error: cannot infer contextual base in reference to member 'init'
121 | } else {
122 | exception = NSException(name: .init(rawValue: "ImmutableMappableError"), reason: error.localizedDescription, userInfo: nil)
/host/spi-builder-workspace/.build/checkouts/ObjectMapper/Sources/Mapper.swift:120:105: error: 'nil' requires a contextual type
118 | let exception: NSException
119 | if let mapError = error as? MapError {
120 | exception = NSException(name: .init(rawValue: "MapError"), reason: mapError.description, userInfo: nil)
| `- error: 'nil' requires a contextual type
121 | } else {
122 | exception = NSException(name: .init(rawValue: "ImmutableMappableError"), reason: error.localizedDescription, userInfo: nil)
/host/spi-builder-workspace/.build/checkouts/ObjectMapper/Sources/Mapper.swift:122:18: error: cannot find 'NSException' in scope
120 | exception = NSException(name: .init(rawValue: "MapError"), reason: mapError.description, userInfo: nil)
121 | } else {
122 | exception = NSException(name: .init(rawValue: "ImmutableMappableError"), reason: error.localizedDescription, userInfo: nil)
| `- error: cannot find 'NSException' in scope
123 | }
124 | exception.raise()
/host/spi-builder-workspace/.build/checkouts/ObjectMapper/Sources/Mapper.swift:122:37: error: cannot infer contextual base in reference to member 'init'
120 | exception = NSException(name: .init(rawValue: "MapError"), reason: mapError.description, userInfo: nil)
121 | } else {
122 | exception = NSException(name: .init(rawValue: "ImmutableMappableError"), reason: error.localizedDescription, userInfo: nil)
| `- error: cannot infer contextual base in reference to member 'init'
123 | }
124 | exception.raise()
/host/spi-builder-workspace/.build/checkouts/ObjectMapper/Sources/Mapper.swift:122:125: error: 'nil' requires a contextual type
120 | exception = NSException(name: .init(rawValue: "MapError"), reason: mapError.description, userInfo: nil)
121 | } else {
122 | exception = NSException(name: .init(rawValue: "ImmutableMappableError"), reason: error.localizedDescription, userInfo: nil)
| `- error: 'nil' requires a contextual type
123 | }
124 | exception.raise()
[35/36] Compiling ObjectMapper Mapper.swift
/host/spi-builder-workspace/.build/checkouts/ObjectMapper/Sources/Mapper.swift:118:20: error: cannot find type 'NSException' in scope
116 | #if DEBUG
117 | #if !os(Linux)
118 | let exception: NSException
| `- error: cannot find type 'NSException' in scope
119 | if let mapError = error as? MapError {
120 | exception = NSException(name: .init(rawValue: "MapError"), reason: mapError.description, userInfo: nil)
/host/spi-builder-workspace/.build/checkouts/ObjectMapper/Sources/Mapper.swift:120:18: error: cannot find 'NSException' in scope
118 | let exception: NSException
119 | if let mapError = error as? MapError {
120 | exception = NSException(name: .init(rawValue: "MapError"), reason: mapError.description, userInfo: nil)
| `- error: cannot find 'NSException' in scope
121 | } else {
122 | exception = NSException(name: .init(rawValue: "ImmutableMappableError"), reason: error.localizedDescription, userInfo: nil)
/host/spi-builder-workspace/.build/checkouts/ObjectMapper/Sources/Mapper.swift:120:37: error: cannot infer contextual base in reference to member 'init'
118 | let exception: NSException
119 | if let mapError = error as? MapError {
120 | exception = NSException(name: .init(rawValue: "MapError"), reason: mapError.description, userInfo: nil)
| `- error: cannot infer contextual base in reference to member 'init'
121 | } else {
122 | exception = NSException(name: .init(rawValue: "ImmutableMappableError"), reason: error.localizedDescription, userInfo: nil)
/host/spi-builder-workspace/.build/checkouts/ObjectMapper/Sources/Mapper.swift:120:105: error: 'nil' requires a contextual type
118 | let exception: NSException
119 | if let mapError = error as? MapError {
120 | exception = NSException(name: .init(rawValue: "MapError"), reason: mapError.description, userInfo: nil)
| `- error: 'nil' requires a contextual type
121 | } else {
122 | exception = NSException(name: .init(rawValue: "ImmutableMappableError"), reason: error.localizedDescription, userInfo: nil)
/host/spi-builder-workspace/.build/checkouts/ObjectMapper/Sources/Mapper.swift:122:18: error: cannot find 'NSException' in scope
120 | exception = NSException(name: .init(rawValue: "MapError"), reason: mapError.description, userInfo: nil)
121 | } else {
122 | exception = NSException(name: .init(rawValue: "ImmutableMappableError"), reason: error.localizedDescription, userInfo: nil)
| `- error: cannot find 'NSException' in scope
123 | }
124 | exception.raise()
/host/spi-builder-workspace/.build/checkouts/ObjectMapper/Sources/Mapper.swift:122:37: error: cannot infer contextual base in reference to member 'init'
120 | exception = NSException(name: .init(rawValue: "MapError"), reason: mapError.description, userInfo: nil)
121 | } else {
122 | exception = NSException(name: .init(rawValue: "ImmutableMappableError"), reason: error.localizedDescription, userInfo: nil)
| `- error: cannot infer contextual base in reference to member 'init'
123 | }
124 | exception.raise()
/host/spi-builder-workspace/.build/checkouts/ObjectMapper/Sources/Mapper.swift:122:125: error: 'nil' requires a contextual type
120 | exception = NSException(name: .init(rawValue: "MapError"), reason: mapError.description, userInfo: nil)
121 | } else {
122 | exception = NSException(name: .init(rawValue: "ImmutableMappableError"), reason: error.localizedDescription, userInfo: nil)
| `- error: 'nil' requires a contextual type
123 | }
124 | exception.raise()
[36/36] Compiling ObjectMapper NSDecimalNumberTransform.swift
/host/spi-builder-workspace/.build/checkouts/ObjectMapper/Sources/Mapper.swift:118:20: error: cannot find type 'NSException' in scope
116 | #if DEBUG
117 | #if !os(Linux)
118 | let exception: NSException
| `- error: cannot find type 'NSException' in scope
119 | if let mapError = error as? MapError {
120 | exception = NSException(name: .init(rawValue: "MapError"), reason: mapError.description, userInfo: nil)
/host/spi-builder-workspace/.build/checkouts/ObjectMapper/Sources/Mapper.swift:120:18: error: cannot find 'NSException' in scope
118 | let exception: NSException
119 | if let mapError = error as? MapError {
120 | exception = NSException(name: .init(rawValue: "MapError"), reason: mapError.description, userInfo: nil)
| `- error: cannot find 'NSException' in scope
121 | } else {
122 | exception = NSException(name: .init(rawValue: "ImmutableMappableError"), reason: error.localizedDescription, userInfo: nil)
/host/spi-builder-workspace/.build/checkouts/ObjectMapper/Sources/Mapper.swift:120:37: error: cannot infer contextual base in reference to member 'init'
118 | let exception: NSException
119 | if let mapError = error as? MapError {
120 | exception = NSException(name: .init(rawValue: "MapError"), reason: mapError.description, userInfo: nil)
| `- error: cannot infer contextual base in reference to member 'init'
121 | } else {
122 | exception = NSException(name: .init(rawValue: "ImmutableMappableError"), reason: error.localizedDescription, userInfo: nil)
/host/spi-builder-workspace/.build/checkouts/ObjectMapper/Sources/Mapper.swift:120:105: error: 'nil' requires a contextual type
118 | let exception: NSException
119 | if let mapError = error as? MapError {
120 | exception = NSException(name: .init(rawValue: "MapError"), reason: mapError.description, userInfo: nil)
| `- error: 'nil' requires a contextual type
121 | } else {
122 | exception = NSException(name: .init(rawValue: "ImmutableMappableError"), reason: error.localizedDescription, userInfo: nil)
/host/spi-builder-workspace/.build/checkouts/ObjectMapper/Sources/Mapper.swift:122:18: error: cannot find 'NSException' in scope
120 | exception = NSException(name: .init(rawValue: "MapError"), reason: mapError.description, userInfo: nil)
121 | } else {
122 | exception = NSException(name: .init(rawValue: "ImmutableMappableError"), reason: error.localizedDescription, userInfo: nil)
| `- error: cannot find 'NSException' in scope
123 | }
124 | exception.raise()
/host/spi-builder-workspace/.build/checkouts/ObjectMapper/Sources/Mapper.swift:122:37: error: cannot infer contextual base in reference to member 'init'
120 | exception = NSException(name: .init(rawValue: "MapError"), reason: mapError.description, userInfo: nil)
121 | } else {
122 | exception = NSException(name: .init(rawValue: "ImmutableMappableError"), reason: error.localizedDescription, userInfo: nil)
| `- error: cannot infer contextual base in reference to member 'init'
123 | }
124 | exception.raise()
/host/spi-builder-workspace/.build/checkouts/ObjectMapper/Sources/Mapper.swift:122:125: error: 'nil' requires a contextual type
120 | exception = NSException(name: .init(rawValue: "MapError"), reason: mapError.description, userInfo: nil)
121 | } else {
122 | exception = NSException(name: .init(rawValue: "ImmutableMappableError"), reason: error.localizedDescription, userInfo: nil)
| `- error: 'nil' requires a contextual type
123 | }
124 | exception.raise()
BUILD FAILURE 6.3 wasm