Build Information
Successful build of Prelude, reference 0.6.3 (146f53), with Swift 6.3 for Android on 12 Apr 2026 22:50:16 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/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:android-6.3-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/wayfair-archive/prelude.git
Reference: 0.6.3
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/wayfair-archive/prelude
* tag 0.6.3 -> FETCH_HEAD
HEAD is now at 146f53b Fix a version for App Store validation (#27)
Cloned https://github.com/wayfair-archive/prelude.git
Revision (git rev-parse @):
146f53bb562859602e14fa632a71b141970cdbd8
SUCCESS checkout https://github.com/wayfair-archive/prelude.git at 0.6.3
========================================
Build
========================================
Selected platform: android
Swift version: 6.3
Building package at path: $PWD
https://github.com/wayfair-archive/prelude.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/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:android-6.3-latest swift build --swift-sdk aarch64-unknown-linux-android28 2>&1
android-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:9008270ea37a55e78725e6225015adb5eff8582da520c5232bf0499f32c36dc4
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--4F562202D5529B1.txt
[3/13] Compiling Prelude Reducers.swift
/host/spi-builder-workspace/Sources/Prelude/Reducers.swift:85:27: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
9 |
10 | /// a struct that wraps a function suitable for passing to the `updateAccumulatingResult:` parameter of `Sequence.reduce(into:_:)`
11 | public struct Reducer<A, X> {
| `- note: 'A' previously declared here
12 | public let updateAccumulatingResult: (inout A, X) -> Void
13 |
:
83 | /// - rhs: another reducer
84 | /// - Returns: a reducer that for each input, first runs `lhs`, then runs `rhs`
85 | public static func <><A, X>(_ lhs: Reducer<A, X>, _ rhs: Reducer<A, X>) -> Reducer<A, X> {
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
86 | lhs.followed(by: rhs)
87 | }
/host/spi-builder-workspace/Sources/Prelude/Reducers.swift:85:30: warning: generic parameter 'X' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
9 |
10 | /// a struct that wraps a function suitable for passing to the `updateAccumulatingResult:` parameter of `Sequence.reduce(into:_:)`
11 | public struct Reducer<A, X> {
| `- note: 'X' previously declared here
12 | public let updateAccumulatingResult: (inout A, X) -> Void
13 |
:
83 | /// - rhs: another reducer
84 | /// - Returns: a reducer that for each input, first runs `lhs`, then runs `rhs`
85 | public static func <><A, X>(_ lhs: Reducer<A, X>, _ rhs: Reducer<A, X>) -> Reducer<A, X> {
| `- warning: generic parameter 'X' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
86 | lhs.followed(by: rhs)
87 | }
[4/14] Compiling Prelude Refinements.swift
[5/14] Compiling Prelude Prelude.swift
[6/14] Compiling Prelude Predicate.swift
[7/14] Compiling Prelude Sequence+Prelude.swift
[8/14] Emitting module Prelude
/host/spi-builder-workspace/Sources/Prelude/Laters+Operation.swift:18:20: warning: class 'LaterOperation' must restate inherited '@unchecked Sendable' conformance
16 | }
17 |
18 | public final class LaterOperation<L: Later>: Operation {
| `- warning: class 'LaterOperation' must restate inherited '@unchecked Sendable' conformance
19 | private let upstream: L
20 |
/host/spi-builder-workspace/Sources/Prelude/Reducers.swift:85:27: warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
9 |
10 | /// a struct that wraps a function suitable for passing to the `updateAccumulatingResult:` parameter of `Sequence.reduce(into:_:)`
11 | public struct Reducer<A, X> {
| `- note: 'A' previously declared here
12 | public let updateAccumulatingResult: (inout A, X) -> Void
13 |
:
83 | /// - rhs: another reducer
84 | /// - Returns: a reducer that for each input, first runs `lhs`, then runs `rhs`
85 | public static func <><A, X>(_ lhs: Reducer<A, X>, _ rhs: Reducer<A, X>) -> Reducer<A, X> {
| `- warning: generic parameter 'A' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
86 | lhs.followed(by: rhs)
87 | }
/host/spi-builder-workspace/Sources/Prelude/Reducers.swift:85:30: warning: generic parameter 'X' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
9 |
10 | /// a struct that wraps a function suitable for passing to the `updateAccumulatingResult:` parameter of `Sequence.reduce(into:_:)`
11 | public struct Reducer<A, X> {
| `- note: 'X' previously declared here
12 | public let updateAccumulatingResult: (inout A, X) -> Void
13 |
:
83 | /// - rhs: another reducer
84 | /// - Returns: a reducer that for each input, first runs `lhs`, then runs `rhs`
85 | public static func <><A, X>(_ lhs: Reducer<A, X>, _ rhs: Reducer<A, X>) -> Reducer<A, X> {
| `- warning: generic parameter 'X' shadows generic parameter from outer scope with the same name; this is an error in the Swift 6 language mode
86 | lhs.followed(by: rhs)
87 | }
[9/14] Compiling Prelude ChangeTracking.swift
/host/spi-builder-workspace/Sources/Prelude/Laters+Operation.swift:18:20: warning: class 'LaterOperation' must restate inherited '@unchecked Sendable' conformance
16 | }
17 |
18 | public final class LaterOperation<L: Later>: Operation {
| `- warning: class 'LaterOperation' must restate inherited '@unchecked Sendable' conformance
19 | private let upstream: L
20 |
[10/14] Compiling Prelude Laters+Operation.swift
/host/spi-builder-workspace/Sources/Prelude/Laters+Operation.swift:18:20: warning: class 'LaterOperation' must restate inherited '@unchecked Sendable' conformance
16 | }
17 |
18 | public final class LaterOperation<L: Later>: Operation {
| `- warning: class 'LaterOperation' must restate inherited '@unchecked Sendable' conformance
19 | private let upstream: L
20 |
[11/14] Compiling Prelude Nat.swift
[12/14] Compiling Prelude Operators.swift
[13/14] Compiling Prelude Laters.swift
/host/spi-builder-workspace/Sources/Prelude/Laters.swift:387:31: warning: when calling this function in Swift 4 or later, you must pass a '()' tuple; did you mean for the input type to be '()'?
385 | // Q: When calling this function in Swift 4 or later, you must pass a '()' tuple; did you mean for the input type to be '()'?
386 | // A: No
387 | func f(_ v: @escaping (Void) -> Void) {
| `- warning: when calling this function in Swift 4 or later, you must pass a '()' tuple; did you mean for the input type to be '()'?
388 | upstream { v(()) }
389 | }
[14/14] Compiling Prelude Monoid.swift
/host/spi-builder-workspace/Sources/Prelude/Laters.swift:387:31: warning: when calling this function in Swift 4 or later, you must pass a '()' tuple; did you mean for the input type to be '()'?
385 | // Q: When calling this function in Swift 4 or later, you must pass a '()' tuple; did you mean for the input type to be '()'?
386 | // A: No
387 | func f(_ v: @escaping (Void) -> Void) {
| `- warning: when calling this function in Swift 4 or later, you must pass a '()' tuple; did you mean for the input type to be '()'?
388 | upstream { v(()) }
389 | }
Build complete! (21.54s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "Prelude",
"name" : "Prelude",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "Prelude",
"targets" : [
"Prelude"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "PreludeTests",
"module_type" : "SwiftTarget",
"name" : "PreludeTests",
"path" : "Tests/PreludeTests",
"sources" : [
"ChangeTrackingTests.swift",
"Laters+OperationTests.swift",
"LatersTests.swift",
"MonoidTests.swift",
"PredicateTests.swift",
"PreludeTests.swift",
"ReducersTests.swift",
"RefinementsTests.swift",
"SequenceExtensionsTests.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"Prelude"
],
"type" : "test"
},
{
"c99name" : "Prelude",
"module_type" : "SwiftTarget",
"name" : "Prelude",
"path" : "Sources/Prelude",
"product_memberships" : [
"Prelude"
],
"sources" : [
"ChangeTracking.swift",
"Laters+Operation.swift",
"Laters.swift",
"Monoid.swift",
"Nat.swift",
"Operators.swift",
"Predicate.swift",
"Prelude.swift",
"Reducers.swift",
"Refinements.swift",
"Sequence+Prelude.swift"
],
"type" : "library"
}
],
"tools_version" : "5.1"
}
android-6.3-latest: Pulling from swiftpackageindex/spi-images
Digest: sha256:9008270ea37a55e78725e6225015adb5eff8582da520c5232bf0499f32c36dc4
Status: Image is up to date for registry.gitlab.com/swiftpackageindex/spi-images:android-6.3-latest
Done.