Build Information
Successful build of ErrorAssertions, reference 0.4.0 (fe2b59), with Swift 6.1 for Android on 27 May 2025 14:48:43 UTC.
Swift 6 data race errors: 10
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/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>&1Build Log
========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/SlaunchaMan/ErrorAssertions.git
Reference: 0.4.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/SlaunchaMan/ErrorAssertions
* tag 0.4.0 -> FETCH_HEAD
HEAD is now at fe2b592 Bump version in podspec.
Cloned https://github.com/SlaunchaMan/ErrorAssertions.git
Revision (git rev-parse @):
fe2b592844372f361f2a33bbbce6a48481b6c79e
SUCCESS checkout https://github.com/SlaunchaMan/ErrorAssertions.git at 0.4.0
========================================
Build
========================================
Selected platform: android
Swift version: 6.1
Building package at path: $PWD
https://github.com/SlaunchaMan/ErrorAssertions.git
https://github.com/SlaunchaMan/ErrorAssertions.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
],
"manifest_display_name" : "ErrorAssertions",
"name" : "ErrorAssertions",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "ErrorAssertions",
"targets" : [
"ErrorAssertions"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "ErrorAssertionExpectations",
"targets" : [
"ErrorAssertionExpectations"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"4",
"4.2",
"5"
],
"targets" : [
{
"c99name" : "ErrorAssertionsTests",
"module_type" : "SwiftTarget",
"name" : "ErrorAssertionsTests",
"path" : "Tests/ErrorAssertionsTests",
"sources" : [
"AssertTests.swift",
"FatalErrorTests.swift",
"PreconditionTests.swift",
"TestError.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"ErrorAssertions",
"ErrorAssertionExpectations"
],
"type" : "test"
},
{
"c99name" : "ErrorAssertions",
"module_type" : "SwiftTarget",
"name" : "ErrorAssertions",
"path" : "Sources/ErrorAssertions",
"product_memberships" : [
"ErrorAssertions",
"ErrorAssertionExpectations"
],
"sources" : [
"AssertWrapper.swift",
"FatalErrorWrapper.swift",
"PreconditionWrapper.swift",
"Utilities/AnonymousError.swift",
"Utilities/RestorationHandler.swift"
],
"type" : "library"
},
{
"c99name" : "ErrorAssertionExpectations",
"module_type" : "SwiftTarget",
"name" : "ErrorAssertionExpectations",
"path" : "Sources/ErrorAssertionExpectations",
"product_memberships" : [
"ErrorAssertionExpectations"
],
"sources" : [
"AssertExpectations.swift",
"FatalErrorExpectations.swift",
"PreconditionExpectations.swift",
"Utilities/ClosureThread.swift",
"Utilities/Unreachable.swift"
],
"target_dependencies" : [
"ErrorAssertions"
],
"type" : "library"
}
],
"tools_version" : "5.1"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-2":/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/3] Write sources
[2/3] Write swift-version-24593BA9C3E375BF.txt
[4/9] Compiling ErrorAssertions RestorationHandler.swift
[5/9] Compiling ErrorAssertions AssertWrapper.swift
/host/spi-builder-workspace/Sources/ErrorAssertions/AssertWrapper.swift:96:25: warning: static property '_assertClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
94 | (Error, StaticString, UInt) -> ()
95 |
96 | internal static var _assertClosure: AssertClosure?
| |- warning: static property '_assertClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_assertClosure' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_assertClosure' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
97 |
98 | @usableFromInline internal static var assertClosure: AssertClosure {
/host/spi-builder-workspace/Sources/ErrorAssertions/AssertWrapper.swift:102:25: warning: static property '_assertionFailureClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
100 | }
101 |
102 | internal static var _assertionFailureClosure: AssertionFailureClosure?
| |- warning: static property '_assertionFailureClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_assertionFailureClosure' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_assertionFailureClosure' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
103 |
104 | @usableFromInline
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/ErrorAssertions/AssertWrapper.swift:109:24: warning: static property 'defaultAssertClosure' is not concurrency-safe because non-'Sendable' type '(Bool, any Error, StaticString, UInt) -> ()' may have shared mutable state; this is an error in the Swift 6 language mode
107 | }
108 |
109 | private static let defaultAssertClosure = {
| |- warning: static property 'defaultAssertClosure' is not concurrency-safe because non-'Sendable' type '(Bool, any Error, StaticString, UInt) -> ()' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultAssertClosure' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 | (condition: Bool, error: Error, file: StaticString, line: UInt) in
111 | Swift.assert(condition,
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/ErrorAssertions/AssertWrapper.swift:117:24: warning: static property 'defaultAssertionFailureClosure' is not concurrency-safe because non-'Sendable' type '(any Error, StaticString, UInt) -> ()' may have shared mutable state; this is an error in the Swift 6 language mode
115 | }
116 |
117 | private static let defaultAssertionFailureClosure = {
| |- warning: static property 'defaultAssertionFailureClosure' is not concurrency-safe because non-'Sendable' type '(any Error, StaticString, UInt) -> ()' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultAssertionFailureClosure' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
118 | (error: Error, file: StaticString, line: UInt) in
119 | Swift.assertionFailure(error.localizedDescription,
[6/9] Compiling ErrorAssertions AnonymousError.swift
[7/9] Compiling ErrorAssertions PreconditionWrapper.swift
/host/spi-builder-workspace/Sources/ErrorAssertions/PreconditionWrapper.swift:98:25: warning: static property '_preconditionClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
96 | (Error, StaticString, UInt) -> Never
97 |
98 | internal static var _preconditionClosure: PreconditionClosure?
| |- warning: static property '_preconditionClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_preconditionClosure' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_preconditionClosure' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
99 |
100 | @usableFromInline
/host/spi-builder-workspace/Sources/ErrorAssertions/PreconditionWrapper.swift:105:25: warning: static property '_preconditionFailureClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
103 | }
104 |
105 | internal static var _preconditionFailureClosure: PreconditionFailureClosure?
| |- warning: static property '_preconditionFailureClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_preconditionFailureClosure' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_preconditionFailureClosure' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 |
107 | @usableFromInline
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/ErrorAssertions/PreconditionWrapper.swift:112:24: warning: static property 'defaultPreconditionClosure' is not concurrency-safe because non-'Sendable' type '(Bool, any Error, StaticString, UInt) -> ()' may have shared mutable state; this is an error in the Swift 6 language mode
110 | }
111 |
112 | private static let defaultPreconditionClosure = {
| |- warning: static property 'defaultPreconditionClosure' is not concurrency-safe because non-'Sendable' type '(Bool, any Error, StaticString, UInt) -> ()' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultPreconditionClosure' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
113 | (condition: Bool, error: Error, file: StaticString, line: UInt) in
114 | Swift.precondition(condition,
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/ErrorAssertions/PreconditionWrapper.swift:120:24: warning: static property 'defaultPreconditionFailureClosure' is not concurrency-safe because non-'Sendable' type '(any Error, StaticString, UInt) -> Never' may have shared mutable state; this is an error in the Swift 6 language mode
118 | }
119 |
120 | private static let defaultPreconditionFailureClosure = {
| |- warning: static property 'defaultPreconditionFailureClosure' is not concurrency-safe because non-'Sendable' type '(any Error, StaticString, UInt) -> Never' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultPreconditionFailureClosure' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
121 | (error: Error, file: StaticString, line: UInt) in
122 | Swift.preconditionFailure(error.localizedDescription,
[8/9] Emitting module ErrorAssertions
/host/spi-builder-workspace/Sources/ErrorAssertions/AssertWrapper.swift:96:25: warning: static property '_assertClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
94 | (Error, StaticString, UInt) -> ()
95 |
96 | internal static var _assertClosure: AssertClosure?
| |- warning: static property '_assertClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_assertClosure' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_assertClosure' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
97 |
98 | @usableFromInline internal static var assertClosure: AssertClosure {
/host/spi-builder-workspace/Sources/ErrorAssertions/AssertWrapper.swift:102:25: warning: static property '_assertionFailureClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
100 | }
101 |
102 | internal static var _assertionFailureClosure: AssertionFailureClosure?
| |- warning: static property '_assertionFailureClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_assertionFailureClosure' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_assertionFailureClosure' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
103 |
104 | @usableFromInline
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/ErrorAssertions/AssertWrapper.swift:109:24: warning: static property 'defaultAssertClosure' is not concurrency-safe because non-'Sendable' type '(Bool, any Error, StaticString, UInt) -> ()' may have shared mutable state; this is an error in the Swift 6 language mode
107 | }
108 |
109 | private static let defaultAssertClosure = {
| |- warning: static property 'defaultAssertClosure' is not concurrency-safe because non-'Sendable' type '(Bool, any Error, StaticString, UInt) -> ()' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultAssertClosure' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
110 | (condition: Bool, error: Error, file: StaticString, line: UInt) in
111 | Swift.assert(condition,
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/ErrorAssertions/AssertWrapper.swift:117:24: warning: static property 'defaultAssertionFailureClosure' is not concurrency-safe because non-'Sendable' type '(any Error, StaticString, UInt) -> ()' may have shared mutable state; this is an error in the Swift 6 language mode
115 | }
116 |
117 | private static let defaultAssertionFailureClosure = {
| |- warning: static property 'defaultAssertionFailureClosure' is not concurrency-safe because non-'Sendable' type '(any Error, StaticString, UInt) -> ()' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultAssertionFailureClosure' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
118 | (error: Error, file: StaticString, line: UInt) in
119 | Swift.assertionFailure(error.localizedDescription,
/host/spi-builder-workspace/Sources/ErrorAssertions/FatalErrorWrapper.swift:47:25: warning: static property '_fatalErrorClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 | public typealias FatalErrorClosure = (Error, StaticString, UInt) -> Never
46 |
47 | internal static var _fatalErrorClosure: FatalErrorClosure?
| |- warning: static property '_fatalErrorClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_fatalErrorClosure' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_fatalErrorClosure' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | @usableFromInline internal static var fatalErrorClosure: FatalErrorClosure {
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/ErrorAssertions/FatalErrorWrapper.swift:53:24: warning: static property 'defaultFatalErrorClosure' is not concurrency-safe because non-'Sendable' type '(any Error, StaticString, UInt) -> Never' may have shared mutable state; this is an error in the Swift 6 language mode
51 | }
52 |
53 | private static let defaultFatalErrorClosure = {
| |- warning: static property 'defaultFatalErrorClosure' is not concurrency-safe because non-'Sendable' type '(any Error, StaticString, UInt) -> Never' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultFatalErrorClosure' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 | (error: Error, file: StaticString, line: UInt) -> Never in
55 | Swift.fatalError(error.localizedDescription,
/host/spi-builder-workspace/Sources/ErrorAssertions/PreconditionWrapper.swift:98:25: warning: static property '_preconditionClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
96 | (Error, StaticString, UInt) -> Never
97 |
98 | internal static var _preconditionClosure: PreconditionClosure?
| |- warning: static property '_preconditionClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_preconditionClosure' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_preconditionClosure' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
99 |
100 | @usableFromInline
/host/spi-builder-workspace/Sources/ErrorAssertions/PreconditionWrapper.swift:105:25: warning: static property '_preconditionFailureClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
103 | }
104 |
105 | internal static var _preconditionFailureClosure: PreconditionFailureClosure?
| |- warning: static property '_preconditionFailureClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_preconditionFailureClosure' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_preconditionFailureClosure' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
106 |
107 | @usableFromInline
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/ErrorAssertions/PreconditionWrapper.swift:112:24: warning: static property 'defaultPreconditionClosure' is not concurrency-safe because non-'Sendable' type '(Bool, any Error, StaticString, UInt) -> ()' may have shared mutable state; this is an error in the Swift 6 language mode
110 | }
111 |
112 | private static let defaultPreconditionClosure = {
| |- warning: static property 'defaultPreconditionClosure' is not concurrency-safe because non-'Sendable' type '(Bool, any Error, StaticString, UInt) -> ()' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultPreconditionClosure' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
113 | (condition: Bool, error: Error, file: StaticString, line: UInt) in
114 | Swift.precondition(condition,
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/ErrorAssertions/PreconditionWrapper.swift:120:24: warning: static property 'defaultPreconditionFailureClosure' is not concurrency-safe because non-'Sendable' type '(any Error, StaticString, UInt) -> Never' may have shared mutable state; this is an error in the Swift 6 language mode
118 | }
119 |
120 | private static let defaultPreconditionFailureClosure = {
| |- warning: static property 'defaultPreconditionFailureClosure' is not concurrency-safe because non-'Sendable' type '(any Error, StaticString, UInt) -> Never' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultPreconditionFailureClosure' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
121 | (error: Error, file: StaticString, line: UInt) in
122 | Swift.preconditionFailure(error.localizedDescription,
[9/9] Compiling ErrorAssertions FatalErrorWrapper.swift
/host/spi-builder-workspace/Sources/ErrorAssertions/FatalErrorWrapper.swift:47:25: warning: static property '_fatalErrorClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
45 | public typealias FatalErrorClosure = (Error, StaticString, UInt) -> Never
46 |
47 | internal static var _fatalErrorClosure: FatalErrorClosure?
| |- warning: static property '_fatalErrorClosure' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert '_fatalErrorClosure' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property '_fatalErrorClosure' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
48 |
49 | @usableFromInline internal static var fatalErrorClosure: FatalErrorClosure {
<unknown>:0: note: a function type must be marked '@Sendable' to conform to 'Sendable'
/host/spi-builder-workspace/Sources/ErrorAssertions/FatalErrorWrapper.swift:53:24: warning: static property 'defaultFatalErrorClosure' is not concurrency-safe because non-'Sendable' type '(any Error, StaticString, UInt) -> Never' may have shared mutable state; this is an error in the Swift 6 language mode
51 | }
52 |
53 | private static let defaultFatalErrorClosure = {
| |- warning: static property 'defaultFatalErrorClosure' is not concurrency-safe because non-'Sendable' type '(any Error, StaticString, UInt) -> Never' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'defaultFatalErrorClosure' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
54 | (error: Error, file: StaticString, line: UInt) -> Never in
55 | Swift.fatalError(error.localizedDescription,
[11/16] Compiling ErrorAssertionExpectations Unreachable.swift
[12/16] Compiling ErrorAssertionExpectations ClosureThread.swift
[13/16] Compiling ErrorAssertionExpectations PreconditionExpectations.swift
[14/16] Compiling ErrorAssertionExpectations FatalErrorExpectations.swift
[15/16] Emitting module ErrorAssertionExpectations
[16/16] Compiling ErrorAssertionExpectations AssertExpectations.swift
Build complete! (11.32s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "ErrorAssertions",
"name" : "ErrorAssertions",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "ErrorAssertions",
"targets" : [
"ErrorAssertions"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "ErrorAssertionExpectations",
"targets" : [
"ErrorAssertionExpectations"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"4",
"4.2",
"5"
],
"targets" : [
{
"c99name" : "ErrorAssertionsTests",
"module_type" : "SwiftTarget",
"name" : "ErrorAssertionsTests",
"path" : "Tests/ErrorAssertionsTests",
"sources" : [
"AssertTests.swift",
"FatalErrorTests.swift",
"PreconditionTests.swift",
"TestError.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"ErrorAssertions",
"ErrorAssertionExpectations"
],
"type" : "test"
},
{
"c99name" : "ErrorAssertions",
"module_type" : "SwiftTarget",
"name" : "ErrorAssertions",
"path" : "Sources/ErrorAssertions",
"product_memberships" : [
"ErrorAssertions",
"ErrorAssertionExpectations"
],
"sources" : [
"AssertWrapper.swift",
"FatalErrorWrapper.swift",
"PreconditionWrapper.swift",
"Utilities/AnonymousError.swift",
"Utilities/RestorationHandler.swift"
],
"type" : "library"
},
{
"c99name" : "ErrorAssertionExpectations",
"module_type" : "SwiftTarget",
"name" : "ErrorAssertionExpectations",
"path" : "Sources/ErrorAssertionExpectations",
"product_memberships" : [
"ErrorAssertionExpectations"
],
"sources" : [
"AssertExpectations.swift",
"FatalErrorExpectations.swift",
"PreconditionExpectations.swift",
"Utilities/ClosureThread.swift",
"Utilities/Unreachable.swift"
],
"target_dependencies" : [
"ErrorAssertions"
],
"type" : "library"
}
],
"tools_version" : "5.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
Done.