Build Information
Successful build of DebouncedOnChange, reference main (2583a3), with Swift 6.3 for macOS (SPM) on 18 Apr 2026 10:43:24 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Tunous/DebouncedOnChange.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/Tunous/DebouncedOnChange
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
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 main
========================================
ResolveProductDependencies
========================================
Resolving dependencies ...
{
"identity": ".resolve-product-dependencies",
"name": "resolve-dependencies",
"url": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies",
"traits": [
"default"
],
"dependencies": [
{
"identity": "debouncedonchange",
"name": "DebouncedOnChange",
"url": "https://github.com/Tunous/DebouncedOnChange.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/DebouncedOnChange",
"traits": [
"default"
],
"dependencies": [
]
}
]
}
Fetching https://github.com/Tunous/DebouncedOnChange.git
[1/136] Fetching debouncedonchange
Fetched https://github.com/Tunous/DebouncedOnChange.git from cache (0.59s)
Creating working copy for https://github.com/Tunous/DebouncedOnChange.git
Working copy of https://github.com/Tunous/DebouncedOnChange.git resolved at main (2583a30)
warning: '.resolve-product-dependencies': dependency 'debouncedonchange' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.3
Building package at path: $PWD
https://github.com/Tunous/DebouncedOnChange.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--6988338F2F200930.txt
[3/7] Compiling DebouncedOnChange Task+Delayed.swift
[4/7] Emitting module DebouncedOnChange
[5/7] Compiling DebouncedOnChange Debouncer.swift
[6/7] Compiling DebouncedOnChange DebouncedTaskViewModifier.swift
[7/7] Compiling DebouncedOnChange DebouncedChangeViewModifier.swift
Build complete! (7.84s)
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"
}
✅ Doc result (pending) reported
========================================
GenerateDocs
========================================
Generating docs at path: $PWD/.docs/tunous/debouncedonchange/main
Repository: Tunous/DebouncedOnChange
Swift version used: 6.3
Target: DebouncedOnChange
Extracting symbol information for 'DebouncedOnChange'...
Finished extracting symbol information for 'DebouncedOnChange'. (44.63s)
Building documentation for 'DebouncedOnChange'...
warning: Parameter 'oldValue' not found in instance method declaration
--> ../DebouncedChangeViewModifier.swift:55:11-56:43
53 | /// - debouncer: Object used to manually cancel debounced actions.
54 | /// - action: A closure to run when the value changes.
55 + /// - oldValue: The old value that failed the comparison check (or the
| ╰─suggestion: Remove 'oldValue' parameter documentation
56 + /// initial value when requested).
57 | /// - newValue: The new value that failed the comparison check.
58 | /// - Returns: A view that fires an action after debounced time when the specified value changes.
warning: Parameter 'newValue' not found in instance method declaration
--> ../DebouncedChangeViewModifier.swift:57:11-57:70
55 | /// - oldValue: The old value that failed the comparison check (or the
56 | /// initial value when requested).
57 + /// - newValue: The new value that failed the comparison check.
| ╰─suggestion: Remove 'newValue' parameter documentation
58 | /// - Returns: A view that fires an action after debounced time when the specified value changes.
59 | @available(iOS 17, *)
warning: Parameter 'duration' not found in instance method declaration
--> ../DebouncedTaskViewModifier.swift:14:11-14:96
12 | /// - Parameters:
13 | /// - value: The value to observe for changes. The value must conform to the `Equatable` protocol.
14 + /// - duration: The time to wait after each value change before running `action` closure.
| ╰─suggestion: Remove 'duration' parameter documentation
15 | /// - action: A closure called after debounce time as an asynchronous task before the view appears. SwiftUI can
16 | /// automatically cancel the task after the view disappears before the action completes. If the id value
warning: Parameter 'debounceTime' is missing documentation
--> ../DebouncedTaskViewModifier.swift:17:60-17:60
15 | /// - action: A closure called after debounce time as an asynchronous task before the view appears. SwiftUI can
| ╰─suggestion: Document 'debounceTime' parameter
16 | /// automatically cancel the task after the view disappears before the action completes. If the id value
17 + /// changes, SwiftUI cancels and restarts the task.
18 | /// - Returns: A view that runs the specified action asynchronously before the view appears, or restarts the task
19 | /// with the id value changes after debounced time.
warning: Parameter 'priority' is missing documentation
--> ../DebouncedTaskViewModifier.swift:17:60-17:60
15 | /// - action: A closure called after debounce time as an asynchronous task before the view appears. SwiftUI can
| ╰─suggestion: Document 'priority' parameter
16 | /// automatically cancel the task after the view disappears before the action completes. If the id value
17 + /// changes, SwiftUI cancels and restarts the task.
18 | /// - Returns: A view that runs the specified action asynchronously before the view appears, or restarts the task
19 | /// with the id value changes after debounced time.
warning: Parameter 'duration' not found in instance method declaration
--> ../DebouncedTaskViewModifier.swift:45:11-45:96
43 | /// - Parameters:
44 | /// - value: The value to observe for changes. The value must conform to the `Equatable` protocol.
45 + /// - duration: The time to wait after each value change before running `action` closure.
| ╰─suggestion: Remove 'duration' parameter documentation
46 | /// - debouncer: Object used to manually cancel debounced actions.
47 | /// - action: A closure called after debounce time as an asynchronous task before the view appears. SwiftUI can
warning: Parameter 'priority' is missing documentation
--> ../DebouncedTaskViewModifier.swift:49:60-49:60
47 | /// - action: A closure called after debounce time as an asynchronous task before the view appears. SwiftUI can
48 | /// automatically cancel the task after the view disappears before the action completes. If the id value
49 + /// changes, SwiftUI cancels and restarts the task.
50 | /// - Returns: A view that runs the specified action asynchronously before the view appears, or restarts the task
51 | /// with the id value changes after debounced time.
warning: Parameter 'debounceTime' is missing documentation
--> ../DebouncedTaskViewModifier.swift:49:60-49:60
47 | /// - action: A closure called after debounce time as an asynchronous task before the view appears. SwiftUI can
48 | /// automatically cancel the task after the view disappears before the action completes. If the id value
49 + /// changes, SwiftUI cancels and restarts the task.
50 | /// - Returns: A view that runs the specified action asynchronously before the view appears, or restarts the task
51 | /// with the id value changes after debounced time.
warning: Parameter 'time' not found in type method declaration
--> ../Task+Delayed.swift:11:11-11:41
9 | ///
10 | /// - Parameters:
11 + /// - time: Delay time in seconds.
| ╰─suggestion: Remove 'time' parameter documentation
12 | /// - operation: The operation to execute.
13 | /// - Returns: Handle to the task which can be cancelled.
warning: Parameter 'seconds' is missing documentation
--> ../Task+Delayed.swift:12:49-12:49
10 | /// - Parameters:
11 | /// - time: Delay time in seconds.
12 + /// - operation: The operation to execute.
| ╰─suggestion: Document 'seconds' parameter
13 | /// - Returns: Handle to the task which can be cancelled.
14 | @discardableResult
Finished building documentation for 'DebouncedOnChange' (0.57s)
Generated documentation archive at:
/Users/admin/builder/spi-builder-workspace/.docs/tunous/debouncedonchange/main
Fetching https://github.com/swiftlang/swift-docc-plugin
[1/2277] Fetching swift-docc-plugin
Fetched https://github.com/swiftlang/swift-docc-plugin from cache (1.24s)
Computing version for https://github.com/swiftlang/swift-docc-plugin
Computed https://github.com/swiftlang/swift-docc-plugin at 1.4.6 (1.99s)
Fetching https://github.com/swiftlang/swift-docc-symbolkit
[1/3672] Fetching swift-docc-symbolkit
Fetched https://github.com/swiftlang/swift-docc-symbolkit from cache (1.05s)
Computing version for https://github.com/swiftlang/swift-docc-symbolkit
Computed https://github.com/swiftlang/swift-docc-symbolkit at 1.0.0 (1.80s)
Creating working copy for https://github.com/swiftlang/swift-docc-symbolkit
Working copy of https://github.com/swiftlang/swift-docc-symbolkit resolved at 1.0.0
Creating working copy for https://github.com/swiftlang/swift-docc-plugin
Working copy of https://github.com/swiftlang/swift-docc-plugin resolved at 1.4.6
Building for debugging...
[0/8] Write sources
[1/8] Write snippet-extract-tool-entitlement.plist
[1/8] Write sources
[4/8] Write swift-version--6988338F2F200930.txt
[6/53] Emitting module SymbolKit
[7/57] Compiling SymbolKit Mixin+Equals.swift
[8/57] Compiling SymbolKit Mixin+Hash.swift
[9/57] Compiling SymbolKit Mixin.swift
[10/57] Compiling SymbolKit LineList.swift
[11/57] Compiling SymbolKit Position.swift
[12/57] Compiling SymbolKit Relationship.swift
[13/57] Compiling SymbolKit RelationshipKind.swift
[14/57] Compiling SymbolKit SourceOrigin.swift
[15/57] Compiling SymbolKit GenericConstraints.swift
[16/57] Compiling SymbolKit Swift.swift
[17/57] Compiling SymbolKit GenericConstraint.swift
[18/57] Compiling SymbolKit GenericParameter.swift
[19/57] Compiling SymbolKit Generics.swift
[20/57] Compiling SymbolKit Namespace.swift
[21/57] Compiling SymbolKit Names.swift
[22/57] Compiling SymbolKit SPI.swift
[23/57] Compiling SymbolKit Snippet.swift
[24/57] Compiling SymbolKit Extension.swift
[25/57] Compiling SymbolKit SourceRange.swift
[26/57] Compiling SymbolKit Metadata.swift
[27/57] Compiling SymbolKit Module.swift
[28/57] Compiling SymbolKit OperatingSystem.swift
[29/57] Compiling SymbolKit Platform.swift
[30/57] Compiling SymbolKit DeclarationFragments.swift
[31/57] Compiling SymbolKit Fragment.swift
[32/57] Compiling SymbolKit FragmentKind.swift
[33/57] Compiling SymbolKit FunctionParameter.swift
[34/57] Compiling SymbolKit FunctionSignature.swift
[35/57] Compiling SymbolKit Identifier.swift
[36/57] Compiling SymbolKit KindIdentifier.swift
[37/57] Compiling SymbolKit Location.swift
[38/57] Compiling SymbolKit Mutability.swift
[39/57] Compiling SymbolKit SemanticVersion.swift
[40/57] Compiling SymbolKit AccessControl.swift
[41/57] Compiling SymbolKit Availability.swift
[42/57] Compiling SymbolKit AvailabilityItem.swift
[43/57] Compiling SymbolKit Domain.swift
[44/57] Compiling SymbolKit Symbol.swift
[45/57] Compiling SymbolKit SymbolKind.swift
[46/57] Compiling SymbolKit SymbolGraph.swift
[47/57] Compiling SymbolKit GraphCollector.swift
[48/57] Compiling Snippets Snippet.swift
[49/57] Emitting module Snippets
[50/57] Compiling Snippets SnippetParser.swift
[51/57] Compiling SymbolKit UnifiedSymbol+Encodable.swift
[52/57] Compiling SymbolKit UnifiedSymbol.swift
[53/57] Compiling SymbolKit UnifiedSymbolGraph+Encodable.swift
[54/57] Compiling SymbolKit UnifiedSymbolGraph.swift
[55/61] Compiling snippet_extract URL+Status.swift
[56/61] Compiling snippet_extract SymbolGraph+Snippet.swift
[57/61] Emitting module snippet_extract
[58/61] Compiling snippet_extract SnippetBuildCommand.swift
[58/61] Write Objects.LinkFileList
[59/61] Linking snippet-extract-tool
[60/61] Applying snippet-extract-tool
Build of product 'snippet-extract' complete! (4.94s)
Building for debugging...
[0/1] Write swift-version--6988338F2F200930.txt
Build of target: 'DebouncedOnChange' complete! (0.20s)
84
2 /Users/admin/builder/spi-builder-workspace/.docs/tunous/debouncedonchange/main
✅ Doc result (uploading) reported
========================================
SyncDocs
========================================
Doc archive source directory: $PWD/.docs/tunous/debouncedonchange/main
File count: 84
Doc size: 2.0MB
Preparing doc bundle ...
Uploading prod-tunous-debouncedonchange-main-eec573f9.zip to s3://spi-docs-inbox/prod-tunous-debouncedonchange-main-eec573f9.zip
Copying... [17%]
Copying... [34%]
Copying... [51%]
Copying... [68%]
Copying... [84%]
Copying... [100%]
Done.