The Swift Package Index logo.Swift Package Index

Build Information

Failed to build Tuxedo, reference master (a25b26), with Swift 6.3 for Wasm on 10 Apr 2026 12:52:01 UTC.

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-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/tevelee/Tuxedo.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/tevelee/Tuxedo
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at a25b263 Merge pull request #13 from tevelee/dependabot/npm_and_yarn/website/bl-1.2.3
Cloned https://github.com/tevelee/Tuxedo.git
Revision (git rev-parse @):
a25b263e76b5a39189d93ce4226a81db066091a7
SUCCESS checkout https://github.com/tevelee/Tuxedo.git at master
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/tevelee/Tuxedo.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-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/tevelee/Eval
[1/82718] Fetching eval
Fetched https://github.com/tevelee/Eval from cache (12.05s)
Computing version for https://github.com/tevelee/Eval
Computed https://github.com/tevelee/Eval at 1.5.0 (16.31s)
Creating working copy for https://github.com/tevelee/Eval
Working copy of https://github.com/tevelee/Eval resolved at 1.5.0
Building for debugging...
[0/3] Write sources
[2/3] Write swift-version-24593BA9C3E375BF.txt
[4/11] Compiling Eval Pattern.swift
[5/12] Emitting module Eval
[6/12] Compiling Eval Common.swift
[7/12] Compiling Eval MatchResult.swift
[8/12] Compiling Eval Matcher.swift
[9/12] Compiling Eval TemplateInterpreter.swift
[10/12] Compiling Eval Elements.swift
[11/12] Compiling Eval TypedInterpreter.swift
[12/12] Compiling Eval Utils.swift
[14/21] Emitting module Tuxedo
/host/spi-builder-workspace/Sources/Tuxedo/Utils.swift:11:1: warning: extension declares a conformance of imported type 'Character' to imported protocol 'Strideable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 9 | }
10 |
11 | extension Character: Strideable {
   | |- warning: extension declares a conformance of imported type 'Character' to imported protocol 'Strideable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |     public typealias Stride = Int
13 |
[15/21] Compiling Tuxedo Generator.swift
/host/spi-builder-workspace/Sources/Tuxedo/Generator.swift:58:29: warning: result of call to 'fileExists(atPath:isDirectory:)' is unused [#no-usage]
56 |                 let filePath = "\(path)/\(file)"
57 |                 var isDirectory: ObjCBool = false
58 |                 fileManager.fileExists(atPath: filePath, isDirectory: &isDirectory)
   |                             `- warning: result of call to 'fileExists(atPath:isDirectory:)' is unused [#no-usage]
59 |                 if isDirectory.boolValue {
60 |                     return self.files(with: fileExtension, in: filePath, using: fileManager)
[16/22] Compiling Tuxedo Tuxedo.swift
[17/22] Compiling Tuxedo StandardLibrary_DataTypes.swift
[18/22] Compiling Tuxedo ContextExtensions.swift
[19/22] Compiling Tuxedo StandardLibrary.swift
[20/22] Compiling Tuxedo StandardLibrary_Tags.swift
[21/22] Compiling Tuxedo StandardLibrary_Functions.swift
/host/spi-builder-workspace/Sources/Tuxedo/StandardLibrary_Functions.swift:677:42: error: cannot find 'Selector' in scope
675 |             if let lhs = $0.variables["lhs"] as? NSObjectProtocol,
676 |                 let rhs = $0.variables["rhs"] as? String,
677 |                 let result = lhs.perform(Selector(rhs)) {
    |                                          `- error: cannot find 'Selector' in scope
678 |                 return Double(Int(bitPattern: result.toOpaque()))
679 |             }
/host/spi-builder-workspace/Sources/Tuxedo/StandardLibrary_Functions.swift:677:34: error: value of type 'any NSObjectProtocol' has no member 'perform'
675 |             if let lhs = $0.variables["lhs"] as? NSObjectProtocol,
676 |                 let rhs = $0.variables["rhs"] as? String,
677 |                 let result = lhs.perform(Selector(rhs)) {
    |                                  `- error: value of type 'any NSObjectProtocol' has no member 'perform'
678 |                 return Double(Int(bitPattern: result.toOpaque()))
679 |             }
[22/22] Compiling Tuxedo Utils.swift
/host/spi-builder-workspace/Sources/Tuxedo/Utils.swift:11:1: warning: extension declares a conformance of imported type 'Character' to imported protocol 'Strideable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
 9 | }
10 |
11 | extension Character: Strideable {
   | |- warning: extension declares a conformance of imported type 'Character' to imported protocol 'Strideable'; this will not behave correctly if the owners of 'Swift' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
12 |     public typealias Stride = Int
13 |
BUILD FAILURE 6.3 wasm