Build Information
Successful build of SwiftRDPTools, reference 1.0.3 (11fd81), with Swift 6.1 for macOS (SPM) on 24 Oct 2025 22:10:43 UTC.
Swift 6 data race errors: 2
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.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/timi2506/swift-rdp-tools.git
Reference: 1.0.3
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/timi2506/swift-rdp-tools
* tag 1.0.3 -> FETCH_HEAD
HEAD is now at 11fd818 Update RDPTools.swift
Cloned https://github.com/timi2506/swift-rdp-tools.git
Revision (git rev-parse @):
11fd818b99a458afd5129b6ab773fd818cf44a12
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/timi2506/swift-rdp-tools.git at 1.0.3
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.1
Building package at path: $PWD
https://github.com/timi2506/swift-rdp-tools.git
https://github.com/timi2506/swift-rdp-tools.git
{
"dependencies" : [
],
"manifest_display_name" : "SwiftRDPTools",
"name" : "SwiftRDPTools",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "RDPTools",
"targets" : [
"RDPTools"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "RDPTools",
"module_type" : "SwiftTarget",
"name" : "RDPTools",
"path" : "Sources/RDPTools",
"product_memberships" : [
"RDPTools"
],
"sources" : [
"RDPTools.swift"
],
"type" : "library"
}
],
"tools_version" : "5.5"
}
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/2] Write sources
[1/2] Write swift-version-2F0A5646E1D333AE.txt
[3/4] Emitting module RDPTools
/Users/admin/builder/spi-builder-workspace/Sources/RDPTools/RDPTools.swift:9:23: warning: static property 'username' is not concurrency-safe because non-'Sendable' type 'RDPKey' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct RDPKey: RawRepresentable, Hashable, ExpressibleByStringLiteral, Codable {
| `- note: consider making struct 'RDPKey' conform to the 'Sendable' protocol
4 | public let rawValue: String
5 |
:
7 | public init(stringLiteral value: String) { self.rawValue = value }
8 |
9 | public static let username: RDPKey = "username"
| |- warning: static property 'username' is not concurrency-safe because non-'Sendable' type 'RDPKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'username' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | public static let fullAddress: RDPKey = "full address"
11 | }
/Users/admin/builder/spi-builder-workspace/Sources/RDPTools/RDPTools.swift:10:23: warning: static property 'fullAddress' is not concurrency-safe because non-'Sendable' type 'RDPKey' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct RDPKey: RawRepresentable, Hashable, ExpressibleByStringLiteral, Codable {
| `- note: consider making struct 'RDPKey' conform to the 'Sendable' protocol
4 | public let rawValue: String
5 |
:
8 |
9 | public static let username: RDPKey = "username"
10 | public static let fullAddress: RDPKey = "full address"
| |- warning: static property 'fullAddress' is not concurrency-safe because non-'Sendable' type 'RDPKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'fullAddress' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | }
12 |
[4/4] Compiling RDPTools RDPTools.swift
/Users/admin/builder/spi-builder-workspace/Sources/RDPTools/RDPTools.swift:9:23: warning: static property 'username' is not concurrency-safe because non-'Sendable' type 'RDPKey' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct RDPKey: RawRepresentable, Hashable, ExpressibleByStringLiteral, Codable {
| `- note: consider making struct 'RDPKey' conform to the 'Sendable' protocol
4 | public let rawValue: String
5 |
:
7 | public init(stringLiteral value: String) { self.rawValue = value }
8 |
9 | public static let username: RDPKey = "username"
| |- warning: static property 'username' is not concurrency-safe because non-'Sendable' type 'RDPKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'username' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
10 | public static let fullAddress: RDPKey = "full address"
11 | }
/Users/admin/builder/spi-builder-workspace/Sources/RDPTools/RDPTools.swift:10:23: warning: static property 'fullAddress' is not concurrency-safe because non-'Sendable' type 'RDPKey' may have shared mutable state; this is an error in the Swift 6 language mode
1 | import Foundation
2 |
3 | public struct RDPKey: RawRepresentable, Hashable, ExpressibleByStringLiteral, Codable {
| `- note: consider making struct 'RDPKey' conform to the 'Sendable' protocol
4 | public let rawValue: String
5 |
:
8 |
9 | public static let username: RDPKey = "username"
10 | public static let fullAddress: RDPKey = "full address"
| |- warning: static property 'fullAddress' is not concurrency-safe because non-'Sendable' type 'RDPKey' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'fullAddress' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
11 | }
12 |
Build complete! (4.15s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "SwiftRDPTools",
"name" : "SwiftRDPTools",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
],
"products" : [
{
"name" : "RDPTools",
"targets" : [
"RDPTools"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "RDPTools",
"module_type" : "SwiftTarget",
"name" : "RDPTools",
"path" : "Sources/RDPTools",
"product_memberships" : [
"RDPTools"
],
"sources" : [
"RDPTools.swift"
],
"type" : "library"
}
],
"tools_version" : "5.5"
}
Done.