Build Information
Successful build of VimTerminalKit, reference v1.0.2 (100d23
), with Swift 6.1 for macOS (SPM) on 29 Apr 2025 19:18:31 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 InferSendableFromCaptures
Build Log
========================================
RunAll
========================================
Builder version: 4.61.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/marcusziade/VimTerminalKit.git
Reference: v1.0.2
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/marcusziade/VimTerminalKit
* tag v1.0.2 -> FETCH_HEAD
HEAD is now at 100d235 Update README.md
Cloned https://github.com/marcusziade/VimTerminalKit.git
Revision (git rev-parse @):
100d235f6d3dde84efc90a46849f6e0268a689a7
SUCCESS checkout https://github.com/marcusziade/VimTerminalKit.git at v1.0.2
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.1
Building package at path: $PWD
https://github.com/marcusziade/VimTerminalKit.git
https://github.com/marcusziade/VimTerminalKit.git
{
"dependencies" : [
],
"manifest_display_name" : "VimTerminalKit",
"name" : "VimTerminalKit",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "13.0"
},
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "watchos",
"version" : "9.0"
},
{
"name" : "tvos",
"version" : "15.0"
}
],
"products" : [
{
"name" : "VimTerminalKit",
"targets" : [
"VimTerminalKit"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "FileExplorer",
"targets" : [
"FileExplorer"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "VimTerminalKitTests",
"module_type" : "SwiftTarget",
"name" : "VimTerminalKitTests",
"path" : "Tests/VimTerminalKitTests",
"sources" : [
"LoadingAnimatorTests.swift",
"NavigatorTests.swift",
"StateManagerTests.swift",
"TerminalControlTests.swift"
],
"target_dependencies" : [
"VimTerminalKit"
],
"type" : "test"
},
{
"c99name" : "VimTerminalKit",
"module_type" : "SwiftTarget",
"name" : "VimTerminalKit",
"path" : "Sources/VimTerminalKit",
"product_memberships" : [
"VimTerminalKit",
"FileExplorer"
],
"sources" : [
"Direction.swift",
"InputReader.swift",
"InputType.swift",
"LoadingAnimation.swift",
"Navigator.swift",
"StateManager.swift",
"Terminal.swift",
"VimTerminalKit.swift"
],
"type" : "library"
},
{
"c99name" : "FileExplorer",
"module_type" : "SwiftTarget",
"name" : "FileExplorer",
"path" : "Sources/FileExplorer",
"product_memberships" : [
"FileExplorer"
],
"sources" : [
"FileExplorer.swift"
],
"target_dependencies" : [
"VimTerminalKit"
],
"type" : "executable"
}
],
"tools_version" : "5.7"
}
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/7] Write FileExplorer-entitlement.plist
[0/7] Write sources
[3/7] Write swift-version-2F0A5646E1D333AE.txt
[5/16] Compiling VimTerminalKit Terminal.swift
[6/16] Compiling VimTerminalKit VimTerminalKit.swift
[7/16] Compiling VimTerminalKit StateManager.swift
[8/16] Compiling VimTerminalKit LoadingAnimation.swift
/Users/admin/builder/spi-builder-workspace/Sources/VimTerminalKit/LoadingAnimation.swift:74:34: warning: capture of 'self' with non-sendable type 'VimTerminalKit.LoadingAnimator?' in a '@Sendable' closure
30 | /// animator.stop()
31 | /// ```
32 | final class LoadingAnimator {
| `- note: class 'LoadingAnimator' does not conform to the 'Sendable' protocol
33 | /// The collection of animation frames to cycle through.
34 | private let frames: [String]
:
72 | animationQueue = DispatchQueue(label: "com.vimterminalkit.loading")
73 | animationQueue?.async { [weak self] in
74 | guard let self = self else { return }
| `- warning: capture of 'self' with non-sendable type 'VimTerminalKit.LoadingAnimator?' in a '@Sendable' closure
75 | while self.isRunning {
76 | let newMessage = "\(self.initialMessage) \(self.frames[self.animationFrame])"
[9/16] Compiling VimTerminalKit InputType.swift
[10/16] Compiling VimTerminalKit Direction.swift
[11/16] Compiling VimTerminalKit InputReader.swift
[12/16] Compiling VimTerminalKit Navigator.swift
[13/16] Emitting module VimTerminalKit
[14/18] Compiling FileExplorer FileExplorer.swift
/Users/admin/builder/spi-builder-workspace/Sources/FileExplorer/FileExplorer.swift:64: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
62 |
63 | private func loadCurrentDirectory() {
64 | Task { [weak self] in
| `- 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
65 | guard let self else { return }
| `- note: closure captures 'self' which is accessible to code in the current task
66 | try await self.stateManager.withLoading(message: "Loading directory contents...") {
67 | let contents = try self.fileManager.contentsOfDirectory(atPath: self.currentPath)
[15/18] Emitting module FileExplorer
[15/18] Write Objects.LinkFileList
[16/18] Linking FileExplorer
[17/18] Applying FileExplorer
Build complete! (5.99s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "VimTerminalKit",
"name" : "VimTerminalKit",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "13.0"
},
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "watchos",
"version" : "9.0"
},
{
"name" : "tvos",
"version" : "15.0"
}
],
"products" : [
{
"name" : "VimTerminalKit",
"targets" : [
"VimTerminalKit"
],
"type" : {
"library" : [
"automatic"
]
}
},
{
"name" : "FileExplorer",
"targets" : [
"FileExplorer"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "VimTerminalKitTests",
"module_type" : "SwiftTarget",
"name" : "VimTerminalKitTests",
"path" : "Tests/VimTerminalKitTests",
"sources" : [
"LoadingAnimatorTests.swift",
"NavigatorTests.swift",
"StateManagerTests.swift",
"TerminalControlTests.swift"
],
"target_dependencies" : [
"VimTerminalKit"
],
"type" : "test"
},
{
"c99name" : "VimTerminalKit",
"module_type" : "SwiftTarget",
"name" : "VimTerminalKit",
"path" : "Sources/VimTerminalKit",
"product_memberships" : [
"VimTerminalKit",
"FileExplorer"
],
"sources" : [
"Direction.swift",
"InputReader.swift",
"InputType.swift",
"LoadingAnimation.swift",
"Navigator.swift",
"StateManager.swift",
"Terminal.swift",
"VimTerminalKit.swift"
],
"type" : "library"
},
{
"c99name" : "FileExplorer",
"module_type" : "SwiftTarget",
"name" : "FileExplorer",
"path" : "Sources/FileExplorer",
"product_memberships" : [
"FileExplorer"
],
"sources" : [
"FileExplorer.swift"
],
"target_dependencies" : [
"VimTerminalKit"
],
"type" : "executable"
}
],
"tools_version" : "5.7"
}
Done.