The Swift Package Index logo.Swift Package Index

Build Information

Failed to build RedUx, reference v1.0.0 (69f6e0), with Swift 6.3 for Wasm on 13 Apr 2026 07:35:04 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-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.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/reddavis/RedUx.git
Reference: v1.0.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/reddavis/RedUx
 * tag               v1.0.0     -> FETCH_HEAD
HEAD is now at 69f6e07 fix: no compiler error on <Xcode 13.4 (#36)
Cloned https://github.com/reddavis/RedUx.git
Revision (git rev-parse @):
69f6e076e5dbe1ebc66154d54fdab90f16d310ec
SUCCESS checkout https://github.com/reddavis/RedUx.git at v1.0.0
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/reddavis/RedUx.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-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.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/reddavis/Asynchrone
[1/4328] Fetching asynchrone
Fetched https://github.com/reddavis/Asynchrone from cache (2.49s)
Computing version for https://github.com/reddavis/Asynchrone
Computed https://github.com/reddavis/Asynchrone at 0.22.0 (3.35s)
Creating working copy for https://github.com/reddavis/Asynchrone
Working copy of https://github.com/reddavis/Asynchrone resolved at 0.22.0
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-24593BA9C3E375BF.txt
[4/33] Emitting module Asynchrone
[5/37] Compiling Asynchrone AsyncSequenceCompletion.swift
[6/37] Compiling Asynchrone CatchErrorAsyncSequence.swift
[7/37] Compiling Asynchrone ChainAsyncSequenceable.swift
[8/37] Compiling Asynchrone CombineLatest3AsyncSequence.swift
[9/37] Compiling Asynchrone Empty.swift
[10/37] Compiling Asynchrone Fail.swift
[11/37] Compiling Asynchrone Just.swift
[12/37] Compiling Asynchrone Merge3AsyncSequence.swift
[13/37] Compiling Asynchrone Task+Extension.swift
[14/37] Compiling Asynchrone TimeInterval+Extension.swift
[15/37] Compiling Asynchrone AnyAsyncSequenceable.swift
[16/37] Compiling Asynchrone AnyThrowingAsyncSequenceable.swift
[17/37] Compiling Asynchrone MergeAsyncSequence.swift
/host/spi-builder-workspace/.build/checkouts/Asynchrone/Sources/Asynchrone/Sequences/NotificationCenterAsyncSequence.swift:70:53: error: no exact matches in call to instance method 'addObserver'
 68 |             self.iterator = self.passthroughAsyncSequence.makeAsyncIterator()
 69 |
 70 |             self.observer = self.notificationCenter.addObserver(
    |                                                     |- error: no exact matches in call to instance method 'addObserver'
    |                                                     |- note: found candidate with type '(Message.Subject?, Message.Type, @escaping @Sendable (Message) async -> Void) -> NotificationCenter.ObservationToken'
    |                                                     `- note: found candidate with type '(Message.Subject?, Message.Type, @escaping @MainActor (Message) -> Void) -> NotificationCenter.ObservationToken'
 71 |                 forName: notificationName,
 72 |                 object: object,
/host/spi-builder-workspace/.build/checkouts/Asynchrone/Sources/Asynchrone/Sequences/NotificationCenterAsyncSequence.swift:73:24: error: 'nil' requires a contextual type
 71 |                 forName: notificationName,
 72 |                 object: object,
 73 |                 queue: nil
    |                        `- error: 'nil' requires a contextual type
 74 |             ) { [passthroughAsyncSequence] notification in
 75 |                 passthroughAsyncSequence.yield(notification)
/host/spi-builder-workspace/.build/checkouts/Asynchrone/Sources/Asynchrone/Sequences/NotificationCenterAsyncSequence.swift:84:60: error: cannot convert value of type 'Any' to expected argument type 'NotificationCenter.ObservationToken'
 82 |             guard let value = await self.iterator.next() else {
 83 |                 if let observer = observer {
 84 |                     self.notificationCenter.removeObserver(observer)
    |                                                            `- error: cannot convert value of type 'Any' to expected argument type 'NotificationCenter.ObservationToken'
 85 |                 }
 86 |                 return nil
[18/37] Compiling Asynchrone NotificationCenterAsyncSequence.swift
/host/spi-builder-workspace/.build/checkouts/Asynchrone/Sources/Asynchrone/Sequences/NotificationCenterAsyncSequence.swift:70:53: error: no exact matches in call to instance method 'addObserver'
 68 |             self.iterator = self.passthroughAsyncSequence.makeAsyncIterator()
 69 |
 70 |             self.observer = self.notificationCenter.addObserver(
    |                                                     |- error: no exact matches in call to instance method 'addObserver'
    |                                                     |- note: found candidate with type '(Message.Subject?, Message.Type, @escaping @Sendable (Message) async -> Void) -> NotificationCenter.ObservationToken'
    |                                                     `- note: found candidate with type '(Message.Subject?, Message.Type, @escaping @MainActor (Message) -> Void) -> NotificationCenter.ObservationToken'
 71 |                 forName: notificationName,
 72 |                 object: object,
/host/spi-builder-workspace/.build/checkouts/Asynchrone/Sources/Asynchrone/Sequences/NotificationCenterAsyncSequence.swift:73:24: error: 'nil' requires a contextual type
 71 |                 forName: notificationName,
 72 |                 object: object,
 73 |                 queue: nil
    |                        `- error: 'nil' requires a contextual type
 74 |             ) { [passthroughAsyncSequence] notification in
 75 |                 passthroughAsyncSequence.yield(notification)
/host/spi-builder-workspace/.build/checkouts/Asynchrone/Sources/Asynchrone/Sequences/NotificationCenterAsyncSequence.swift:84:60: error: cannot convert value of type 'Any' to expected argument type 'NotificationCenter.ObservationToken'
 82 |             guard let value = await self.iterator.next() else {
 83 |                 if let observer = observer {
 84 |                     self.notificationCenter.removeObserver(observer)
    |                                                            `- error: cannot convert value of type 'Any' to expected argument type 'NotificationCenter.ObservationToken'
 85 |                 }
 86 |                 return nil
[19/37] Compiling Asynchrone PassthroughAsyncSequence.swift
/host/spi-builder-workspace/.build/checkouts/Asynchrone/Sources/Asynchrone/Sequences/NotificationCenterAsyncSequence.swift:70:53: error: no exact matches in call to instance method 'addObserver'
 68 |             self.iterator = self.passthroughAsyncSequence.makeAsyncIterator()
 69 |
 70 |             self.observer = self.notificationCenter.addObserver(
    |                                                     |- error: no exact matches in call to instance method 'addObserver'
    |                                                     |- note: found candidate with type '(Message.Subject?, Message.Type, @escaping @Sendable (Message) async -> Void) -> NotificationCenter.ObservationToken'
    |                                                     `- note: found candidate with type '(Message.Subject?, Message.Type, @escaping @MainActor (Message) -> Void) -> NotificationCenter.ObservationToken'
 71 |                 forName: notificationName,
 72 |                 object: object,
/host/spi-builder-workspace/.build/checkouts/Asynchrone/Sources/Asynchrone/Sequences/NotificationCenterAsyncSequence.swift:73:24: error: 'nil' requires a contextual type
 71 |                 forName: notificationName,
 72 |                 object: object,
 73 |                 queue: nil
    |                        `- error: 'nil' requires a contextual type
 74 |             ) { [passthroughAsyncSequence] notification in
 75 |                 passthroughAsyncSequence.yield(notification)
/host/spi-builder-workspace/.build/checkouts/Asynchrone/Sources/Asynchrone/Sequences/NotificationCenterAsyncSequence.swift:84:60: error: cannot convert value of type 'Any' to expected argument type 'NotificationCenter.ObservationToken'
 82 |             guard let value = await self.iterator.next() else {
 83 |                 if let observer = observer {
 84 |                     self.notificationCenter.removeObserver(observer)
    |                                                            `- error: cannot convert value of type 'Any' to expected argument type 'NotificationCenter.ObservationToken'
 85 |                 }
 86 |                 return nil
[20/37] Compiling Asynchrone RemoveDuplicatesAsyncSequence.swift
/host/spi-builder-workspace/.build/checkouts/Asynchrone/Sources/Asynchrone/Sequences/NotificationCenterAsyncSequence.swift:70:53: error: no exact matches in call to instance method 'addObserver'
 68 |             self.iterator = self.passthroughAsyncSequence.makeAsyncIterator()
 69 |
 70 |             self.observer = self.notificationCenter.addObserver(
    |                                                     |- error: no exact matches in call to instance method 'addObserver'
    |                                                     |- note: found candidate with type '(Message.Subject?, Message.Type, @escaping @Sendable (Message) async -> Void) -> NotificationCenter.ObservationToken'
    |                                                     `- note: found candidate with type '(Message.Subject?, Message.Type, @escaping @MainActor (Message) -> Void) -> NotificationCenter.ObservationToken'
 71 |                 forName: notificationName,
 72 |                 object: object,
/host/spi-builder-workspace/.build/checkouts/Asynchrone/Sources/Asynchrone/Sequences/NotificationCenterAsyncSequence.swift:73:24: error: 'nil' requires a contextual type
 71 |                 forName: notificationName,
 72 |                 object: object,
 73 |                 queue: nil
    |                        `- error: 'nil' requires a contextual type
 74 |             ) { [passthroughAsyncSequence] notification in
 75 |                 passthroughAsyncSequence.yield(notification)
/host/spi-builder-workspace/.build/checkouts/Asynchrone/Sources/Asynchrone/Sequences/NotificationCenterAsyncSequence.swift:84:60: error: cannot convert value of type 'Any' to expected argument type 'NotificationCenter.ObservationToken'
 82 |             guard let value = await self.iterator.next() else {
 83 |                 if let observer = observer {
 84 |                     self.notificationCenter.removeObserver(observer)
    |                                                            `- error: cannot convert value of type 'Any' to expected argument type 'NotificationCenter.ObservationToken'
 85 |                 }
 86 |                 return nil
[21/37] Compiling Asynchrone ThrowingPassthroughAsyncSequence.swift
[22/37] Compiling Asynchrone TimerAsyncSequence.swift
[23/37] Compiling Asynchrone Zip3AsyncSequence.swift
[24/37] Compiling Asynchrone ZipAsyncSequence.swift
[25/37] Compiling Asynchrone CombineLatestAsyncSequence.swift
[26/37] Compiling Asynchrone CurrentElementAsyncSequence.swift
[27/37] Compiling Asynchrone DebounceAsyncSequence.swift
[28/37] Compiling Asynchrone DelayAsyncSequence.swift
[29/37] Compiling Asynchrone ErrorMechanism.swift
[30/37] Compiling Asynchrone RethrowingAccessor.swift
[31/37] Compiling Asynchrone AsyncSequence+Extension.swift
[32/37] Compiling Asynchrone AsyncStream+Extension.swift
[33/37] Compiling Asynchrone AsyncThrowingStream+Extension.swift
[34/37] Compiling Asynchrone ReplaceErrorAsyncSequence.swift
[35/37] Compiling Asynchrone SequenceAsyncSequence.swift
[36/37] Compiling Asynchrone SharedAsyncSequence.swift
[37/37] Compiling Asynchrone ThrottleAsyncSequence.swift
BUILD FAILURE 6.3 wasm