Build Information
Successful build of FranticApparatus, reference 7.0.0 (382472
), with Swift 6.2 (beta) for Linux on 17 Jun 2025 18:36:44 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/jkolb/FranticApparatus.git
Reference: 7.0.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/jkolb/FranticApparatus
* tag 7.0.0 -> FETCH_HEAD
HEAD is now at 382472d Add Cocoapods support
Cloned https://github.com/jkolb/FranticApparatus.git
Revision (git rev-parse @):
382472df4b5206856352fabd77d826febf6c8a99
SUCCESS checkout https://github.com/jkolb/FranticApparatus.git at 7.0.0
========================================
Build
========================================
Selected platform: linux
Swift version: 6.2
Building package at path: $PWD
https://github.com/jkolb/FranticApparatus.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-3":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/16] Compiling FranticApparatus PromiseError.swift
[4/16] Compiling FranticApparatus PromiseMaker.swift
[5/16] Compiling FranticApparatus RacePromises.swift
[6/16] Compiling FranticApparatus Result.swift
[7/17] Compiling FranticApparatus State.swift
[8/17] Compiling FranticApparatus Thenable.swift
/host/spi-builder-workspace/Sources/FranticApparatus/Thenable.swift:32:5: warning: 'public' modifier is redundant for instance method declared in a public extension
30 |
31 | public extension Thenable {
32 | public func whenFulfilledThenMap<ResultingValue>(on dispatcher: Dispatcher, map: @escaping (Value) throws -> Result<ResultingValue>) -> Promise<ResultingValue> {
| `- warning: 'public' modifier is redundant for instance method declared in a public extension
33 | return then(
34 | on: dispatcher,
/host/spi-builder-workspace/Sources/FranticApparatus/Thenable.swift:44:5: warning: 'public' modifier is redundant for instance method declared in a public extension
42 | }
43 |
44 | public func whenFulfilled(on dispatcher: Dispatcher, thenDo: @escaping (Value) throws -> Void) -> Promise<Value> {
| `- warning: 'public' modifier is redundant for instance method declared in a public extension
45 | return whenFulfilledThenMap(on: dispatcher) { (value) throws -> Result<Value> in
46 | try thenDo(value)
/host/spi-builder-workspace/Sources/FranticApparatus/Thenable.swift:52:5: warning: 'public' modifier is redundant for instance method declared in a public extension
50 | }
51 |
52 | public func whenFulfilledThenTransform<ResultingValue>(on dispatcher: Dispatcher, transform: @escaping (Value) throws -> ResultingValue) -> Promise<ResultingValue> {
| `- warning: 'public' modifier is redundant for instance method declared in a public extension
53 | return whenFulfilledThenMap(on: dispatcher) { (value) throws -> Result<ResultingValue> in
54 | let result = try transform(value)
/host/spi-builder-workspace/Sources/FranticApparatus/Thenable.swift:60:5: warning: 'public' modifier is redundant for instance method declared in a public extension
58 | }
59 |
60 | public func whenFulfilledThenPromise<ResultingValue>(on dispatcher: Dispatcher, promise: @escaping (Value) throws -> Promise<ResultingValue>) -> Promise<ResultingValue> {
| `- warning: 'public' modifier is redundant for instance method declared in a public extension
61 | return whenFulfilledThenMap(on: dispatcher) { (value) throws -> Result<ResultingValue> in
62 | let result = try promise(value)
/host/spi-builder-workspace/Sources/FranticApparatus/Thenable.swift:68:5: warning: 'public' modifier is redundant for instance method declared in a public extension
66 | }
67 |
68 | public func whenRejectedThenMap(on dispatcher: Dispatcher, map: @escaping (Error) throws -> Result<Value>) -> Promise<Value> {
| `- warning: 'public' modifier is redundant for instance method declared in a public extension
69 | return then(
70 | on: dispatcher,
/host/spi-builder-workspace/Sources/FranticApparatus/Thenable.swift:82:5: warning: 'public' modifier is redundant for instance method declared in a public extension
80 | }
81 |
82 | public func whenRejected(on dispatcher: Dispatcher, thenDo: @escaping (Error) throws -> Void) -> Promise<Value> {
| `- warning: 'public' modifier is redundant for instance method declared in a public extension
83 | return whenRejectedThenMap(on: dispatcher) { (reason) throws -> Result<Value> in
84 | try thenDo(reason)
/host/spi-builder-workspace/Sources/FranticApparatus/Thenable.swift:90:5: warning: 'public' modifier is redundant for instance method declared in a public extension
88 | }
89 |
90 | public func whenRejectedThenTransform(on dispatcher: Dispatcher, transform: @escaping (Error) throws -> Value) -> Promise<Value> {
| `- warning: 'public' modifier is redundant for instance method declared in a public extension
91 | return whenRejectedThenMap(on: dispatcher) { (reason) throws -> Result<Value> in
92 | let result = try transform(reason)
/host/spi-builder-workspace/Sources/FranticApparatus/Thenable.swift:98:5: warning: 'public' modifier is redundant for instance method declared in a public extension
96 | }
97 |
98 | public func whenRejectedThenPromise(on dispatcher: Dispatcher, promise: @escaping (Error) throws -> Promise<Value>) -> Promise<Value> {
| `- warning: 'public' modifier is redundant for instance method declared in a public extension
99 | return whenRejectedThenMap(on: dispatcher) { (reason) throws -> Result<Value> in
100 | let result = try promise(reason)
/host/spi-builder-workspace/Sources/FranticApparatus/Thenable.swift:106:5: warning: 'public' modifier is redundant for instance method declared in a public extension
104 | }
105 |
106 | public func whenComplete(on dispatcher: Dispatcher, thenDo: @escaping () -> Void) -> Promise<Value> {
| `- warning: 'public' modifier is redundant for instance method declared in a public extension
107 | return then(
108 | on: dispatcher,
[9/17] Compiling FranticApparatus AllPromises.swift
[10/17] Compiling FranticApparatus AnyPromises.swift
[11/17] Emitting module FranticApparatus
/host/spi-builder-workspace/Sources/FranticApparatus/Thenable.swift:32:5: warning: 'public' modifier is redundant for instance method declared in a public extension
30 |
31 | public extension Thenable {
32 | public func whenFulfilledThenMap<ResultingValue>(on dispatcher: Dispatcher, map: @escaping (Value) throws -> Result<ResultingValue>) -> Promise<ResultingValue> {
| `- warning: 'public' modifier is redundant for instance method declared in a public extension
33 | return then(
34 | on: dispatcher,
/host/spi-builder-workspace/Sources/FranticApparatus/Thenable.swift:44:5: warning: 'public' modifier is redundant for instance method declared in a public extension
42 | }
43 |
44 | public func whenFulfilled(on dispatcher: Dispatcher, thenDo: @escaping (Value) throws -> Void) -> Promise<Value> {
| `- warning: 'public' modifier is redundant for instance method declared in a public extension
45 | return whenFulfilledThenMap(on: dispatcher) { (value) throws -> Result<Value> in
46 | try thenDo(value)
/host/spi-builder-workspace/Sources/FranticApparatus/Thenable.swift:52:5: warning: 'public' modifier is redundant for instance method declared in a public extension
50 | }
51 |
52 | public func whenFulfilledThenTransform<ResultingValue>(on dispatcher: Dispatcher, transform: @escaping (Value) throws -> ResultingValue) -> Promise<ResultingValue> {
| `- warning: 'public' modifier is redundant for instance method declared in a public extension
53 | return whenFulfilledThenMap(on: dispatcher) { (value) throws -> Result<ResultingValue> in
54 | let result = try transform(value)
/host/spi-builder-workspace/Sources/FranticApparatus/Thenable.swift:60:5: warning: 'public' modifier is redundant for instance method declared in a public extension
58 | }
59 |
60 | public func whenFulfilledThenPromise<ResultingValue>(on dispatcher: Dispatcher, promise: @escaping (Value) throws -> Promise<ResultingValue>) -> Promise<ResultingValue> {
| `- warning: 'public' modifier is redundant for instance method declared in a public extension
61 | return whenFulfilledThenMap(on: dispatcher) { (value) throws -> Result<ResultingValue> in
62 | let result = try promise(value)
/host/spi-builder-workspace/Sources/FranticApparatus/Thenable.swift:68:5: warning: 'public' modifier is redundant for instance method declared in a public extension
66 | }
67 |
68 | public func whenRejectedThenMap(on dispatcher: Dispatcher, map: @escaping (Error) throws -> Result<Value>) -> Promise<Value> {
| `- warning: 'public' modifier is redundant for instance method declared in a public extension
69 | return then(
70 | on: dispatcher,
/host/spi-builder-workspace/Sources/FranticApparatus/Thenable.swift:82:5: warning: 'public' modifier is redundant for instance method declared in a public extension
80 | }
81 |
82 | public func whenRejected(on dispatcher: Dispatcher, thenDo: @escaping (Error) throws -> Void) -> Promise<Value> {
| `- warning: 'public' modifier is redundant for instance method declared in a public extension
83 | return whenRejectedThenMap(on: dispatcher) { (reason) throws -> Result<Value> in
84 | try thenDo(reason)
/host/spi-builder-workspace/Sources/FranticApparatus/Thenable.swift:90:5: warning: 'public' modifier is redundant for instance method declared in a public extension
88 | }
89 |
90 | public func whenRejectedThenTransform(on dispatcher: Dispatcher, transform: @escaping (Error) throws -> Value) -> Promise<Value> {
| `- warning: 'public' modifier is redundant for instance method declared in a public extension
91 | return whenRejectedThenMap(on: dispatcher) { (reason) throws -> Result<Value> in
92 | let result = try transform(reason)
/host/spi-builder-workspace/Sources/FranticApparatus/Thenable.swift:98:5: warning: 'public' modifier is redundant for instance method declared in a public extension
96 | }
97 |
98 | public func whenRejectedThenPromise(on dispatcher: Dispatcher, promise: @escaping (Error) throws -> Promise<Value>) -> Promise<Value> {
| `- warning: 'public' modifier is redundant for instance method declared in a public extension
99 | return whenRejectedThenMap(on: dispatcher) { (reason) throws -> Result<Value> in
100 | let result = try promise(reason)
/host/spi-builder-workspace/Sources/FranticApparatus/Thenable.swift:106:5: warning: 'public' modifier is redundant for instance method declared in a public extension
104 | }
105 |
106 | public func whenComplete(on dispatcher: Dispatcher, thenDo: @escaping () -> Void) -> Promise<Value> {
| `- warning: 'public' modifier is redundant for instance method declared in a public extension
107 | return then(
108 | on: dispatcher,
[12/17] Compiling FranticApparatus Deferred.swift
[13/17] Compiling FranticApparatus Dispatcher.swift
[14/17] Compiling FranticApparatus GCDDispatcher.swift
/host/spi-builder-workspace/Sources/FranticApparatus/GCDDispatcher.swift:39:30: warning: passing non-Sendable parameter 'closure' to function expecting a '@Sendable' closure
36 | }
37 |
38 | public func dispatch(_ closure: @escaping () -> Void) {
| `- note: parameter 'closure' is implicitly non-Sendable
39 | queue.async(execute: closure)
| `- warning: passing non-Sendable parameter 'closure' to function expecting a '@Sendable' closure
40 | }
41 | }
[15/17] Compiling FranticApparatus Lock.swift
/host/spi-builder-workspace/Sources/FranticApparatus/GCDDispatcher.swift:39:30: warning: passing non-Sendable parameter 'closure' to function expecting a '@Sendable' closure
36 | }
37 |
38 | public func dispatch(_ closure: @escaping () -> Void) {
| `- note: parameter 'closure' is implicitly non-Sendable
39 | queue.async(execute: closure)
| `- warning: passing non-Sendable parameter 'closure' to function expecting a '@Sendable' closure
40 | }
41 | }
[16/17] Compiling FranticApparatus OperationDispatcher.swift
/host/spi-builder-workspace/Sources/FranticApparatus/OperationDispatcher.swift:39:28: warning: passing non-Sendable parameter 'closure' to function expecting a '@Sendable' closure
36 | }
37 |
38 | public func dispatch(_ closure: @escaping () -> Void) {
| `- note: parameter 'closure' is implicitly non-Sendable
39 | queue.addOperation(closure)
| `- warning: passing non-Sendable parameter 'closure' to function expecting a '@Sendable' closure
40 | }
41 | }
[17/17] Compiling FranticApparatus Promise.swift
/host/spi-builder-workspace/Sources/FranticApparatus/OperationDispatcher.swift:39:28: warning: passing non-Sendable parameter 'closure' to function expecting a '@Sendable' closure
36 | }
37 |
38 | public func dispatch(_ closure: @escaping () -> Void) {
| `- note: parameter 'closure' is implicitly non-Sendable
39 | queue.addOperation(closure)
| `- warning: passing non-Sendable parameter 'closure' to function expecting a '@Sendable' closure
40 | }
41 | }
Build complete! (9.47s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "FranticApparatus",
"name" : "FranticApparatus",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "FranticApparatus",
"targets" : [
"FranticApparatus"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "FranticApparatusTests",
"module_type" : "SwiftTarget",
"name" : "FranticApparatusTests",
"path" : "Tests/FranticApparatusTests",
"sources" : [
"FranticApparatusTests.swift"
],
"target_dependencies" : [
"FranticApparatus"
],
"type" : "test"
},
{
"c99name" : "FranticApparatus",
"module_type" : "SwiftTarget",
"name" : "FranticApparatus",
"path" : "Sources/FranticApparatus",
"product_memberships" : [
"FranticApparatus"
],
"sources" : [
"AllPromises.swift",
"AnyPromises.swift",
"Deferred.swift",
"Dispatcher.swift",
"GCDDispatcher.swift",
"Lock.swift",
"OperationDispatcher.swift",
"Promise.swift",
"PromiseError.swift",
"PromiseMaker.swift",
"RacePromises.swift",
"Result.swift",
"State.swift",
"Thenable.swift"
],
"type" : "library"
}
],
"tools_version" : "4.0"
}
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:f81a7bd7aa87a0f81848d48c5bcc03f5f78deebd37fa5f9be9913077205d3687
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Done.