The Swift Package Index logo.Swift Package Index

Build Information

Successful build of SFSymbolsMacro, reference main (05b444), with Swift 6.2 for macOS (SPM) on 11 Feb 2026 01:39:12 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/lukepistrol/SFSymbolsMacro.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/lukepistrol/SFSymbolsMacro
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 05b4446 Updating swift syntax to latest (#8)
Cloned https://github.com/lukepistrol/SFSymbolsMacro.git
Revision (git rev-parse @):
05b44462ee757451a543f754e2104ec42f19733b
SUCCESS checkout https://github.com/lukepistrol/SFSymbolsMacro.git at main
Fetching https://github.com/swiftlang/swift-syntax
[1/74130] Fetching swift-syntax
Fetched https://github.com/swiftlang/swift-syntax from cache (3.72s)
Computing version for https://github.com/swiftlang/swift-syntax
Computed https://github.com/swiftlang/swift-syntax at 602.0.0 (6.46s)
Creating working copy for https://github.com/swiftlang/swift-syntax
Working copy of https://github.com/swiftlang/swift-syntax resolved at 602.0.0
Downloading package prebuilt https://download.swift.org/prebuilts/swift-syntax/602.0.0/swiftlang-6.2.0.19.9-MacroSupport-macos_aarch64.zip
Downloaded https://download.swift.org/prebuilts/swift-syntax/602.0.0/swiftlang-6.2.0.19.9-MacroSupport-macos_aarch64.zip (0.16s)
========================================
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",
  "dependencies": [
    {
      "identity": "sfsymbolsmacro",
      "name": "SFSymbolsMacro",
      "url": "https://github.com/lukepistrol/SFSymbolsMacro.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/SFSymbolsMacro",
      "dependencies": [
        {
          "identity": "swift-syntax",
          "name": "swift-syntax",
          "url": "https://github.com/swiftlang/swift-syntax",
          "version": "602.0.0",
          "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/swift-syntax",
          "dependencies": [
          ]
        }
      ]
    }
  ]
}
Fetching https://github.com/lukepistrol/SFSymbolsMacro.git
[1/207] Fetching sfsymbolsmacro
Fetched https://github.com/lukepistrol/SFSymbolsMacro.git from cache (0.61s)
Fetching https://github.com/swiftlang/swift-syntax from cache
Fetched https://github.com/swiftlang/swift-syntax from cache (0.92s)
Computing version for https://github.com/swiftlang/swift-syntax
Computed https://github.com/swiftlang/swift-syntax at 602.0.0 (0.98s)
Creating working copy for https://github.com/swiftlang/swift-syntax
Working copy of https://github.com/swiftlang/swift-syntax resolved at 602.0.0
Creating working copy for https://github.com/lukepistrol/SFSymbolsMacro.git
Working copy of https://github.com/lukepistrol/SFSymbolsMacro.git resolved at main (05b4446)
warning: '.resolve-product-dependencies': dependency 'sfsymbolsmacro' is not used by any target
Found 1 product dependencies
  - swift-syntax
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/lukepistrol/SFSymbolsMacro.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0.app xcrun swift build --arch arm64
Building for debugging...
[0/5] Write sources
[2/5] Write swift-version-49B95AFC49DCD68C.txt
[4/9] Emitting module SFSymbolsMacroImpl
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsMacroImpl/SFSymbolsMacro.swift:13:15: warning: deprecated default implementation is used to satisfy static method 'expansion(of:providingMembersOf:conformingTo:in:)' required by protocol 'MemberMacro': `MemberMacro` conformance should implement the `expansion` function that takes a `conformingTo` parameter [#DeprecatedDeclaration]
 11 | import SwiftUI
 12 |
 13 | public struct SFSymbolMacro: MemberMacro {
    |               `- warning: deprecated default implementation is used to satisfy static method 'expansion(of:providingMembersOf:conformingTo:in:)' required by protocol 'MemberMacro': `MemberMacro` conformance should implement the `expansion` function that takes a `conformingTo` parameter [#DeprecatedDeclaration]
 14 |
 15 |     private typealias SymbolPair = (id: String, node: Syntax)
SwiftSyntaxMacros.MemberMacro.expansion:3:22: note: 'expansion(of:providingMembersOf:conformingTo:in:)' declared here
1 | protocol MemberMacro {
2 | @available(*, deprecated, message: "`MemberMacro` conformance should implement the `expansion` function that takes a `conformingTo` parameter")
3 |   public static func expansion(of node: SwiftSyntax.AttributeSyntax, providingMembersOf declaration: some SwiftSyntax.DeclGroupSyntax, conformingTo protocols: [SwiftSyntax.TypeSyntax], in context: some SwiftSyntaxMacros.MacroExpansionContext) throws -> [SwiftSyntax.DeclSyntax]}
  |                      `- note: 'expansion(of:providingMembersOf:conformingTo:in:)' declared here
4 |
SwiftSyntaxMacros.MemberMacro.expansion:2:13: note: requirement 'expansion(of:providingMembersOf:conformingTo:in:)' declared here
1 | protocol MemberMacro {
2 | static func expansion(of node: SwiftSyntax.AttributeSyntax, providingMembersOf declaration: some SwiftSyntax.DeclGroupSyntax, conformingTo protocols: [SwiftSyntax.TypeSyntax], in context: some SwiftSyntaxMacros.MacroExpansionContext) throws -> [SwiftSyntax.DeclSyntax]}
  |             `- note: requirement 'expansion(of:providingMembersOf:conformingTo:in:)' declared here
3 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[5/9] Compiling SFSymbolsMacroImpl SFSymbolsMacroPlugin.swift
[6/9] Compiling SFSymbolsMacroImpl SFSymbolsMacro.swift
/Users/admin/builder/spi-builder-workspace/Sources/SFSymbolsMacroImpl/SFSymbolsMacro.swift:13:15: warning: deprecated default implementation is used to satisfy static method 'expansion(of:providingMembersOf:conformingTo:in:)' required by protocol 'MemberMacro': `MemberMacro` conformance should implement the `expansion` function that takes a `conformingTo` parameter [#DeprecatedDeclaration]
 11 | import SwiftUI
 12 |
 13 | public struct SFSymbolMacro: MemberMacro {
    |               `- warning: deprecated default implementation is used to satisfy static method 'expansion(of:providingMembersOf:conformingTo:in:)' required by protocol 'MemberMacro': `MemberMacro` conformance should implement the `expansion` function that takes a `conformingTo` parameter [#DeprecatedDeclaration]
 14 |
 15 |     private typealias SymbolPair = (id: String, node: Syntax)
SwiftSyntaxMacros.MemberMacro.expansion:3:22: note: 'expansion(of:providingMembersOf:conformingTo:in:)' declared here
1 | protocol MemberMacro {
2 | @available(*, deprecated, message: "`MemberMacro` conformance should implement the `expansion` function that takes a `conformingTo` parameter")
3 |   public static func expansion(of node: SwiftSyntax.AttributeSyntax, providingMembersOf declaration: some SwiftSyntax.DeclGroupSyntax, conformingTo protocols: [SwiftSyntax.TypeSyntax], in context: some SwiftSyntaxMacros.MacroExpansionContext) throws -> [SwiftSyntax.DeclSyntax]}
  |                      `- note: 'expansion(of:providingMembersOf:conformingTo:in:)' declared here
4 |
SwiftSyntaxMacros.MemberMacro.expansion:2:13: note: requirement 'expansion(of:providingMembersOf:conformingTo:in:)' declared here
1 | protocol MemberMacro {
2 | static func expansion(of node: SwiftSyntax.AttributeSyntax, providingMembersOf declaration: some SwiftSyntax.DeclGroupSyntax, conformingTo protocols: [SwiftSyntax.TypeSyntax], in context: some SwiftSyntaxMacros.MacroExpansionContext) throws -> [SwiftSyntax.DeclSyntax]}
  |             `- note: requirement 'expansion(of:providingMembersOf:conformingTo:in:)' declared here
3 |
[#DeprecatedDeclaration]: <https://docs.swift.org/compiler/documentation/diagnostics/deprecated-declaration>
[7/9] Compiling SFSymbolsMacroImpl SFSymbolsDiagnostic.swift
[7/9] Write Objects.LinkFileList
[8/9] Linking SFSymbolsMacroImpl-tool
[10/11] Compiling SFSymbolsMacro SFSymbol.swift
[11/11] Emitting module SFSymbolsMacro
Build complete! (9.99s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-syntax",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "602.0.0",
            "upper_bound" : "603.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/swiftlang/swift-syntax"
    }
  ],
  "manifest_display_name" : "SFSymbolsMacro",
  "name" : "SFSymbolsMacro",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "11.0"
    },
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "tvos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "6.0"
    },
    {
      "name" : "maccatalyst",
      "version" : "13.0"
    }
  ],
  "products" : [
    {
      "name" : "SFSymbolsMacro",
      "targets" : [
        "SFSymbolsMacro"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "SFSymbolsMacroImpl",
      "targets" : [
        "SFSymbolsMacroImpl"
      ],
      "type" : {
        "macro" : null
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "SFSymbolsMacroTests",
      "module_type" : "SwiftTarget",
      "name" : "SFSymbolsMacroTests",
      "path" : "Tests/SFSymbolsMacroTests",
      "product_dependencies" : [
        "SwiftSyntaxMacrosTestSupport"
      ],
      "sources" : [
        "SFSymbolsMacroTests.swift"
      ],
      "target_dependencies" : [
        "SFSymbolsMacroImpl"
      ],
      "type" : "test"
    },
    {
      "c99name" : "SFSymbolsMacroImpl",
      "module_type" : "SwiftTarget",
      "name" : "SFSymbolsMacroImpl",
      "path" : "Sources/SFSymbolsMacroImpl",
      "product_dependencies" : [
        "SwiftSyntaxMacros",
        "SwiftCompilerPlugin"
      ],
      "product_memberships" : [
        "SFSymbolsMacro",
        "SFSymbolsMacroImpl"
      ],
      "sources" : [
        "SFSymbolsDiagnostic.swift",
        "SFSymbolsMacro.swift",
        "SFSymbolsMacroPlugin.swift"
      ],
      "type" : "macro"
    },
    {
      "c99name" : "SFSymbolsMacro",
      "module_type" : "SwiftTarget",
      "name" : "SFSymbolsMacro",
      "path" : "Sources/SFSymbolsMacro",
      "product_memberships" : [
        "SFSymbolsMacro"
      ],
      "sources" : [
        "SFSymbol.swift"
      ],
      "target_dependencies" : [
        "SFSymbolsMacroImpl"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.