Build Information
Successful build of ShaderGraphCoder, reference main (069cc5), with Swift 6.2 for macOS (SPM) on 21 Jun 2025 15:39:50 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/praeclarum/ShaderGraphCoder.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/praeclarum/ShaderGraphCoder
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 069cc5a Require iOS and tvOS 15
Cloned https://github.com/praeclarum/ShaderGraphCoder.git
Revision (git rev-parse @):
069cc5a5d4477ca15fb1bb5bd79c758634cd4c99
SUCCESS checkout https://github.com/praeclarum/ShaderGraphCoder.git at main
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/praeclarum/ShaderGraphCoder.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/12] Compiling ShaderGraphCoder Values.swift
[4/12] Compiling ShaderGraphCoder USDA.swift
[5/12] Compiling ShaderGraphCoder Sources.swift
[6/12] Compiling ShaderGraphCoder Sources.g.swift
[7/12] Compiling ShaderGraphCoder ShaderGraphPreview.swift
[8/12] Compiling ShaderGraphCoder Operations.swift
/Users/admin/builder/spi-builder-workspace/Sources/ShaderGraphCoder/Operations.swift:11:5: warning: cannot explicitly specialize global function 'clamp(_:min:max:)'
9 |
10 | public func clamp<T>(_ in1: T, min: Float, max: Float) -> T where T: SGNumeric {
11 | clamp<T>(in1, min: SGValue.float(min), max: SGValue.float(max))
| `- warning: cannot explicitly specialize global function 'clamp(_:min:max:)'
12 | }
13 |
/Users/admin/builder/spi-builder-workspace/Sources/ShaderGraphCoder/Operations.g.swift:730:13: note: 'clamp(_:min:max:)' declared here
728 | }
729 | /// Clamp
730 | public func clamp<T>(_ in1: T, min: SGNumeric, max: SGNumeric) -> T where T: SGNumeric {
| `- note: 'clamp(_:min:max:)' declared here
731 | if SGDataType.color3f.matches(in1) && SGDataType.color3f.matches(min) && SGDataType.color3f.matches(max) {
732 | return T(source: .nodeOutput(SGNode(
/Users/admin/builder/spi-builder-workspace/Sources/ShaderGraphCoder/Operations.swift:110:5: warning: cannot explicitly specialize global function 'pow'
108 |
109 | public func pow<T>(_ x: T, _ y: Float) -> T where T: SGNumeric {
110 | pow<T>(x, SGValue.float(y))
| `- warning: cannot explicitly specialize global function 'pow'
111 | }
112 |
/Users/admin/builder/spi-builder-workspace/Sources/ShaderGraphCoder/Operations.g.swift:4876:13: note: 'pow' declared here
4874 | }
4875 | /// Power
4876 | public func pow<T>(_ in1: T, _ in2: SGNumeric) -> T where T: SGNumeric {
| `- note: 'pow' declared here
4877 | if SGDataType.color3f.matches(in1) && SGDataType.color3f.matches(in2) {
4878 | return T(source: .nodeOutput(SGNode(
/Users/admin/builder/spi-builder-workspace/Sources/ShaderGraphCoder/Operations.swift:114:5: warning: cannot explicitly specialize global function 'safePow'
112 |
113 | public func safePow<T>(_ x: T, _ y: Float) -> T where T: SGNumeric {
114 | safePow<T>(x, SGValue.float(y))
| `- warning: cannot explicitly specialize global function 'safePow'
115 | }
116 |
/Users/admin/builder/spi-builder-workspace/Sources/ShaderGraphCoder/Operations.g.swift:5866:13: note: 'safePow' declared here
5864 | }
5865 | /// Safe Power
5866 | public func safePow<T>(_ in1: T, _ in2: SGNumeric) -> T where T: SGNumeric {
| `- note: 'safePow' declared here
5867 | if SGDataType.color3f.matches(in1) && SGDataType.color3f.matches(in2) {
5868 | return T(source: .nodeOutput(SGNode(
[9/12] Compiling ShaderGraphCoder ShaderGraphMaterial.swift
[10/12] Compiling ShaderGraphCoder Graph.swift
[11/12] Compiling ShaderGraphCoder Operations.g.swift
[12/12] Emitting module ShaderGraphCoder
Build complete! (9.91s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "ShaderGraphCoder",
"name" : "ShaderGraphCoder",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "visionos",
"version" : "1.0"
},
{
"name" : "ios",
"version" : "15.0"
},
{
"name" : "watchos",
"version" : "6.0"
},
{
"name" : "tvos",
"version" : "15.0"
},
{
"name" : "macos",
"version" : "12.0"
}
],
"products" : [
{
"name" : "ShaderGraphCoder",
"targets" : [
"ShaderGraphCoder"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "ShaderGraphCoderTests",
"module_type" : "SwiftTarget",
"name" : "ShaderGraphCoderTests",
"path" : "Tests/ShaderGraphCoderTests",
"resources" : [
{
"path" : "/Users/admin/builder/spi-builder-workspace/Tests/ShaderGraphCoderTests/Resources/TestTexture.png",
"rule" : {
"process" : {
}
}
}
],
"sources" : [
"ShaderGraphCoderTests.swift"
],
"target_dependencies" : [
"ShaderGraphCoder"
],
"type" : "test"
},
{
"c99name" : "ShaderGraphCoder",
"module_type" : "SwiftTarget",
"name" : "ShaderGraphCoder",
"path" : "Sources/ShaderGraphCoder",
"product_memberships" : [
"ShaderGraphCoder"
],
"sources" : [
"Graph.swift",
"Operations.g.swift",
"Operations.swift",
"ShaderGraphMaterial.swift",
"ShaderGraphPreview.swift",
"Sources.g.swift",
"Sources.swift",
"USDA.swift",
"Values.swift"
],
"type" : "library"
}
],
"tools_version" : "5.9"
}
Done.