Build Information
Failed to build Tablier, reference main (696233
), with Swift 6.2 (beta) for Android on 19 Jun 2025 16:12:15 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-2":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/akkyie/Tablier.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/akkyie/Tablier
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
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 main
========================================
Build
========================================
Selected platform: android
Swift version: 6.2
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" registry.gitlab.com/finestructure/spi-images:android-6.2-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:b7c4a6b4153ff40ef9277e2157e708f835b8eb011095d53bd8db4594eb2b7798
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.2-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-8C5A4AE7A8CE2BA.txt
[3/10] Compiling Tablier When.swift
[4/11] Compiling Tablier TestCase.swift
[5/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:30: error: cannot find type 'XCTestExpectationProtocol' in scope
3 | extension XCTestCase: XCTestCaseProtocol {}
4 |
5 | extension XCTestExpectation: XCTestExpectationProtocol {}
| `- error: cannot find type 'XCTestExpectationProtocol' 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) {
[6/11] Compiling Tablier Expecter.swift
[7/11] Compiling Tablier Expect.swift
[8/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 |
[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 |
error: emit-module command failed with exit code 1 (use -v to see invocation)
[11/11] 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:30: error: cannot find type 'XCTestExpectationProtocol' in scope
3 | extension XCTestCase: XCTestCaseProtocol {}
4 |
5 | extension XCTestExpectation: XCTestExpectationProtocol {}
| `- error: cannot find type 'XCTestExpectationProtocol' 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) {
BUILD FAILURE 6.2 android