The Swift Package Index logo.Swift Package Index

Build Information

Successful build of ExtensionProperty, reference master (933c90), with Swift 6.3 for macOS (SPM) on 11 Apr 2026 08:16:11 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/cats-oss/ExtensionProperty.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/cats-oss/ExtensionProperty
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 933c908 fix path to source
Cloned https://github.com/cats-oss/ExtensionProperty.git
Revision (git rev-parse @):
933c908244af445fe3e7929161a664610f4f9e0d
SUCCESS checkout https://github.com/cats-oss/ExtensionProperty.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": "extensionproperty",
      "name": "ExtensionProperty",
      "url": "https://github.com/cats-oss/ExtensionProperty.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/ExtensionProperty",
      "traits": [
        "default"
      ],
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/cats-oss/ExtensionProperty.git
[1/98] Fetching extensionproperty
Fetched https://github.com/cats-oss/ExtensionProperty.git from cache (0.76s)
Creating working copy for https://github.com/cats-oss/ExtensionProperty.git
Working copy of https://github.com/cats-oss/ExtensionProperty.git resolved at master (933c908)
warning: '.resolve-product-dependencies': dependency 'extensionproperty' 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/cats-oss/ExtensionProperty.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.4.0.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version--6988338F2F200930.txt
[3/5] Compiling ExtensionProperty ExtensionProperty.swift
/Users/admin/builder/spi-builder-workspace/Sources/ExtensionProperty/ExtensionProperty.swift:46:5: warning: 'public' modifier is redundant for instance method declared in a public extension
44 | // MARK: - ExtensionProperty
45 | public extension ExtensionProperty {
46 |     public func getProperty<V>(key: Self.Key) -> V? {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
47 |         return objc_getAssociatedObject(self, key.keyPointer) as? V
48 |     }
/Users/admin/builder/spi-builder-workspace/Sources/ExtensionProperty/ExtensionProperty.swift:50:5: warning: 'public' modifier is redundant for instance method declared in a public extension
48 |     }
49 |
50 |     public func getProperty<V>(key: Self.Key, defaultValue: V) -> V {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
51 |         if let value = objc_getAssociatedObject(self, key.keyPointer) as? V {
52 |             return value
/Users/admin/builder/spi-builder-workspace/Sources/ExtensionProperty/ExtensionProperty.swift:59:5: warning: 'public' modifier is redundant for instance method declared in a public extension
57 |     }
58 |
59 |     public func setProperty<V>(key: Self.Key, newValue: V, policy: objc_AssociationPolicy = .OBJC_ASSOCIATION_RETAIN) {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
60 |         objc_setAssociatedObject(self, key.keyPointer, newValue, policy)
61 |     }
/Users/admin/builder/spi-builder-workspace/Sources/ExtensionProperty/ExtensionProperty.swift:63:5: warning: 'public' modifier is redundant for instance method declared in a public extension
61 |     }
62 |
63 |     public func removeProperty(key: Self.Key) {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
64 |         if let any: Any = getProperty(key: key) {
65 |             objc_removeAssociatedObjects(any)
[4/5] Compiling ExtensionProperty ExtensionPropertyKey.swift
[5/5] Emitting module ExtensionProperty
/Users/admin/builder/spi-builder-workspace/Sources/ExtensionProperty/ExtensionProperty.swift:46:5: warning: 'public' modifier is redundant for instance method declared in a public extension
44 | // MARK: - ExtensionProperty
45 | public extension ExtensionProperty {
46 |     public func getProperty<V>(key: Self.Key) -> V? {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
47 |         return objc_getAssociatedObject(self, key.keyPointer) as? V
48 |     }
/Users/admin/builder/spi-builder-workspace/Sources/ExtensionProperty/ExtensionProperty.swift:50:5: warning: 'public' modifier is redundant for instance method declared in a public extension
48 |     }
49 |
50 |     public func getProperty<V>(key: Self.Key, defaultValue: V) -> V {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
51 |         if let value = objc_getAssociatedObject(self, key.keyPointer) as? V {
52 |             return value
/Users/admin/builder/spi-builder-workspace/Sources/ExtensionProperty/ExtensionProperty.swift:59:5: warning: 'public' modifier is redundant for instance method declared in a public extension
57 |     }
58 |
59 |     public func setProperty<V>(key: Self.Key, newValue: V, policy: objc_AssociationPolicy = .OBJC_ASSOCIATION_RETAIN) {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
60 |         objc_setAssociatedObject(self, key.keyPointer, newValue, policy)
61 |     }
/Users/admin/builder/spi-builder-workspace/Sources/ExtensionProperty/ExtensionProperty.swift:63:5: warning: 'public' modifier is redundant for instance method declared in a public extension
61 |     }
62 |
63 |     public func removeProperty(key: Self.Key) {
   |     `- warning: 'public' modifier is redundant for instance method declared in a public extension
64 |         if let any: Any = getProperty(key: key) {
65 |             objc_removeAssociatedObjects(any)
Build complete! (3.45s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "ExtensionProperty",
  "name" : "ExtensionProperty",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "ExtensionProperty",
      "targets" : [
        "ExtensionProperty"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ExtensionProperty",
      "module_type" : "SwiftTarget",
      "name" : "ExtensionProperty",
      "path" : "Sources/ExtensionProperty",
      "product_memberships" : [
        "ExtensionProperty"
      ],
      "sources" : [
        "ExtensionProperty.swift",
        "ExtensionPropertyKey.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "4.0"
}
Done.