Build Information
Successful build of SwiftUIGraphPlotLibrary, reference v1.0.5 (59e26c), with Swift 6.3 for macOS (SPM) on 12 Apr 2026 11:32:55 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/KanshuYokoo/SwiftUIGraphPlotLibrary.git
Reference: v1.0.5
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/KanshuYokoo/SwiftUIGraphPlotLibrary
* tag v1.0.5 -> FETCH_HEAD
HEAD is now at 59e26c6 Merge pull request #22 from KanshuYokoo/performmance
Cloned https://github.com/KanshuYokoo/SwiftUIGraphPlotLibrary.git
Revision (git rev-parse @):
59e26c6f530d2d9f306b0cd23baca7140ef01f94
SUCCESS checkout https://github.com/KanshuYokoo/SwiftUIGraphPlotLibrary.git at v1.0.5
========================================
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": "swiftuigraphplotlibrary",
"name": "SwiftUIGraphPlotLibrary",
"url": "https://github.com/KanshuYokoo/SwiftUIGraphPlotLibrary.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/SwiftUIGraphPlotLibrary",
"traits": [
"default"
],
"dependencies": [
]
}
]
}
Fetching https://github.com/KanshuYokoo/SwiftUIGraphPlotLibrary.git
[1/444] Fetching swiftuigraphplotlibrary
Fetched https://github.com/KanshuYokoo/SwiftUIGraphPlotLibrary.git from cache (1.08s)
Creating working copy for https://github.com/KanshuYokoo/SwiftUIGraphPlotLibrary.git
Working copy of https://github.com/KanshuYokoo/SwiftUIGraphPlotLibrary.git resolved at v1.0.5 (59e26c6)
warning: '.resolve-product-dependencies': dependency 'swiftuigraphplotlibrary' 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/KanshuYokoo/SwiftUIGraphPlotLibrary.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/4] Write sources
[1/4] Write swift-version--6988338F2F200930.txt
[3/16] Compiling SwiftUIGraphPlotLibrary PlotData.swift
[4/16] Compiling SwiftUIGraphPlotLibrary Sequence+sorted.swift
[5/16] Compiling SwiftUIGraphPlotLibrary ProgressBar.swift
[6/17] Compiling SwiftUIGraphPlotLibrary GraphFrameView.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIGraphPlotLibrary/GraphPlotView.swift:178:21: warning: non-constant range: argument must be an integer literal
176 | let transferedData = circlePlotDataSet
177 | return ZStack() {
178 | ForEach(0..<totalPlot) { index in
| `- warning: non-constant range: argument must be an integer literal
179 | Circle()
180 | .fill(getColor(index))
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIGraphPlotLibrary/GraphPlotView.swift:236:25: warning: non-constant range: argument must be an integer literal
234 | let width = barWidthX
235 |
236 | ForEach(0..<totalPlot) {
| `- warning: non-constant range: argument must be an integer literal
237 | index in
238 | ProgressBar(height: BarHeightData[index], width: width, hueDegree: getHueDegree(index), opacity: opacity, color: getColor(index))
[7/17] Compiling SwiftUIGraphPlotLibrary GraphPlotView.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIGraphPlotLibrary/GraphPlotView.swift:178:21: warning: non-constant range: argument must be an integer literal
176 | let transferedData = circlePlotDataSet
177 | return ZStack() {
178 | ForEach(0..<totalPlot) { index in
| `- warning: non-constant range: argument must be an integer literal
179 | Circle()
180 | .fill(getColor(index))
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIGraphPlotLibrary/GraphPlotView.swift:236:25: warning: non-constant range: argument must be an integer literal
234 | let width = barWidthX
235 |
236 | ForEach(0..<totalPlot) {
| `- warning: non-constant range: argument must be an integer literal
237 | index in
238 | ProgressBar(height: BarHeightData[index], width: width, hueDegree: getHueDegree(index), opacity: opacity, color: getColor(index))
[8/17] Compiling SwiftUIGraphPlotLibrary LeadingAxisView.swift
[9/17] Compiling SwiftUIGraphPlotLibrary BottomAxixView.swift
[10/17] Compiling SwiftUIGraphPlotLibrary Color+extention.swift
[11/17] Compiling SwiftUIGraphPlotLibrary LineView.swift
[12/17] Compiling SwiftUIGraphPlotLibrary GraphView.swift
/Users/admin/builder/spi-builder-workspace/Sources/SwiftUIGraphPlotLibrary/GraphView.swift:127:48: warning: non-constant range: argument must be an integer literal
125 | return
126 | ZStack {
127 | ForEach(0..<self.plotTypes.count) { index in
| `- warning: non-constant range: argument must be an integer literal
128 | let plot = self.plotTypes[index]
129 | GraphPlotView(geometryProxy: geometryproxy, type: plot.plotType, dataSet: plot.dataSet ?? self.dataSet, color: plot.color, opacity: plot.opacity, circleRadius: plot.circleRadius, hueDegree: plot.hueDegree, circleRadiusFunc: plot.circleRadiusFunc, colorFunc: plot.colorFunc, hueDegreeFunc: plot.hueDegreeFunc, xPlotAreaFactor: self.xPlotAreaFactor )
[13/17] Emitting module SwiftUIGraphPlotLibrary
[14/17] Compiling SwiftUIGraphPlotLibrary Numeric.swift
[15/17] Compiling SwiftUIGraphPlotLibrary SwiftUIGraphPlotLibrary.swift
[15/17] Write Objects.LinkFileList
[16/17] Linking libSwiftUIGraphPlotLibrary.dylib
Build complete! (10.92s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "SwiftUIGraphPlotLibrary",
"name" : "SwiftUIGraphPlotLibrary",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "13.0"
},
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "watchos",
"version" : "6.0"
},
{
"name" : "tvos",
"version" : "13.0"
}
],
"products" : [
{
"name" : "SwiftUIGraphPlotLibrary",
"targets" : [
"SwiftUIGraphPlotLibrary"
],
"type" : {
"library" : [
"dynamic"
]
}
}
],
"targets" : [
{
"c99name" : "SwiftUIGraphPlotLibraryTests",
"module_type" : "SwiftTarget",
"name" : "SwiftUIGraphPlotLibraryTests",
"path" : "Tests/SwiftUIGraphPlotLibraryTests",
"sources" : [
"PerformanceTests.swift",
"SwiftUIGraphPlotLibraryTests.swift",
"XCTestManifests.swift"
],
"target_dependencies" : [
"SwiftUIGraphPlotLibrary"
],
"type" : "test"
},
{
"c99name" : "SwiftUIGraphPlotLibrary",
"module_type" : "SwiftTarget",
"name" : "SwiftUIGraphPlotLibrary",
"path" : "Sources/SwiftUIGraphPlotLibrary",
"product_memberships" : [
"SwiftUIGraphPlotLibrary"
],
"sources" : [
"BottomAxixView.swift",
"Color+extention.swift",
"GraphFrameView.swift",
"GraphPlotView.swift",
"GraphView.swift",
"LeadingAxisView.swift",
"LineView.swift",
"Numeric.swift",
"PlotData.swift",
"ProgressBar.swift",
"Sequence+sorted.swift",
"SwiftUIGraphPlotLibrary.swift"
],
"type" : "library"
}
],
"tools_version" : "5.2"
}
Done.