The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of SFSymbolEnum, reference 2.6.0 (44e5e8), with Swift 6.1 for macOS (SPM) on 14 Nov 2025 08:10:24 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.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/jollyjinx/SFSymbolEnum.git
Reference: 2.6.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/jollyjinx/SFSymbolEnum
 * tag               2.6.0      -> FETCH_HEAD
HEAD is now at 44e5e85 Merge pull request #4 from gnachman/objc
Cloned https://github.com/jollyjinx/SFSymbolEnum.git
Revision (git rev-parse @):
44e5e8508c82d320788bd3cb49da9c8286b94850
SUCCESS checkout https://github.com/jollyjinx/SFSymbolEnum.git at 2.6.0
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/jollyjinx/SFSymbolEnum.git
https://github.com/jollyjinx/SFSymbolEnum.git
{
  "dependencies" : [
  ],
  "manifest_display_name" : "SFSymbolEnum",
  "name" : "SFSymbolEnum",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "SFSymbolEnum",
      "targets" : [
        "SFSymbolEnum"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SFSymbolEnum",
      "module_type" : "SwiftTarget",
      "name" : "SFSymbolEnum",
      "path" : "Sources/SFSymbolEnum",
      "product_memberships" : [
        "SFSymbolEnum"
      ],
      "sources" : [
        "SFSymbolEnum.generated.swift",
        "SFSymbolEnum.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.10"
}
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/2] Write sources
[1/2] Write swift-version-2F0A5646E1D333AE.txt
[3/5] Compiling SFSymbolEnum SFSymbolEnum.swift
[4/5] Emitting module SFSymbolEnum
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolEnum/SFSymbolEnum.generated.swift:9130:23: warning: static property 'allCases' is not concurrency-safe because non-'Sendable' type '[SFSymbol]' may have shared mutable state; this is an error in the Swift 6 language mode
    3 | import Foundation
    4 |
    5 | public enum SFSymbol:String
      |             `- note: consider making enum 'SFSymbol' conform to the 'Sendable' protocol
    6 | {
    7 |     @available(iOS 13.0,macOS 10.15,tvOS 13.0,visionOS 1.0,watchOS 6.0,*) case number0Circle = "0.circle"
      :
 9128 | extension SFSymbol:CaseIterable
 9129 | {
 9130 |     public static let allCases:[SFSymbol] = {
      |                       |- warning: static property 'allCases' is not concurrency-safe because non-'Sendable' type '[SFSymbol]' may have shared mutable state; this is an error in the Swift 6 language mode
      |                       |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
      |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9131 |                 var allCases:[SFSymbol] = []
 9132 |         if #available(iOS 13.0,macOS 10.15,tvOS 13.0,visionOS 1.0,watchOS 6.0,*){
[5/5] Compiling SFSymbolEnum SFSymbolEnum.generated.swift
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolEnum/SFSymbolEnum.generated.swift:9130:23: warning: static property 'allCases' is not concurrency-safe because non-'Sendable' type '[SFSymbol]' may have shared mutable state; this is an error in the Swift 6 language mode
    3 | import Foundation
    4 |
    5 | public enum SFSymbol:String
      |             `- note: consider making enum 'SFSymbol' conform to the 'Sendable' protocol
    6 | {
    7 |     @available(iOS 13.0,macOS 10.15,tvOS 13.0,visionOS 1.0,watchOS 6.0,*) case number0Circle = "0.circle"
      :
 9128 | extension SFSymbol:CaseIterable
 9129 | {
 9130 |     public static let allCases:[SFSymbol] = {
      |                       |- warning: static property 'allCases' is not concurrency-safe because non-'Sendable' type '[SFSymbol]' may have shared mutable state; this is an error in the Swift 6 language mode
      |                       |- note: add '@MainActor' to make static property 'allCases' part of global actor 'MainActor'
      |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 9131 |                 var allCases:[SFSymbol] = []
 9132 |         if #available(iOS 13.0,macOS 10.15,tvOS 13.0,visionOS 1.0,watchOS 6.0,*){
Build complete! (324.90s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "SFSymbolEnum",
  "name" : "SFSymbolEnum",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    }
  ],
  "products" : [
    {
      "name" : "SFSymbolEnum",
      "targets" : [
        "SFSymbolEnum"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SFSymbolEnum",
      "module_type" : "SwiftTarget",
      "name" : "SFSymbolEnum",
      "path" : "Sources/SFSymbolEnum",
      "product_memberships" : [
        "SFSymbolEnum"
      ],
      "sources" : [
        "SFSymbolEnum.generated.swift",
        "SFSymbolEnum.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.10"
}
Done.