Build Information
Successful build of SwiftGodotKick, reference main (d6b3d4), with Swift 6.1 for macOS (SPM) on 22 Jun 2025 18:20:17 UTC.
Swift 6 data race errors: 4
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.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/EstevanBR/SwiftGodotKick.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/EstevanBR/SwiftGodotKick
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at d6b3d4d fix typo (#21)
Cloned https://github.com/EstevanBR/SwiftGodotKick.git
Revision (git rev-parse @):
d6b3d4d0adadb15873e30b85663328277441ffe5
SUCCESS checkout https://github.com/EstevanBR/SwiftGodotKick.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",
"dependencies": [
{
"identity": "swiftgodotkick",
"name": "SwiftGodotKick",
"url": "https://github.com/EstevanBR/SwiftGodotKick.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/SwiftGodotKick",
"dependencies": [
]
}
]
}
Fetching https://github.com/EstevanBR/SwiftGodotKick.git
[1/323] Fetching swiftgodotkick
Fetched https://github.com/EstevanBR/SwiftGodotKick.git from cache (0.76s)
Creating working copy for https://github.com/EstevanBR/SwiftGodotKick.git
Working copy of https://github.com/EstevanBR/SwiftGodotKick.git resolved at main (d6b3d4d)
Found 0 product dependencies
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.1
Building package at path: $PWD
https://github.com/EstevanBR/SwiftGodotKick.git
https://github.com/EstevanBR/SwiftGodotKick.git
{
"dependencies" : [
],
"manifest_display_name" : "SwiftGodotKick",
"name" : "SwiftGodotKick",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "swift-godot-kick",
"targets" : [
"CreateProject"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "CreateProject",
"module_type" : "SwiftTarget",
"name" : "CreateProject",
"path" : "Sources/CreateProject",
"product_memberships" : [
"swift-godot-kick"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/CreateProject/Resources",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"ChangeDirectoryError.swift",
"Color.swift",
"CreateProject.swift",
"DataFactory.swift",
"Extensions/ProcessInfo+SwiftGodotKick.swift",
"Extensions/UserChoice+Argument.swift",
"FileFactory.swift",
"FileManager+SwiftGodotKick.swift",
"UserChoice.swift"
],
"type" : "executable"
}
],
"tools_version" : "5.9"
}
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 sources
[1/7] Write swift-godot-kick-entitlement.plist
[2/7] Copying Resources
[3/7] Write swift-version-2F0A5646E1D333AE.txt
[5/17] Compiling CreateProject UserChoice+Argument.swift
[6/17] Compiling CreateProject FileManager+SwiftGodotKick.swift
[7/17] Compiling CreateProject UserChoice.swift
/Users/admin/builder/spi-builder-workspace/Sources/CreateProject/UserChoice.swift:16:16: warning: static property 'shouldColorizeOutput' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 | }
15 |
16 | static var shouldColorizeOutput: Bool = {
| |- warning: static property 'shouldColorizeOutput' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'shouldColorizeOutput' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'shouldColorizeOutput' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | !ProcessInfo.processInfo.arguments.contains(Argument.noColor.rawValue)
18 | }()
/Users/admin/builder/spi-builder-workspace/Sources/CreateProject/UserChoice.swift:20:16: warning: static property 'shouldHelp' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 | }()
19 |
20 | static var shouldHelp: Bool = {
| |- warning: static property 'shouldHelp' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'shouldHelp' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'shouldHelp' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | ProcessInfo.processInfo.arguments.contains(Argument.help.rawValue)
22 | }()
/Users/admin/builder/spi-builder-workspace/Sources/CreateProject/UserChoice.swift:24:16: warning: static property 'shouldShowVersion' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
22 | }()
23 |
24 | static var shouldShowVersion: Bool = {
| |- warning: static property 'shouldShowVersion' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'shouldShowVersion' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'shouldShowVersion' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | ProcessInfo.processInfo.arguments.contains(Argument.version.rawValue)
26 | }()
[8/18] Compiling CreateProject DataFactory.swift
[9/18] Compiling CreateProject CreateProject.swift
[10/18] Compiling CreateProject ChangeDirectoryError.swift
[11/18] Compiling CreateProject FileFactory.swift
/Users/admin/builder/spi-builder-workspace/Sources/CreateProject/FileFactory.swift:17:24: warning: static property 'fileManager' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
15 | }
16 |
17 | private static let fileManager = FileManager()
| |- warning: static property 'fileManager' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'fileManager' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | static func createProjectDirectory(atPath path: String, projectName: String) throws -> String {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h:96:12: note: class 'FileManager' does not conform to the 'Sendable' protocol
94 | extern NSNotificationName const NSUbiquityIdentityDidChangeNotification API_AVAILABLE(macos(10.8), ios(6.0), watchos(2.0), tvos(9.0));
95 |
96 | @interface NSFileManager : NSObject
| `- note: class 'FileManager' does not conform to the 'Sendable' protocol
97 |
98 | /* Returns the default singleton instance.
[12/18] Compiling CreateProject Color.swift
[13/18] Compiling CreateProject ProcessInfo+SwiftGodotKick.swift
[14/18] Emitting module CreateProject
/Users/admin/builder/spi-builder-workspace/Sources/CreateProject/FileFactory.swift:17:24: warning: static property 'fileManager' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
15 | }
16 |
17 | private static let fileManager = FileManager()
| |- warning: static property 'fileManager' is not concurrency-safe because non-'Sendable' type 'FileManager' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'fileManager' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
18 |
19 | static func createProjectDirectory(atPath path: String, projectName: String) throws -> String {
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/Foundation.framework/Headers/NSFileManager.h:96:12: note: class 'FileManager' does not conform to the 'Sendable' protocol
94 | extern NSNotificationName const NSUbiquityIdentityDidChangeNotification API_AVAILABLE(macos(10.8), ios(6.0), watchos(2.0), tvos(9.0));
95 |
96 | @interface NSFileManager : NSObject
| `- note: class 'FileManager' does not conform to the 'Sendable' protocol
97 |
98 | /* Returns the default singleton instance.
/Users/admin/builder/spi-builder-workspace/Sources/CreateProject/UserChoice.swift:16:16: warning: static property 'shouldColorizeOutput' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 | }
15 |
16 | static var shouldColorizeOutput: Bool = {
| |- warning: static property 'shouldColorizeOutput' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'shouldColorizeOutput' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'shouldColorizeOutput' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 | !ProcessInfo.processInfo.arguments.contains(Argument.noColor.rawValue)
18 | }()
/Users/admin/builder/spi-builder-workspace/Sources/CreateProject/UserChoice.swift:20:16: warning: static property 'shouldHelp' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
18 | }()
19 |
20 | static var shouldHelp: Bool = {
| |- warning: static property 'shouldHelp' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'shouldHelp' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'shouldHelp' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
21 | ProcessInfo.processInfo.arguments.contains(Argument.help.rawValue)
22 | }()
/Users/admin/builder/spi-builder-workspace/Sources/CreateProject/UserChoice.swift:24:16: warning: static property 'shouldShowVersion' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
22 | }()
23 |
24 | static var shouldShowVersion: Bool = {
| |- warning: static property 'shouldShowVersion' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
| |- note: convert 'shouldShowVersion' to a 'let' constant to make 'Sendable' shared state immutable
| |- note: add '@MainActor' to make static property 'shouldShowVersion' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
25 | ProcessInfo.processInfo.arguments.contains(Argument.version.rawValue)
26 | }()
[15/18] Compiling CreateProject resource_bundle_accessor.swift
[15/18] Write Objects.LinkFileList
[16/18] Linking swift-godot-kick
[17/18] Applying swift-godot-kick
Build complete! (6.43s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "SwiftGodotKick",
"name" : "SwiftGodotKick",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "swift-godot-kick",
"targets" : [
"CreateProject"
],
"type" : {
"executable" : null
}
}
],
"targets" : [
{
"c99name" : "CreateProject",
"module_type" : "SwiftTarget",
"name" : "CreateProject",
"path" : "Sources/CreateProject",
"product_memberships" : [
"swift-godot-kick"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/CreateProject/Resources",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"ChangeDirectoryError.swift",
"Color.swift",
"CreateProject.swift",
"DataFactory.swift",
"Extensions/ProcessInfo+SwiftGodotKick.swift",
"Extensions/UserChoice+Argument.swift",
"FileFactory.swift",
"FileManager+SwiftGodotKick.swift",
"UserChoice.swift"
],
"type" : "executable"
}
],
"tools_version" : "5.9"
}
Done.