The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of Kyu, reference master (4d439e), with Swift 6.2 (beta) for macOS (SPM) on 19 Jun 2025 08:33:57 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.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/reddavis/Kyu.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/reddavis/Kyu
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 4d439ef Add MIT license
Cloned https://github.com/reddavis/Kyu.git
Revision (git rev-parse @):
4d439ef25834eafcd2a10d86d0cbe9db126f8604
SUCCESS checkout https://github.com/reddavis/Kyu.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/reddavis/Kyu.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/8] Compiling Kyu Directory.swift
[4/8] Compiling Kyu Kyu.swift
/Users/admin/builder/spi-builder-workspace/Kyu/Source/Kyu.swift:77:25: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
75 |
76 |         Task { [weak runner] in
77 |             await runner?.startObservingPendingDirectory()
   |                         `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
78 |         }
79 |     }
/Users/admin/builder/spi-builder-workspace/Kyu/Source/Kyu.swift:76:22: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
74 |         )
75 |
76 |         Task { [weak runner] in
   |                      `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
77 |             await runner?.startObservingPendingDirectory()
78 |         }
[5/8] Compiling Kyu Logger.swift
[6/8] Compiling Kyu Job.swift
[7/8] Compiling Kyu Runner.swift
/Users/admin/builder/spi-builder-workspace/Kyu/Source/Runner.swift:28:27: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 26 |             {
 27 |                 Task {
 28 |                     await self.processNextJob()
    |                           `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 29 |                 }
 30 |             }
/Users/admin/builder/spi-builder-workspace/Kyu/Source/Runner.swift:23:9: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 21 |     /// Indicates whether Kyu is processing a job.
 22 |     private var isProcessing = false {
 23 |         didSet
    |         `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 24 |         {
 25 |             if !self.isProcessing
/Users/admin/builder/spi-builder-workspace/Kyu/Source/Runner.swift:239:23: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
237 |             guard let self = self else { return }
238 |             Task {
239 |                 await self.processNextJob()
    |                       `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
240 |             }
241 |         }
/Users/admin/builder/spi-builder-workspace/Kyu/Source/Runner.swift:237:23: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
235 |
236 |         self.jobDirectoryObserver.setEventHandler { [weak self] in
237 |             guard let self = self else { return }
    |                       `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
238 |             Task {
239 |                 await self.processNextJob()
/Users/admin/builder/spi-builder-workspace/Kyu/Source/Runner.swift:246:19: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
244 |         // Trigger first process
245 |         Task {
246 |             await self.processNextJob()
    |                   `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
247 |         }
248 |     }
/Users/admin/builder/spi-builder-workspace/Kyu/Source/Runner.swift:225:10: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
223 |
224 |     /// Start observing pending job directory for new jobs.
225 |     func startObservingPendingDirectory()
    |          `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
226 |     {
227 |         self.logger.debug("Starting pending directory observer")
[8/8] Emitting module Kyu
/Users/admin/builder/spi-builder-workspace/Kyu/Source/Runner.swift:28:27: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 26 |             {
 27 |                 Task {
 28 |                     await self.processNextJob()
    |                           `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 29 |                 }
 30 |             }
/Users/admin/builder/spi-builder-workspace/Kyu/Source/Runner.swift:23:9: warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 21 |     /// Indicates whether Kyu is processing a job.
 22 |     private var isProcessing = false {
 23 |         didSet
    |         `- warning: capture of non-sendable type 'T.Type' in an isolated closure; this is an error in the Swift 6 language mode
 24 |         {
 25 |             if !self.isProcessing
Build complete! (3.42s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "Kyu",
  "name" : "Kyu",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "15.0"
    },
    {
      "name" : "macos",
      "version" : "12.0"
    }
  ],
  "products" : [
    {
      "name" : "Kyu",
      "targets" : [
        "Kyu"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "KyuTests",
      "module_type" : "SwiftTarget",
      "name" : "KyuTests",
      "path" : "KyuTests",
      "sources" : [
        "Source/AppendNewLineJob.swift",
        "Source/Assertions.swift",
        "Source/Tests/DirectoryTests.swift",
        "Source/Tests/KyuTests.swift"
      ],
      "target_dependencies" : [
        "Kyu"
      ],
      "type" : "test"
    },
    {
      "c99name" : "Kyu",
      "module_type" : "SwiftTarget",
      "name" : "Kyu",
      "path" : "Kyu",
      "product_memberships" : [
        "Kyu"
      ],
      "sources" : [
        "Source/Directory.swift",
        "Source/Job.swift",
        "Source/Kyu.swift",
        "Source/Logger.swift",
        "Source/Runner.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.3"
}
Done.