Build Information
Successful build of swift-reachability, reference main (05ec04), with Swift 6.3 for macOS (SPM) on 15 Apr 2026 13:11:20 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/mihai8804858/swift-reachability.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/mihai8804858/swift-reachability
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 05ec04c Enable strict concurrency
Cloned https://github.com/mihai8804858/swift-reachability.git
Revision (git rev-parse @):
05ec04cf569a253e959981b4f3ae1c4f0a9bd46d
SUCCESS checkout https://github.com/mihai8804858/swift-reachability.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",
"traits": [
"default"
],
"dependencies": [
{
"identity": "swift-reachability",
"name": "swift-reachability",
"url": "https://github.com/mihai8804858/swift-reachability.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/swift-reachability",
"traits": [
"default"
],
"dependencies": [
]
}
]
}
Fetching https://github.com/mihai8804858/swift-reachability.git
[1/165] Fetching swift-reachability
Fetched https://github.com/mihai8804858/swift-reachability.git from cache (0.71s)
Creating working copy for https://github.com/mihai8804858/swift-reachability.git
Working copy of https://github.com/mihai8804858/swift-reachability.git resolved at main (05ec04c)
warning: '.resolve-product-dependencies': dependency 'swift-reachability' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.3
Building package at path: $PWD
https://github.com/mihai8804858/swift-reachability.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/3] Copying PrivacyInfo.xcprivacy
[1/3] Write sources
[2/3] Write swift-version--6988338F2F200930.txt
[4/13] Compiling SwiftReachability PathType.swift
[5/13] Compiling SwiftReachability ConnectionType.swift
[6/13] Compiling SwiftReachability ConnectionStatus.swift
[7/13] Compiling SwiftReachability AsyncStream.swift
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/AsyncStream.swift:12:25: warning: capture of non-Sendable type 'S.AsyncIterator.Type' in an isolated closure [#SendableMetatypes]
10 | nonisolated(unsafe) var iterator: S.AsyncIterator?
11 | self.init {
12 | if iterator == nil { iterator = sequence.makeAsyncIterator() }
| `- warning: capture of non-Sendable type 'S.AsyncIterator.Type' in an isolated closure [#SendableMetatypes]
13 | return try? await iterator?.next()
14 | }
/Users/admin/builder/spi-builder-workspace/Sources/Extensions/AsyncStream.swift:12:45: warning: capture of non-Sendable type 'S.Type' in an isolated closure [#SendableMetatypes]
10 | nonisolated(unsafe) var iterator: S.AsyncIterator?
11 | self.init {
12 | if iterator == nil { iterator = sequence.makeAsyncIterator() }
| `- warning: capture of non-Sendable type 'S.Type' in an isolated closure [#SendableMetatypes]
13 | return try? await iterator?.next()
14 | }
[#SendableMetatypes]: <https://docs.swift.org/compiler/documentation/diagnostics/sendable-metatypes>
[8/13] Compiling SwiftReachability DisconnectedReason.swift
[9/13] Emitting module SwiftReachability
[10/13] Compiling SwiftReachability Reachability.swift
[11/13] Compiling SwiftReachability InterfaceType.swift
[12/13] Compiling SwiftReachability PathMonitorType.swift
[13/13] Compiling SwiftReachability TelephonyInfoType.swift
[14/14] Compiling SwiftReachability resource_bundle_accessor.swift
Build complete! (5.72s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "swift-reachability",
"name" : "swift-reachability",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "15.0"
},
{
"name" : "macos",
"version" : "12.0"
},
{
"name" : "tvos",
"version" : "15.0"
},
{
"name" : "watchos",
"version" : "8.0"
},
{
"name" : "visionos",
"version" : "1.0"
}
],
"products" : [
{
"name" : "SwiftReachability",
"targets" : [
"SwiftReachability"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"6"
],
"targets" : [
{
"c99name" : "SwiftReachabilityTests",
"module_type" : "SwiftTarget",
"name" : "SwiftReachabilityTests",
"path" : "Tests",
"sources" : [
"ConnectionStatusTests.swift",
"ConnectionTypeTests.swift",
"Helpers/FuncCheck.swift",
"Mocks/MockPath.swift",
"Mocks/MockPathMonitor.swift",
"Mocks/MockTelephonyInfo.swift",
"PathMonitorTests.swift",
"ReachabilityTests.swift",
"TelephonyInfoTests.swift"
],
"target_dependencies" : [
"SwiftReachability"
],
"type" : "test"
},
{
"c99name" : "SwiftReachability",
"module_type" : "SwiftTarget",
"name" : "SwiftReachability",
"path" : "Sources",
"product_memberships" : [
"SwiftReachability"
],
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Sources/Resources/PrivacyInfo.xcprivacy",
"rule" : {
"copy" : {
}
}
}
],
"sources" : [
"Connection/ConnectionStatus.swift",
"Connection/ConnectionType.swift",
"Connection/DisconnectedReason.swift",
"Extensions/AsyncStream.swift",
"PathMonitor/InterfaceType.swift",
"PathMonitor/PathMonitorType.swift",
"PathMonitor/PathType.swift",
"PathMonitor/TelephonyInfoType.swift",
"Reachability/Reachability.swift"
],
"type" : "library"
}
],
"tools_version" : "6.0"
}
Done.