Build Information
Successful build of ExtensionProperty with Swift 6.0 for macOS (SPM).
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Build Log
========================================
RunAll
========================================
Builder version: 4.40.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.0
Building package at path: $workDir
https://github.com/cats-oss/ExtensionProperty.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-6F35C1178C84523A.txt
[3/5] Compiling ExtensionProperty ExtensionPropertyKey.swift
[4/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)
[5/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)
Build complete! (16.44s)
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.