The Swift Package Index logo.Swift Package Index

Build Information

Failed to build Tablier, reference 0.5.2 (696233), with Swift 6.3 for Wasm on 13 Apr 2026 08:18:46 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/akkyie/Tablier.git
Reference: 0.5.2
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/akkyie/Tablier
 * tag               0.5.2      -> FETCH_HEAD
HEAD is now at 6962332 Merge pull request #48 from akkyie/enable_testing_search_path
Cloned https://github.com/akkyie/Tablier.git
Revision (git rev-parse @):
69623325444b7e1a5b95cba805e7cdeb6b2e7e0b
SUCCESS checkout https://github.com/akkyie/Tablier.git at 0.5.2
========================================
Build
========================================
Selected platform:         wasm
Swift version:             6.3
Building package at path:  $PWD
https://github.com/akkyie/Tablier.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/10] Emitting module Tablier
/host/spi-builder-workspace/Sources/Tablier/AsyncRecipe.swift:38:34: error: cannot find type 'XCTestCaseProtocol' in scope
36 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
37 | extension AsyncRecipe {
38 |     public func assert<TestCase: XCTestCaseProtocol>(
   |                                  `- error: cannot find type 'XCTestCaseProtocol' in scope
39 |         with testCase: TestCase, file: StaticString = #file, line: UInt = #line,
40 |         assertion makeTestCases: (_ asserter: Expecter<Input, Output>) -> Void
/host/spi-builder-workspace/Sources/Tablier/AsyncRecipe.swift:45:34: error: cannot find type 'XCTestCaseProtocol' in scope
43 |     }
44 |
45 |     public func assert<TestCase: XCTestCaseProtocol>(
   |                                  `- error: cannot find type 'XCTestCaseProtocol' in scope
46 |         with tester: Tester<TestCase>, file: StaticString = #file, line: UInt = #line,
47 |         assertion makeTestCases: (_ asserter: Expecter<Input, Output>) -> Void
/host/spi-builder-workspace/Sources/Tablier/XCTest.swift:39:29: error: cannot find type 'XCTestCaseProtocol' in scope
 37 | #endif
 38 |
 39 | open class Tester<TestCase: XCTestCaseProtocol> {
    |                             `- error: cannot find type 'XCTestCaseProtocol' in scope
 40 |     let fail: (_ message: String, _ file: StaticString, _ line: UInt) -> Void
 41 |
/host/spi-builder-workspace/Sources/Tablier/Recipe.swift:70:34: error: cannot find type 'XCTestCaseProtocol' in scope
 68 |
 69 | extension Recipe {
 70 |     public func assert<TestCase: XCTestCaseProtocol>(
    |                                  `- error: cannot find type 'XCTestCaseProtocol' in scope
 71 |         with testCase: TestCase, file: StaticString = #file, line: UInt = #line,
 72 |         assertion makeTestCases: (_ asserter: Expecter<Input, Output>) -> Void
/host/spi-builder-workspace/Sources/Tablier/Recipe.swift:77:34: error: cannot find type 'XCTestCaseProtocol' in scope
 75 |     }
 76 |
 77 |     public func assert<TestCase: XCTestCaseProtocol>(
    |                                  `- error: cannot find type 'XCTestCaseProtocol' in scope
 78 |         with tester: Tester<TestCase>, file: StaticString = #file, line: UInt = #line,
 79 |         assertion makeTestCases: (_ asserter: Expecter<Input, Output>) -> Void
/host/spi-builder-workspace/Sources/Tablier/XCTest.swift:3:23: error: cannot find type 'XCTestCaseProtocol' in scope
  1 | import XCTest
  2 |
  3 | extension XCTestCase: XCTestCaseProtocol {}
    |                       `- error: cannot find type 'XCTestCaseProtocol' in scope
  4 |
  5 | extension XCTestExpectation: XCTestExpectationProtocol {}
/host/spi-builder-workspace/Sources/Tablier/XCTest.swift:5:11: error: cannot find type 'XCTestExpectation' in scope
  3 | extension XCTestCase: XCTestCaseProtocol {}
  4 |
  5 | extension XCTestExpectation: XCTestExpectationProtocol {}
    |           `- error: cannot find type 'XCTestExpectation' in scope
  6 |
  7 | #if os(Linux)
/host/spi-builder-workspace/Sources/Tablier/XCTest.swift:42:42: error: 'ExpectationType' is not a member type of type 'TestCase'
 40 |     let fail: (_ message: String, _ file: StaticString, _ line: UInt) -> Void
 41 |
 42 |     let wait: (_ expectations: [TestCase.ExpectationType], _ timeout: TimeInterval, _ enforceOrder: Bool,
    |                                          `- error: 'ExpectationType' is not a member type of type 'TestCase'
 43 |                _ file: StaticString, _ line: UInt) -> Void
 44 |
/host/spi-builder-workspace/Sources/Tablier/XCTest.swift:45:89: error: 'ExpectationType' is not a member type of type 'TestCase'
 43 |                _ file: StaticString, _ line: UInt) -> Void
 44 |
 45 |     let expect: (_ description: String, _ file: StaticString, _ line: UInt) -> TestCase.ExpectationType?
    |                                                                                         `- error: 'ExpectationType' is not a member type of type 'TestCase'
 46 |
 47 |     let fulfill: (_ expectation: TestCase.ExpectationType, _ file: StaticString, _ line: UInt) -> Void
/host/spi-builder-workspace/Sources/Tablier/XCTest.swift:47:43: error: 'ExpectationType' is not a member type of type 'TestCase'
 45 |     let expect: (_ description: String, _ file: StaticString, _ line: UInt) -> TestCase.ExpectationType?
 46 |
 47 |     let fulfill: (_ expectation: TestCase.ExpectationType, _ file: StaticString, _ line: UInt) -> Void
    |                                           `- error: 'ExpectationType' is not a member type of type 'TestCase'
 48 |
 49 |     init(_ testCase: TestCase, fail: @escaping (String, StaticString, UInt) -> Void = XCTFail) {
[4/11] Compiling Tablier When.swift
[5/11] Compiling Tablier TestCase.swift
[6/11] Compiling Tablier Expect.swift
[7/11] Compiling Tablier Expecter.swift
[8/11] Compiling Tablier XCTest.swift
/host/spi-builder-workspace/Sources/Tablier/XCTest.swift:3:23: error: cannot find type 'XCTestCaseProtocol' in scope
  1 | import XCTest
  2 |
  3 | extension XCTestCase: XCTestCaseProtocol {}
    |                       `- error: cannot find type 'XCTestCaseProtocol' in scope
  4 |
  5 | extension XCTestExpectation: XCTestExpectationProtocol {}
/host/spi-builder-workspace/Sources/Tablier/XCTest.swift:5:11: error: cannot find type 'XCTestExpectation' in scope
  3 | extension XCTestCase: XCTestCaseProtocol {}
  4 |
  5 | extension XCTestExpectation: XCTestExpectationProtocol {}
    |           `- error: cannot find type 'XCTestExpectation' in scope
  6 |
  7 | #if os(Linux)
/host/spi-builder-workspace/Sources/Tablier/XCTest.swift:39:29: error: cannot find type 'XCTestCaseProtocol' in scope
 37 | #endif
 38 |
 39 | open class Tester<TestCase: XCTestCaseProtocol> {
    |                             `- error: cannot find type 'XCTestCaseProtocol' in scope
 40 |     let fail: (_ message: String, _ file: StaticString, _ line: UInt) -> Void
 41 |
/host/spi-builder-workspace/Sources/Tablier/XCTest.swift:42:42: error: 'ExpectationType' is not a member type of type 'TestCase'
 40 |     let fail: (_ message: String, _ file: StaticString, _ line: UInt) -> Void
 41 |
 42 |     let wait: (_ expectations: [TestCase.ExpectationType], _ timeout: TimeInterval, _ enforceOrder: Bool,
    |                                          `- error: 'ExpectationType' is not a member type of type 'TestCase'
 43 |                _ file: StaticString, _ line: UInt) -> Void
 44 |
/host/spi-builder-workspace/Sources/Tablier/XCTest.swift:45:89: error: 'ExpectationType' is not a member type of type 'TestCase'
 43 |                _ file: StaticString, _ line: UInt) -> Void
 44 |
 45 |     let expect: (_ description: String, _ file: StaticString, _ line: UInt) -> TestCase.ExpectationType?
    |                                                                                         `- error: 'ExpectationType' is not a member type of type 'TestCase'
 46 |
 47 |     let fulfill: (_ expectation: TestCase.ExpectationType, _ file: StaticString, _ line: UInt) -> Void
/host/spi-builder-workspace/Sources/Tablier/XCTest.swift:47:43: error: 'ExpectationType' is not a member type of type 'TestCase'
 45 |     let expect: (_ description: String, _ file: StaticString, _ line: UInt) -> TestCase.ExpectationType?
 46 |
 47 |     let fulfill: (_ expectation: TestCase.ExpectationType, _ file: StaticString, _ line: UInt) -> Void
    |                                           `- error: 'ExpectationType' is not a member type of type 'TestCase'
 48 |
 49 |     init(_ testCase: TestCase, fail: @escaping (String, StaticString, UInt) -> Void = XCTFail) {
[9/11] Compiling Tablier AnyRecipe.swift
[10/11] Compiling Tablier AsyncRecipe.swift
/host/spi-builder-workspace/Sources/Tablier/AsyncRecipe.swift:38:34: error: cannot find type 'XCTestCaseProtocol' in scope
36 | @available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
37 | extension AsyncRecipe {
38 |     public func assert<TestCase: XCTestCaseProtocol>(
   |                                  `- error: cannot find type 'XCTestCaseProtocol' in scope
39 |         with testCase: TestCase, file: StaticString = #file, line: UInt = #line,
40 |         assertion makeTestCases: (_ asserter: Expecter<Input, Output>) -> Void
/host/spi-builder-workspace/Sources/Tablier/AsyncRecipe.swift:45:34: error: cannot find type 'XCTestCaseProtocol' in scope
43 |     }
44 |
45 |     public func assert<TestCase: XCTestCaseProtocol>(
   |                                  `- error: cannot find type 'XCTestCaseProtocol' in scope
46 |         with tester: Tester<TestCase>, file: StaticString = #file, line: UInt = #line,
47 |         assertion makeTestCases: (_ asserter: Expecter<Input, Output>) -> Void
/host/spi-builder-workspace/Sources/Tablier/XCTest.swift:39:29: error: cannot find type 'XCTestCaseProtocol' in scope
 37 | #endif
 38 |
 39 | open class Tester<TestCase: XCTestCaseProtocol> {
    |                             `- error: cannot find type 'XCTestCaseProtocol' in scope
 40 |     let fail: (_ message: String, _ file: StaticString, _ line: UInt) -> Void
 41 |
/host/spi-builder-workspace/Sources/Tablier/AsyncRecipe.swift:52:37: error: 'ExpectationType' is not a member type of type 'TestCase'
50 |         makeTestCases(expecter)
51 |
52 |         var expectations: [TestCase.ExpectationType] = []
   |                                     `- error: 'ExpectationType' is not a member type of type 'TestCase'
53 |
54 |         for testCase in testCases {
/host/spi-builder-workspace/Sources/Tablier/XCTest.swift:45:89: error: 'ExpectationType' is not a member type of type 'TestCase'
 43 |                _ file: StaticString, _ line: UInt) -> Void
 44 |
 45 |     let expect: (_ description: String, _ file: StaticString, _ line: UInt) -> TestCase.ExpectationType?
    |                                                                                         `- error: 'ExpectationType' is not a member type of type 'TestCase'
 46 |
 47 |     let fulfill: (_ expectation: TestCase.ExpectationType, _ file: StaticString, _ line: UInt) -> Void
/host/spi-builder-workspace/Sources/Tablier/XCTest.swift:47:43: error: 'ExpectationType' is not a member type of type 'TestCase'
 45 |     let expect: (_ description: String, _ file: StaticString, _ line: UInt) -> TestCase.ExpectationType?
 46 |
 47 |     let fulfill: (_ expectation: TestCase.ExpectationType, _ file: StaticString, _ line: UInt) -> Void
    |                                           `- error: 'ExpectationType' is not a member type of type 'TestCase'
 48 |
 49 |     init(_ testCase: TestCase, fail: @escaping (String, StaticString, UInt) -> Void = XCTFail) {
/host/spi-builder-workspace/Sources/Tablier/XCTest.swift:42:42: error: 'ExpectationType' is not a member type of type 'TestCase'
 40 |     let fail: (_ message: String, _ file: StaticString, _ line: UInt) -> Void
 41 |
 42 |     let wait: (_ expectations: [TestCase.ExpectationType], _ timeout: TimeInterval, _ enforceOrder: Bool,
    |                                          `- error: 'ExpectationType' is not a member type of type 'TestCase'
 43 |                _ file: StaticString, _ line: UInt) -> Void
 44 |
[11/11] Compiling Tablier Recipe.swift
/host/spi-builder-workspace/Sources/Tablier/Recipe.swift:70:34: error: cannot find type 'XCTestCaseProtocol' in scope
 68 |
 69 | extension Recipe {
 70 |     public func assert<TestCase: XCTestCaseProtocol>(
    |                                  `- error: cannot find type 'XCTestCaseProtocol' in scope
 71 |         with testCase: TestCase, file: StaticString = #file, line: UInt = #line,
 72 |         assertion makeTestCases: (_ asserter: Expecter<Input, Output>) -> Void
/host/spi-builder-workspace/Sources/Tablier/Recipe.swift:77:34: error: cannot find type 'XCTestCaseProtocol' in scope
 75 |     }
 76 |
 77 |     public func assert<TestCase: XCTestCaseProtocol>(
    |                                  `- error: cannot find type 'XCTestCaseProtocol' in scope
 78 |         with tester: Tester<TestCase>, file: StaticString = #file, line: UInt = #line,
 79 |         assertion makeTestCases: (_ asserter: Expecter<Input, Output>) -> Void
/host/spi-builder-workspace/Sources/Tablier/XCTest.swift:39:29: error: cannot find type 'XCTestCaseProtocol' in scope
 37 | #endif
 38 |
 39 | open class Tester<TestCase: XCTestCaseProtocol> {
    |                             `- error: cannot find type 'XCTestCaseProtocol' in scope
 40 |     let fail: (_ message: String, _ file: StaticString, _ line: UInt) -> Void
 41 |
/host/spi-builder-workspace/Sources/Tablier/Recipe.swift:84:37: error: 'ExpectationType' is not a member type of type 'TestCase'
 82 |         makeTestCases(expecter)
 83 |
 84 |         var expectations: [TestCase.ExpectationType] = []
    |                                     `- error: 'ExpectationType' is not a member type of type 'TestCase'
 85 |
 86 |         for testCase in testCases {
/host/spi-builder-workspace/Sources/Tablier/XCTest.swift:45:89: error: 'ExpectationType' is not a member type of type 'TestCase'
 43 |                _ file: StaticString, _ line: UInt) -> Void
 44 |
 45 |     let expect: (_ description: String, _ file: StaticString, _ line: UInt) -> TestCase.ExpectationType?
    |                                                                                         `- error: 'ExpectationType' is not a member type of type 'TestCase'
 46 |
 47 |     let fulfill: (_ expectation: TestCase.ExpectationType, _ file: StaticString, _ line: UInt) -> Void
/host/spi-builder-workspace/Sources/Tablier/XCTest.swift:47:43: error: 'ExpectationType' is not a member type of type 'TestCase'
 45 |     let expect: (_ description: String, _ file: StaticString, _ line: UInt) -> TestCase.ExpectationType?
 46 |
 47 |     let fulfill: (_ expectation: TestCase.ExpectationType, _ file: StaticString, _ line: UInt) -> Void
    |                                           `- error: 'ExpectationType' is not a member type of type 'TestCase'
 48 |
 49 |     init(_ testCase: TestCase, fail: @escaping (String, StaticString, UInt) -> Void = XCTFail) {
/host/spi-builder-workspace/Sources/Tablier/XCTest.swift:42:42: error: 'ExpectationType' is not a member type of type 'TestCase'
 40 |     let fail: (_ message: String, _ file: StaticString, _ line: UInt) -> Void
 41 |
 42 |     let wait: (_ expectations: [TestCase.ExpectationType], _ timeout: TimeInterval, _ enforceOrder: Bool,
    |                                          `- error: 'ExpectationType' is not a member type of type 'TestCase'
 43 |                _ file: StaticString, _ line: UInt) -> Void
 44 |
BUILD FAILURE 6.3 wasm