The Swift Package Index logo.Swift Package Index

Build Information

Successful build of SwiftUIGraphPlotLibrary, reference master (4a39a5), with Swift 6.3 for macOS (SPM) on 12 Apr 2026 11:33:14 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.70.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
========================================
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 (0.81s)
Creating working copy for https://github.com/KanshuYokoo/SwiftUIGraphPlotLibrary.git
Working copy of https://github.com/KanshuYokoo/SwiftUIGraphPlotLibrary.git resolved at master (4a39a5e)
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 Sequence+sorted.swift
[4/17] Compiling SwiftUIGraphPlotLibrary SwiftUIGraphPlotLibrary.swift
[5/17] Compiling SwiftUIGraphPlotLibrary ProgressBar.swift
[6/17] Compiling SwiftUIGraphPlotLibrary LineView.swift
[7/17] Compiling SwiftUIGraphPlotLibrary Numeric.swift
[8/17] Compiling SwiftUIGraphPlotLibrary PlotData.swift
[9/17] Compiling SwiftUIGraphPlotLibrary LeadingAxisView.swift
[10/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))
[11/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))
[12/17] Compiling SwiftUIGraphPlotLibrary BottomAxixView.swift
[13/17] Compiling SwiftUIGraphPlotLibrary Color+extention.swift
[14/17] Emitting module SwiftUIGraphPlotLibrary
[15/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] Write Objects.LinkFileList
[16/17] Linking libSwiftUIGraphPlotLibrary.dylib
Build complete! (10.56s)
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.