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 ExtensionProperty, reference master (933c90), with Swift 6.2 (beta) for macOS (SPM) on 18 Jun 2025 07:45:47 UTC.

Swift 6 data race errors: 0

Build Command

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

Build Log

========================================
RunAll
========================================
Builder version: 4.64.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
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/cats-oss/ExtensionProperty.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-1EA4D86E10B52AF.txt
[3/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)
[4/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)
[5/5] Compiling ExtensionProperty ExtensionPropertyKey.swift
Build complete! (3.23s)
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.