Build Information
Successful build of Datable, reference 4.0.1 (118634), with Swift 6.2 for macOS (SPM) on 20 Jun 2025 17:42:25 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/OperatorFoundation/Datable.git
Reference: 4.0.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/OperatorFoundation/Datable
* tag 4.0.1 -> FETCH_HEAD
HEAD is now at 1186348 Conversions between different types of ints and floats
Cloned https://github.com/OperatorFoundation/Datable.git
Revision (git rev-parse @):
118634847e499cc5a1edc1b852ea9b496cf7f5d2
SUCCESS checkout https://github.com/OperatorFoundation/Datable.git at 4.0.1
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/OperatorFoundation/Datable.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/37] Emitting module Datable
/Users/admin/builder/spi-builder-workspace/Sources/Datable/Data+ExpressibleByStringLiteral.swift:10:1: warning: extension declares a conformance of imported type 'Data' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
8 | import Foundation
9 |
10 | extension Data: ExpressibleByStringLiteral {
| |- warning: extension declares a conformance of imported type 'Data' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | public typealias StringLiteralType = String
12 |
[4/40] Compiling Datable MaybeDatable.swift
[5/40] Compiling Datable MaybeIntable.swift
[6/40] Compiling Datable MaybeNetworkIntable.swift
[7/40] Compiling Datable NetworkDatable.swift
[8/40] Compiling Datable Int+MaybeDatable.swift
[9/40] Compiling Datable Int+MaybeIntable.swift
[10/40] Compiling Datable Int+Stringable.swift
[11/40] Compiling Datable Intable.swift
[12/40] Compiling Datable UInt+Datable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Datable/UInt+MaybeNetworkDatable.swift:23:36: warning: will never be executed
14 | public init?(maybeNetworkData: Data)
15 | {
16 | switch UInt.bitWidth {
| `- note: condition always evaluates to false
17 | case 64:
18 | guard let result = UInt64(maybeNetworkData: maybeNetworkData) else {
:
21 | self = UInt(result)
22 | case 32:
23 | guard let result = UInt32(maybeNetworkData: maybeNetworkData) else {
| `- warning: will never be executed
24 | return nil
25 | }
/Users/admin/builder/spi-builder-workspace/Sources/Datable/UInt+MaybeNetworkDatable.swift:42:24: warning: will never be executed
32 | public var maybeNetworkData: Data?
33 | {
34 | switch UInt.bitWidth {
| `- note: condition always evaluates to true
35 | case 64:
36 | let result = UInt64(self)
:
40 | return result.maybeNetworkData
41 | default:
42 | return nil
| `- warning: will never be executed
43 | }
44 | }
/Users/admin/builder/spi-builder-workspace/Sources/Datable/UInt+MaybeNetworkDatable.swift:39:30: warning: will never be executed
32 | public var maybeNetworkData: Data?
33 | {
34 | switch UInt.bitWidth {
| `- note: condition always evaluates to false
35 | case 64:
36 | let result = UInt64(self)
37 | return result.maybeNetworkData
38 | case 32:
39 | let result = UInt32(self)
| `- warning: will never be executed
40 | return result.maybeNetworkData
41 | default:
[13/40] Compiling Datable UInt+MaybeNetworkDatable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Datable/UInt+MaybeNetworkDatable.swift:23:36: warning: will never be executed
14 | public init?(maybeNetworkData: Data)
15 | {
16 | switch UInt.bitWidth {
| `- note: condition always evaluates to false
17 | case 64:
18 | guard let result = UInt64(maybeNetworkData: maybeNetworkData) else {
:
21 | self = UInt(result)
22 | case 32:
23 | guard let result = UInt32(maybeNetworkData: maybeNetworkData) else {
| `- warning: will never be executed
24 | return nil
25 | }
/Users/admin/builder/spi-builder-workspace/Sources/Datable/UInt+MaybeNetworkDatable.swift:42:24: warning: will never be executed
32 | public var maybeNetworkData: Data?
33 | {
34 | switch UInt.bitWidth {
| `- note: condition always evaluates to true
35 | case 64:
36 | let result = UInt64(self)
:
40 | return result.maybeNetworkData
41 | default:
42 | return nil
| `- warning: will never be executed
43 | }
44 | }
/Users/admin/builder/spi-builder-workspace/Sources/Datable/UInt+MaybeNetworkDatable.swift:39:30: warning: will never be executed
32 | public var maybeNetworkData: Data?
33 | {
34 | switch UInt.bitWidth {
| `- note: condition always evaluates to false
35 | case 64:
36 | let result = UInt64(self)
37 | return result.maybeNetworkData
38 | case 32:
39 | let result = UInt32(self)
| `- warning: will never be executed
40 | return result.maybeNetworkData
41 | default:
[14/40] Compiling Datable UInt+Stringable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Datable/UInt+MaybeNetworkDatable.swift:23:36: warning: will never be executed
14 | public init?(maybeNetworkData: Data)
15 | {
16 | switch UInt.bitWidth {
| `- note: condition always evaluates to false
17 | case 64:
18 | guard let result = UInt64(maybeNetworkData: maybeNetworkData) else {
:
21 | self = UInt(result)
22 | case 32:
23 | guard let result = UInt32(maybeNetworkData: maybeNetworkData) else {
| `- warning: will never be executed
24 | return nil
25 | }
/Users/admin/builder/spi-builder-workspace/Sources/Datable/UInt+MaybeNetworkDatable.swift:42:24: warning: will never be executed
32 | public var maybeNetworkData: Data?
33 | {
34 | switch UInt.bitWidth {
| `- note: condition always evaluates to true
35 | case 64:
36 | let result = UInt64(self)
:
40 | return result.maybeNetworkData
41 | default:
42 | return nil
| `- warning: will never be executed
43 | }
44 | }
/Users/admin/builder/spi-builder-workspace/Sources/Datable/UInt+MaybeNetworkDatable.swift:39:30: warning: will never be executed
32 | public var maybeNetworkData: Data?
33 | {
34 | switch UInt.bitWidth {
| `- note: condition always evaluates to false
35 | case 64:
36 | let result = UInt64(self)
37 | return result.maybeNetworkData
38 | case 32:
39 | let result = UInt32(self)
| `- warning: will never be executed
40 | return result.maybeNetworkData
41 | default:
[15/40] Compiling Datable NetworkIntable.swift
[16/40] Compiling Datable String+Arrayable.swift
[17/40] Compiling Datable String+Datable.swift
[18/40] Compiling Datable Data+Datable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Datable/Data+ExpressibleByStringLiteral.swift:10:1: warning: extension declares a conformance of imported type 'Data' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
8 | import Foundation
9 |
10 | extension Data: ExpressibleByStringLiteral {
| |- warning: extension declares a conformance of imported type 'Data' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | public typealias StringLiteralType = String
12 |
[19/40] Compiling Datable Data+ExpressibleByStringLiteral.swift
/Users/admin/builder/spi-builder-workspace/Sources/Datable/Data+ExpressibleByStringLiteral.swift:10:1: warning: extension declares a conformance of imported type 'Data' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
8 | import Foundation
9 |
10 | extension Data: ExpressibleByStringLiteral {
| |- warning: extension declares a conformance of imported type 'Data' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | public typealias StringLiteralType = String
12 |
[20/40] Compiling Datable Data+Floatable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Datable/Data+ExpressibleByStringLiteral.swift:10:1: warning: extension declares a conformance of imported type 'Data' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
8 | import Foundation
9 |
10 | extension Data: ExpressibleByStringLiteral {
| |- warning: extension declares a conformance of imported type 'Data' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | public typealias StringLiteralType = String
12 |
[21/40] Compiling Datable Data+MaybeIntable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Datable/Data+ExpressibleByStringLiteral.swift:10:1: warning: extension declares a conformance of imported type 'Data' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
8 | import Foundation
9 |
10 | extension Data: ExpressibleByStringLiteral {
| |- warning: extension declares a conformance of imported type 'Data' to imported protocols 'ExpressibleByStringLiteral', 'ExpressibleByExtendedGraphemeClusterLiteral', 'ExpressibleByUnicodeScalarLiteral'; this will not behave correctly if the owners of 'Foundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
11 | public typealias StringLiteralType = String
12 |
[22/40] Compiling Datable String+Intable.swift
[23/40] Compiling Datable Stringable.swift
[24/40] Compiling Datable StringableArray+CSVable.swift
[25/40] Compiling Datable Float+MaybeDatable.swift
[26/40] Compiling Datable Float+MaybeIntable.swift
[27/40] Compiling Datable Floatable.swift
[28/40] Compiling Datable Int+Floatable.swift
[29/40] Compiling Datable Double+MaybeDatable.swift
[30/40] Compiling Datable Double+Stringable.swift
[31/40] Compiling Datable File.swift
[32/40] Compiling Datable Float+Floatable.swift
[33/40] Compiling Datable Arrayable.swift
[34/40] Compiling Datable CSVable.swift
[35/40] Compiling Datable Data+Arrayable.swift
[36/40] Compiling Datable Data+Base64.swift
[37/40] Compiling Datable Data+MaybeNetworkIntable.swift
[38/40] Compiling Datable Data+Stringable.swift
[39/40] Compiling Datable Datable.swift
[40/40] Compiling Datable DatableConfig.swift
Build complete! (5.12s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "Datable",
"name" : "Datable",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "12.0"
},
{
"name" : "ios",
"version" : "14.0"
}
],
"products" : [
{
"name" : "Datable",
"targets" : [
"Datable"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "DatableTests",
"module_type" : "SwiftTarget",
"name" : "DatableTests",
"path" : "Tests/DatableTests",
"sources" : [
"DatableTests.swift"
],
"target_dependencies" : [
"Datable"
],
"type" : "test"
},
{
"c99name" : "Datable",
"module_type" : "SwiftTarget",
"name" : "Datable",
"path" : "Sources/Datable",
"product_memberships" : [
"Datable"
],
"sources" : [
"Arrayable.swift",
"CSVable.swift",
"Data+Arrayable.swift",
"Data+Base64.swift",
"Data+Datable.swift",
"Data+ExpressibleByStringLiteral.swift",
"Data+Floatable.swift",
"Data+MaybeIntable.swift",
"Data+MaybeNetworkIntable.swift",
"Data+Stringable.swift",
"Datable.swift",
"DatableConfig.swift",
"Double+MaybeDatable.swift",
"Double+Stringable.swift",
"File.swift",
"Float+Floatable.swift",
"Float+MaybeDatable.swift",
"Float+MaybeIntable.swift",
"Floatable.swift",
"Int+Floatable.swift",
"Int+MaybeDatable.swift",
"Int+MaybeIntable.swift",
"Int+Stringable.swift",
"Intable.swift",
"MaybeDatable.swift",
"MaybeIntable.swift",
"MaybeNetworkIntable.swift",
"NetworkDatable.swift",
"NetworkIntable.swift",
"String+Arrayable.swift",
"String+Datable.swift",
"String+Intable.swift",
"Stringable.swift",
"StringableArray+CSVable.swift",
"UInt+Datable.swift",
"UInt+MaybeNetworkDatable.swift",
"UInt+Stringable.swift"
],
"type" : "library"
}
],
"tools_version" : "5.8"
}
Done.