Build Information
Successful build of DebouncedOnChange, reference 2.1.0 (2583a3), with Swift 6.1 for macOS (SPM) on 4 Feb 2026 02:24:39 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -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 InferSendableFromCapturesBuild Log
========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Tunous/DebouncedOnChange.git
Reference: 2.1.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/Tunous/DebouncedOnChange
* tag 2.1.0 -> FETCH_HEAD
HEAD is now at 2583a30 Task modifier with debouncer parameter (#5)
Cloned https://github.com/Tunous/DebouncedOnChange.git
Revision (git rev-parse @):
2583a30a8d277c3475c1b3a10b0f902a7be34f3b
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/Tunous/DebouncedOnChange.git at 2.1.0
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.1
Building package at path: $PWD
https://github.com/Tunous/DebouncedOnChange.git
https://github.com/Tunous/DebouncedOnChange.git
{
"dependencies" : [
],
"manifest_display_name" : "DebouncedOnChange",
"name" : "DebouncedOnChange",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "14.0"
},
{
"name" : "macos",
"version" : "11.0"
},
{
"name" : "tvos",
"version" : "14.0"
},
{
"name" : "watchos",
"version" : "7.0"
}
],
"products" : [
{
"name" : "DebouncedOnChange",
"targets" : [
"DebouncedOnChange"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "DebouncedOnChangeTests",
"module_type" : "SwiftTarget",
"name" : "DebouncedOnChangeTests",
"path" : "Tests/DebouncedOnChangeTests",
"sources" : [
"DelayedTaskTests.swift"
],
"target_dependencies" : [
"DebouncedOnChange"
],
"type" : "test"
},
{
"c99name" : "DebouncedOnChange",
"module_type" : "SwiftTarget",
"name" : "DebouncedOnChange",
"path" : "Sources/DebouncedOnChange",
"product_memberships" : [
"DebouncedOnChange"
],
"sources" : [
"DebouncedChangeViewModifier.swift",
"DebouncedTaskViewModifier.swift",
"Debouncer.swift",
"Task+Delayed.swift"
],
"type" : "library"
}
],
"tools_version" : "5.5"
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -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
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-2F0A5646E1D333AE.txt
[3/7] Compiling DebouncedOnChange Debouncer.swift
[4/7] Compiling DebouncedOnChange Task+Delayed.swift
/Users/admin/builder/spi-builder-workspace/Sources/DebouncedOnChange/Task+Delayed.swift:40:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
38 | operation: @escaping () async -> Void
39 | ) -> Self where Success == Void, Failure == Never {
40 | Self {
| `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
41 | do {
42 | try await Task<Never, Never>.sleep(for: duration)
43 | await operation()
| `- note: closure captures 'operation' which is accessible to code in the current task
44 | } catch {}
45 | }
[5/7] Compiling DebouncedOnChange DebouncedTaskViewModifier.swift
[6/7] Emitting module DebouncedOnChange
[7/7] Compiling DebouncedOnChange DebouncedChangeViewModifier.swift
Build complete! (7.64s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "DebouncedOnChange",
"name" : "DebouncedOnChange",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "14.0"
},
{
"name" : "macos",
"version" : "11.0"
},
{
"name" : "tvos",
"version" : "14.0"
},
{
"name" : "watchos",
"version" : "7.0"
}
],
"products" : [
{
"name" : "DebouncedOnChange",
"targets" : [
"DebouncedOnChange"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "DebouncedOnChangeTests",
"module_type" : "SwiftTarget",
"name" : "DebouncedOnChangeTests",
"path" : "Tests/DebouncedOnChangeTests",
"sources" : [
"DelayedTaskTests.swift"
],
"target_dependencies" : [
"DebouncedOnChange"
],
"type" : "test"
},
{
"c99name" : "DebouncedOnChange",
"module_type" : "SwiftTarget",
"name" : "DebouncedOnChange",
"path" : "Sources/DebouncedOnChange",
"product_memberships" : [
"DebouncedOnChange"
],
"sources" : [
"DebouncedChangeViewModifier.swift",
"DebouncedTaskViewModifier.swift",
"Debouncer.swift",
"Task+Delayed.swift"
],
"type" : "library"
}
],
"tools_version" : "5.5"
}
Done.