Build Information
Failed to build Tablier, reference 0.5.2 (696233
), with Swift 6.1 for Android on 28 May 2025 09:01:08 UTC.
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.63.1
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: android
Swift version: 6.1
Building package at path: $PWD
https://github.com/akkyie/Tablier.git
https://github.com/akkyie/Tablier.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
],
"manifest_display_name" : "Tablier",
"name" : "Tablier",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "Tablier",
"targets" : [
"Tablier"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "TablierTests",
"module_type" : "SwiftTarget",
"name" : "TablierTests",
"path" : "Tests/TablierTests",
"sources" : [
"AsyncRecipeTests.swift",
"ExpectTests.swift",
"MockRecipe.swift",
"MockTest.swift",
"RecipeTests.swift",
"TesterTests.swift",
"WhenTests.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"Tablier"
],
"type" : "test"
},
{
"c99name" : "Tablier",
"module_type" : "SwiftTarget",
"name" : "Tablier",
"path" : "Sources/Tablier",
"product_memberships" : [
"Tablier"
],
"sources" : [
"AnyRecipe.swift",
"AsyncRecipe.swift",
"Expect.swift",
"Expecter.swift",
"Recipe.swift",
"TestCase.swift",
"When.swift",
"XCTest.swift"
],
"type" : "library"
}
],
"tools_version" : "5.0"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:fe1962677657b2408c217cb5cceb3c09bc1d91486e360cebbc6eee461a5945d8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/10] Compiling Tablier Expecter.swift
[4/10] Compiling Tablier TestCase.swift
[5/11] Compiling Tablier When.swift
[6/11] Compiling Tablier Expect.swift
[7/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 |
[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: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) {
error: emit-module command failed with exit code 1 (use -v to see invocation)
[9/11] Compiling Tablier AnyRecipe.swift
[10/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) {
[11/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 |
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:fe1962677657b2408c217cb5cceb3c09bc1d91486e360cebbc6eee461a5945d8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
[0/1] Planning build
Building for debugging...
[0/1] Write swift-version-24593BA9C3E375BF.txt
error: emit-module command failed with exit code 1 (use -v to see invocation)
[2/9] 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) {
[3/10] 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 |
[4/10] Compiling Tablier AnyRecipe.swift
[5/10] Compiling Tablier Expect.swift
[6/10] 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 |
[7/10] Compiling Tablier When.swift
[8/10] Compiling Tablier Expecter.swift
[9/10] Compiling Tablier TestCase.swift
[10/10] 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) {
BUILD FAILURE 6.1 android