Build Information
Successful build of async-task, reference main (fa9543
), with Swift 6.2 (beta) for macOS (SPM) on 14 Aug 2025 13:44:26 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Build Log
========================================
RunAll
========================================
Builder version: 4.66.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/swiftuiux/async-task.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/swiftuiux/async-task
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at fa9543e update
Cloned https://github.com/swiftuiux/async-task.git
Revision (git rev-parse @):
fa9543e8765281c742052df9369877ddc59dc1f1
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/swiftuiux/async-task.git at main
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/swiftuiux/async-task.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-1EA4D86E10B52AF.txt
[3/10] Compiling async_task IAsyncTask.swift
/Users/admin/builder/spi-builder-workspace/Sources/async-task/protocol/IAsyncTask.swift:121:54: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
119 | /// - Note: Ensures all updates occur on the main actor, making it safe for use in UI-related contexts.
120 | @MainActor
121 | public func start(priority: TaskPriority? = nil, operation: @escaping Async.Producer<Value?>) {
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
122 | startTask(priority: priority) {
123 | try await operation()
/Users/admin/builder/spi-builder-workspace/Sources/async-task/protocol/IAsyncTask.swift:141:82: warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
139 | /// returns a value of type `Value` upon completion. The closure can throw an error if the task fails.
140 | @MainActor
141 | public func start<I: Sendable>(with input: I, priority: TaskPriority? = nil, operation: @escaping Async.Mapper<I, Value?>) {
| `- warning: capture of non-sendable type 'Self.Type' in an isolated closure; this is an error in the Swift 6 language mode
142 | startTask(priority: priority) {
143 | try await operation(input)
[4/10] Compiling async_task Async.swift
[5/10] Compiling async_task TaskProperty.swift
[6/10] Emitting module async_task
[7/10] Compiling async_task State.swift
[8/10] Compiling async_task SingleTask.swift
[9/10] Compiling async_task Type.swift
[10/10] Compiling async_task ObservableSingleTask.swift
Build complete! (7.36s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "async-task",
"name" : "async-task",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "12.0"
},
{
"name" : "ios",
"version" : "15.0"
},
{
"name" : "watchos",
"version" : "8.0"
},
{
"name" : "tvos",
"version" : "15.0"
}
],
"products" : [
{
"name" : "async-task",
"targets" : [
"async-task"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "async_task",
"module_type" : "SwiftTarget",
"name" : "async-task",
"path" : "Sources/async-task",
"product_memberships" : [
"async-task"
],
"sources" : [
"Async.swift",
"enum/State.swift",
"enum/TaskProperty.swift",
"protocol/IAsyncTask.swift",
"task/ObservableSingleTask.swift",
"task/SingleTask.swift",
"type/Type.swift"
],
"type" : "library"
}
],
"tools_version" : "5.7"
}
Done.