Build Information
Successful build of CSProgress, reference 0.0.1 (b831bb), with Swift 6.1 for Android on 30 May 2025 08:04:49 UTC.
Swift 6 data race errors: 0
Build Command
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/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/gregcotten/CSProgress.git
Reference: 0.0.1
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/gregcotten/CSProgress
* tag 0.0.1 -> FETCH_HEAD
HEAD is now at b831bb2 extremely busted test
Cloned https://github.com/gregcotten/CSProgress.git
Revision (git rev-parse @):
b831bb234a8a2af02ccc04d6e91a62f7dabb7de4
SUCCESS checkout https://github.com/gregcotten/CSProgress.git at 0.0.1
========================================
Build
========================================
Selected platform: android
Swift version: 6.1
Building package at path: $PWD
https://github.com/gregcotten/CSProgress.git
https://github.com/gregcotten/CSProgress.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
"dependencies" : [
],
"manifest_display_name" : "CSProgress",
"name" : "CSProgress",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "CSProgress",
"targets" : [
"CSProgress"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "CSProgressPerformanceTests",
"targets" : [
"CSProgressPerformanceTests"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "CSProgressTests",
"module_type" : "SwiftTarget",
"name" : "CSProgressTests",
"path" : "Tests/CSProgressTests",
"sources" : [
"CSProgressTests.swift",
"Foundation.Progress Tests.swift"
],
"target_dependencies" : [
"CSProgress"
],
"type" : "test"
},
{
"c99name" : "CSProgressPerformanceTests",
"module_type" : "SwiftTarget",
"name" : "CSProgressPerformanceTests",
"path" : "Tests/CSProgressPerformanceTests",
"product_memberships" : [
"CSProgressPerformanceTests"
],
"sources" : [
"CSProgressPerformanceTests.swift",
"main.swift"
],
"target_dependencies" : [
"CSProgress"
],
"type" : "executable"
},
{
"c99name" : "CSProgress",
"module_type" : "SwiftTarget",
"name" : "CSProgress",
"path" : "Sources/CSProgress",
"product_memberships" : [
"CSProgress",
"CSProgressPerformanceTests"
],
"sources" : [
"CSProgress.swift"
],
"type" : "library"
}
],
"tools_version" : "5.6"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-0":/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/7] Write sources
[2/7] Write swift-version-24593BA9C3E375BF.txt
[4/9] Compiling CSProgress CSProgress.swift
/host/spi-builder-workspace/Sources/CSProgress/CSProgress.swift:578:17: warning: capture of 'eachNotification' with non-sendable type 'CSProgress.CancellationNotificationWrapper' in a '@Sendable' closure; this is an error in the Swift 6 language mode
405 | }
406 |
407 | private struct CancellationNotificationWrapper {
| `- note: consider making struct 'CancellationNotificationWrapper' conform to the 'Sendable' protocol
408 | let notification: CancellationNotification
409 | let queue: OperationQueue
:
576 | for eachNotification in notifications {
577 | eachNotification.queue.addOperation {
578 | eachNotification.notification()
| `- warning: capture of 'eachNotification' with non-sendable type 'CSProgress.CancellationNotificationWrapper' in a '@Sendable' closure; this is an error in the Swift 6 language mode
579 | }
580 | }
/host/spi-builder-workspace/Sources/CSProgress/CSProgress.swift:609:21: warning: capture of 'eachNotification' with non-sendable type 'CSProgress.FractionCompletedNotificationWrapper' in a '@Sendable' closure; this is an error in the Swift 6 language mode
410 | }
411 |
412 | private struct FractionCompletedNotificationWrapper {
| `- note: consider making struct 'FractionCompletedNotificationWrapper' conform to the 'Sendable' protocol
413 | let notification: FractionCompletedNotification
414 | let queue: OperationQueue
:
607 | for eachNotification in notifications {
608 | eachNotification.queue.addOperation {
609 | eachNotification.notification(completedUnitCount, totalUnitCount, fractionCompleted)
| `- warning: capture of 'eachNotification' with non-sendable type 'CSProgress.FractionCompletedNotificationWrapper' in a '@Sendable' closure; this is an error in the Swift 6 language mode
610 | }
611 | }
/host/spi-builder-workspace/Sources/CSProgress/CSProgress.swift:634:17: warning: capture of 'eachNotification' with non-sendable type 'CSProgress.DescriptionNotificationWrapper' in a '@Sendable' closure; this is an error in the Swift 6 language mode
415 | }
416 |
417 | private struct DescriptionNotificationWrapper {
| `- note: consider making struct 'DescriptionNotificationWrapper' conform to the 'Sendable' protocol
418 | let notification: DescriptionNotification
419 | let queue: OperationQueue
:
632 | for eachNotification in notifications {
633 | eachNotification.queue.addOperation {
634 | eachNotification.notification(description, additionalDescription)
| `- warning: capture of 'eachNotification' with non-sendable type 'CSProgress.DescriptionNotificationWrapper' in a '@Sendable' closure; this is an error in the Swift 6 language mode
635 | }
636 | }
/host/spi-builder-workspace/Sources/CSProgress/CSProgress.swift:730:32: warning: will never be executed
728 | // Prevent double-attaching
729 | parent.resignCurrent()
730 | } else if allowBridge, Foundation.Progress.current() != nil {
| | `- warning: will never be executed
| `- note: condition always evaluates to false
731 | #if os(macOS) || os(iOS) || os(watchOS) || os(tvOS)
732 | // We have no way of knowing the current progress's pending unit count, so put a shim in between it and us
[5/9] Emitting module CSProgress
[6/10] Wrapping AST for CSProgress for debugging
[8/13] Emitting module CSProgressPerformanceTests
[9/13] Compiling CSProgressPerformanceTests main.swift
[10/13] Compiling CSProgressPerformanceTests CSProgressPerformanceTests.swift
[11/14] Wrapping AST for CSProgressPerformanceTests for debugging
[12/14] Write Objects.LinkFileList
[13/14] Linking CSProgressPerformanceTests
Build complete! (12.94s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "CSProgress",
"name" : "CSProgress",
"path" : "/host/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "CSProgress",
"targets" : [
"CSProgress"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "CSProgressPerformanceTests",
"targets" : [
"CSProgressPerformanceTests"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "CSProgressTests",
"module_type" : "SwiftTarget",
"name" : "CSProgressTests",
"path" : "Tests/CSProgressTests",
"sources" : [
"CSProgressTests.swift",
"Foundation.Progress Tests.swift"
],
"target_dependencies" : [
"CSProgress"
],
"type" : "test"
},
{
"c99name" : "CSProgressPerformanceTests",
"module_type" : "SwiftTarget",
"name" : "CSProgressPerformanceTests",
"path" : "Tests/CSProgressPerformanceTests",
"product_memberships" : [
"CSProgressPerformanceTests"
],
"sources" : [
"CSProgressPerformanceTests.swift",
"main.swift"
],
"target_dependencies" : [
"CSProgress"
],
"type" : "executable"
},
{
"c99name" : "CSProgress",
"module_type" : "SwiftTarget",
"name" : "CSProgress",
"path" : "Sources/CSProgress",
"product_memberships" : [
"CSProgress",
"CSProgressPerformanceTests"
],
"sources" : [
"CSProgress.swift"
],
"type" : "library"
}
],
"tools_version" : "5.6"
}
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.