The Swift Package Index logo.Swift Package Index

Build Information

Successful build of SwiftUIGraphPlotLibrary, reference master (4a39a5), with Swift 6.2 for macOS (SPM) on 19 Jun 2025 02:47:13 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/KanshuYokoo/SwiftUIGraphPlotLibrary.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/KanshuYokoo/SwiftUIGraphPlotLibrary
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 4a39a5e add ReadMe the exsample of scatter plot
Cloned https://github.com/KanshuYokoo/SwiftUIGraphPlotLibrary.git
Revision (git rev-parse @):
4a39a5ebf63ef65d02b267feb393637a3fe0e9a1
SUCCESS checkout https://github.com/KanshuYokoo/SwiftUIGraphPlotLibrary.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/KanshuYokoo/SwiftUIGraphPlotLibrary.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/4] Write sources
[1/4] Write swift-version-1EA4D86E10B52AF.txt
[3/16] Compiling SwiftUIGraphPlotLibrary Sequence+sorted.swift
[4/16] Compiling SwiftUIGraphPlotLibrary ProgressBar.swift
[5/16] Compiling SwiftUIGraphPlotLibrary PlotData.swift
[6/17] Compiling SwiftUIGraphPlotLibrary LineView.swift
[7/17] Compiling SwiftUIGraphPlotLibrary LeadingAxisView.swift
[8/17] Compiling SwiftUIGraphPlotLibrary Numeric.swift
[9/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))
[10/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))
[11/17] Compiling SwiftUIGraphPlotLibrary BottomAxixView.swift
[12/17] Compiling SwiftUIGraphPlotLibrary Color+extention.swift
[13/17] Emitting module SwiftUIGraphPlotLibrary
[14/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 )
[15/17] Compiling SwiftUIGraphPlotLibrary SwiftUIGraphPlotLibrary.swift
[15/17] Write Objects.LinkFileList
[16/17] Linking libSwiftUIGraphPlotLibrary.dylib
Build complete! (8.82s)
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.