The Swift Package Index logo.Swift Package Index

Build Information

Successful build of AZDial, reference main (8f864e), with Swift 6.1 for macOS (SPM) on 21 Apr 2026 18:27:54 UTC.

Swift 6 data race errors: 1

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures

Build Log

========================================
RunAll
========================================
Builder version: 4.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/SumPositive/AZDial.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/SumPositive/AZDial
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 8f864e4 Demo画像更新
Cloned https://github.com/SumPositive/AZDial.git
Revision (git rev-parse @):
8f864e4464699ecd93608d6c9b0d2fc8beda66c2
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/SumPositive/AZDial.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/SumPositive/AZDial.git
https://github.com/SumPositive/AZDial.git
{
  "default_localization" : "ja",
  "dependencies" : [
  ],
  "manifest_display_name" : "AZDial",
  "name" : "AZDial",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "16.0"
    },
    {
      "name" : "macos",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "AZDial",
      "targets" : [
        "AZDial"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "AZDialTests",
      "module_type" : "SwiftTarget",
      "name" : "AZDialTests",
      "path" : "Tests/AZDialTests",
      "sources" : [
        "AZDialTests.swift"
      ],
      "target_dependencies" : [
        "AZDial"
      ],
      "type" : "test"
    },
    {
      "c99name" : "AZDial",
      "module_type" : "SwiftTarget",
      "name" : "AZDial",
      "path" : "Sources/AZDial",
      "product_memberships" : [
        "AZDial"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/AZDial/Resources/Assets.xcassets",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/AZDial/Resources/en.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "en"
            }
          }
        }
      ],
      "sources" : [
        "AZDialView.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete -Xswiftc -enable-upcoming-feature -Xswiftc StrictConcurrency -Xswiftc -enable-upcoming-feature -Xswiftc DisableOutwardActorInference -Xswiftc -enable-upcoming-feature -Xswiftc GlobalActorIsolatedTypesUsability -Xswiftc -enable-upcoming-feature -Xswiftc InferSendableFromCaptures
Building for debugging...
[0/5] Write sources
[0/5] Copying Localizable.strings
[0/5] Copying Info.plist
[3/5] Copying Assets.xcassets
[4/5] Write swift-version-2F0A5646E1D333AE.txt
[6/8] Compiling AZDial resource_bundle_accessor.swift
[7/8] Compiling AZDial AZDialView.swift
/Users/admin/builder/spi-builder-workspace/Sources/AZDial/AZDialView.swift:268:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AZDialSettingsConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 233 | /// SwiftUI views are value types, so customize the settings sheet by passing a
 234 | /// configuration rather than subclassing the view.
 235 | public struct AZDialSettingsConfiguration {
     |               `- note: consider making struct 'AZDialSettingsConfiguration' conform to the 'Sendable' protocol
 236 |     public var title: String
 237 |     public var styleSectionTitle: String
     :
 266 |     }
 267 |
 268 |     public static let `default` = AZDialSettingsConfiguration()
     |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AZDialSettingsConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 269 | }
 270 |
[8/8] Emitting module AZDial
/Users/admin/builder/spi-builder-workspace/Sources/AZDial/AZDialView.swift:268:23: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AZDialSettingsConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
 233 | /// SwiftUI views are value types, so customize the settings sheet by passing a
 234 | /// configuration rather than subclassing the view.
 235 | public struct AZDialSettingsConfiguration {
     |               `- note: consider making struct 'AZDialSettingsConfiguration' conform to the 'Sendable' protocol
 236 |     public var title: String
 237 |     public var styleSectionTitle: String
     :
 266 |     }
 267 |
 268 |     public static let `default` = AZDialSettingsConfiguration()
     |                       |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'AZDialSettingsConfiguration' may have shared mutable state; this is an error in the Swift 6 language mode
     |                       |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
     |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 269 | }
 270 |
Build complete! (8.72s)
Build complete.
{
  "default_localization" : "ja",
  "dependencies" : [
  ],
  "manifest_display_name" : "AZDial",
  "name" : "AZDial",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "16.0"
    },
    {
      "name" : "macos",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "AZDial",
      "targets" : [
        "AZDial"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "AZDialTests",
      "module_type" : "SwiftTarget",
      "name" : "AZDialTests",
      "path" : "Tests/AZDialTests",
      "sources" : [
        "AZDialTests.swift"
      ],
      "target_dependencies" : [
        "AZDial"
      ],
      "type" : "test"
    },
    {
      "c99name" : "AZDial",
      "module_type" : "SwiftTarget",
      "name" : "AZDial",
      "path" : "Sources/AZDial",
      "product_memberships" : [
        "AZDial"
      ],
      "resources" : [
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/AZDial/Resources/Assets.xcassets",
          "rule" : {
            "process" : {
            }
          }
        },
        {
          "path" : "/Users/admin/builder/spi-builder-workspace/Sources/AZDial/Resources/en.lproj/Localizable.strings",
          "rule" : {
            "process" : {
              "localization" : "en"
            }
          }
        }
      ],
      "sources" : [
        "AZDialView.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.