Build Information
Successful build of CircularProgress, reference v3.0.1 (8bb9dd
), with Swift 6.1 for macOS (SPM) on 27 Apr 2025 07:07:37 UTC.
Swift 6 data race errors: 8
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.61.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/sindresorhus/CircularProgress.git
Reference: v3.0.1
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/sindresorhus/CircularProgress
* tag v3.0.1 -> FETCH_HEAD
HEAD is now at 8bb9dd2 3.0.1
Cloned https://github.com/sindresorhus/CircularProgress.git
Revision (git rev-parse @):
8bb9dd2820b1cc123f2629c86c569c9f6e5edb66
SUCCESS checkout https://github.com/sindresorhus/CircularProgress.git at v3.0.1
========================================
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": "circularprogress",
"name": "CircularProgress",
"url": "https://github.com/sindresorhus/CircularProgress.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/CircularProgress",
"dependencies": [
]
}
]
}
Fetching https://github.com/sindresorhus/CircularProgress.git
[1/1063] Fetching circularprogress
Fetched https://github.com/sindresorhus/CircularProgress.git from cache (1.19s)
Creating working copy for https://github.com/sindresorhus/CircularProgress.git
Working copy of https://github.com/sindresorhus/CircularProgress.git resolved at v3.0.1 (8bb9dd2)
warning: '.resolve-product-dependencies': dependency 'circularprogress' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.1
Building package at path: $PWD
https://github.com/sindresorhus/CircularProgress.git
https://github.com/sindresorhus/CircularProgress.git
{
"dependencies" : [
],
"manifest_display_name" : "CircularProgress",
"name" : "CircularProgress",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
}
],
"products" : [
{
"name" : "CircularProgress",
"targets" : [
"CircularProgress"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "CircularProgress",
"module_type" : "SwiftTarget",
"name" : "CircularProgress",
"path" : "Sources/CircularProgress",
"product_memberships" : [
"CircularProgress"
],
"sources" : [
"CheckmarkView.swift",
"CircularProgress.swift",
"Utilities.swift",
"Vendored/CustomButton+Utilities.swift",
"Vendored/CustomButton.swift"
],
"type" : "library"
}
],
"tools_version" : "5.7"
}
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/8] Compiling CircularProgress CustomButton+Utilities.swift
[4/8] Compiling CircularProgress Utilities.swift
/Users/admin/builder/spi-builder-workspace/Sources/CircularProgress/Utilities.swift:98:13: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CAMediaTimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
96 |
97 | extension CAMediaTimingFunction {
98 | static let `default` = CAMediaTimingFunction(name: .default)
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CAMediaTimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
99 | static let linear = CAMediaTimingFunction(name: .linear)
100 | static let easeIn = CAMediaTimingFunction(name: .easeIn)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTimingFunction.h:24:12: note: class 'CAMediaTimingFunction' does not conform to the 'Sendable' protocol
22 |
23 | API_AVAILABLE(macos(10.5), ios(2.0), tvos(9.0)) API_UNAVAILABLE(watchos)
24 | @interface CAMediaTimingFunction : NSObject <NSSecureCoding>
| `- note: class 'CAMediaTimingFunction' does not conform to the 'Sendable' protocol
25 | {
26 | @private
/Users/admin/builder/spi-builder-workspace/Sources/CircularProgress/Utilities.swift:99:13: warning: static property 'linear' is not concurrency-safe because non-'Sendable' type 'CAMediaTimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
97 | extension CAMediaTimingFunction {
98 | static let `default` = CAMediaTimingFunction(name: .default)
99 | static let linear = CAMediaTimingFunction(name: .linear)
| |- warning: static property 'linear' is not concurrency-safe because non-'Sendable' type 'CAMediaTimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'linear' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
100 | static let easeIn = CAMediaTimingFunction(name: .easeIn)
101 | static let easeOut = CAMediaTimingFunction(name: .easeOut)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTimingFunction.h:24:12: note: class 'CAMediaTimingFunction' does not conform to the 'Sendable' protocol
22 |
23 | API_AVAILABLE(macos(10.5), ios(2.0), tvos(9.0)) API_UNAVAILABLE(watchos)
24 | @interface CAMediaTimingFunction : NSObject <NSSecureCoding>
| `- note: class 'CAMediaTimingFunction' does not conform to the 'Sendable' protocol
25 | {
26 | @private
/Users/admin/builder/spi-builder-workspace/Sources/CircularProgress/Utilities.swift:100:13: warning: static property 'easeIn' is not concurrency-safe because non-'Sendable' type 'CAMediaTimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
98 | static let `default` = CAMediaTimingFunction(name: .default)
99 | static let linear = CAMediaTimingFunction(name: .linear)
100 | static let easeIn = CAMediaTimingFunction(name: .easeIn)
| |- warning: static property 'easeIn' is not concurrency-safe because non-'Sendable' type 'CAMediaTimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'easeIn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
101 | static let easeOut = CAMediaTimingFunction(name: .easeOut)
102 | static let easeInOut = CAMediaTimingFunction(name: .easeInEaseOut)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTimingFunction.h:24:12: note: class 'CAMediaTimingFunction' does not conform to the 'Sendable' protocol
22 |
23 | API_AVAILABLE(macos(10.5), ios(2.0), tvos(9.0)) API_UNAVAILABLE(watchos)
24 | @interface CAMediaTimingFunction : NSObject <NSSecureCoding>
| `- note: class 'CAMediaTimingFunction' does not conform to the 'Sendable' protocol
25 | {
26 | @private
/Users/admin/builder/spi-builder-workspace/Sources/CircularProgress/Utilities.swift:101:13: warning: static property 'easeOut' is not concurrency-safe because non-'Sendable' type 'CAMediaTimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
99 | static let linear = CAMediaTimingFunction(name: .linear)
100 | static let easeIn = CAMediaTimingFunction(name: .easeIn)
101 | static let easeOut = CAMediaTimingFunction(name: .easeOut)
| |- warning: static property 'easeOut' is not concurrency-safe because non-'Sendable' type 'CAMediaTimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'easeOut' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
102 | static let easeInOut = CAMediaTimingFunction(name: .easeInEaseOut)
103 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTimingFunction.h:24:12: note: class 'CAMediaTimingFunction' does not conform to the 'Sendable' protocol
22 |
23 | API_AVAILABLE(macos(10.5), ios(2.0), tvos(9.0)) API_UNAVAILABLE(watchos)
24 | @interface CAMediaTimingFunction : NSObject <NSSecureCoding>
| `- note: class 'CAMediaTimingFunction' does not conform to the 'Sendable' protocol
25 | {
26 | @private
/Users/admin/builder/spi-builder-workspace/Sources/CircularProgress/Utilities.swift:102:13: warning: static property 'easeInOut' is not concurrency-safe because non-'Sendable' type 'CAMediaTimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
100 | static let easeIn = CAMediaTimingFunction(name: .easeIn)
101 | static let easeOut = CAMediaTimingFunction(name: .easeOut)
102 | static let easeInOut = CAMediaTimingFunction(name: .easeInEaseOut)
| |- warning: static property 'easeInOut' is not concurrency-safe because non-'Sendable' type 'CAMediaTimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'easeInOut' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
103 | }
104 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTimingFunction.h:24:12: note: class 'CAMediaTimingFunction' does not conform to the 'Sendable' protocol
22 |
23 | API_AVAILABLE(macos(10.5), ios(2.0), tvos(9.0)) API_UNAVAILABLE(watchos)
24 | @interface CAMediaTimingFunction : NSObject <NSSecureCoding>
| `- note: class 'CAMediaTimingFunction' does not conform to the 'Sendable' protocol
25 | {
26 | @private
/Users/admin/builder/spi-builder-workspace/Sources/CircularProgress/Utilities.swift:175:13: warning: static property 'helveticaNeueLight' is not concurrency-safe because non-'Sendable' type 'NSFont?' may have shared mutable state; this is an error in the Swift 6 language mode
173 |
174 | extension NSFont {
175 | static let helveticaNeueLight = NSFont(name: "HelveticaNeue-Light", size: 0)
| |- warning: static property 'helveticaNeueLight' is not concurrency-safe because non-'Sendable' type 'NSFont?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'helveticaNeueLight' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
176 | }
177 |
Swift.Optional:1:21: note: generic enum 'Optional' does not conform to the 'Sendable' protocol
1 | @frozen public enum Optional<Wrapped> : ~Copyable where Wrapped : ~Copyable {
| `- note: generic enum 'Optional' does not conform to the 'Sendable' protocol
2 | case none
3 | case some(Wrapped)
/Users/admin/builder/spi-builder-workspace/Sources/CircularProgress/Utilities.swift:349:14: warning: static property 'onActionClosure' is not concurrency-safe because non-'Sendable' type 'AssociatedObject<NSControl.ActionClosure>' (aka 'AssociatedObject<(NSControl) -> ()>') may have shared mutable state; this is an error in the Swift 6 language mode
332 |
333 |
334 | final class AssociatedObject<T: Any> {
| `- note: generic class 'AssociatedObject' does not conform to the 'Sendable' protocol
335 | subscript(index: AnyObject) -> T? {
336 | get {
:
347 |
348 | private enum AssociatedKeys {
349 | static let onActionClosure = AssociatedObject<ActionClosure>()
| |- warning: static property 'onActionClosure' is not concurrency-safe because non-'Sendable' type 'AssociatedObject<NSControl.ActionClosure>' (aka 'AssociatedObject<(NSControl) -> ()>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'onActionClosure' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
350 | }
351 |
/Users/admin/builder/spi-builder-workspace/Sources/CircularProgress/Utilities.swift:92:52: warning: passing non-sendable parameter 'execute' to function expecting a @Sendable closure
89 | ```
90 | */
91 | func asyncAfter(duration: TimeInterval, execute: @escaping () -> Void) {
| `- note: parameter 'execute' is implicitly non-sendable
92 | asyncAfter(deadline: .now() + duration, execute: execute)
| `- warning: passing non-sendable parameter 'execute' to function expecting a @Sendable closure
93 | }
94 | }
/Users/admin/builder/spi-builder-workspace/Sources/CircularProgress/Utilities.swift:308:4: warning: switch must be exhaustive
306 | for index in 0..<elementCount {
307 | let type = element(at: index, associatedPoints: &points)
308 | switch type {
| |- warning: switch must be exhaustive
| |- note: add missing case: '.cubicCurveTo'
| |- note: add missing case: '.quadraticCurveTo'
| `- note: add missing cases
309 | case .moveTo:
310 | path.move(to: points[0])
/Users/admin/builder/spi-builder-workspace/Sources/CircularProgress/Utilities.swift:117:45: warning: sending 'timingFunction' risks causing data races; this is an error in the Swift 6 language mode
115 | CATransaction.begin()
116 | CATransaction.setAnimationDuration(duration)
117 | CATransaction.setAnimationTimingFunction(timingFunction)
| |- warning: sending 'timingFunction' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'timingFunction' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
118 |
119 | if let completion {
/Users/admin/builder/spi-builder-workspace/Sources/CircularProgress/Utilities.swift:119:11: warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
117 | CATransaction.setAnimationTimingFunction(timingFunction)
118 |
119 | if let completion {
| |- warning: sending 'completion' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'completion' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
120 | CATransaction.setCompletionBlock(completion)
121 | }
/Users/admin/builder/spi-builder-workspace/Sources/CircularProgress/Utilities.swift:123:4: warning: sending 'animations' risks causing data races; this is an error in the Swift 6 language mode
121 | }
122 |
123 | animations()
| |- warning: sending 'animations' risks causing data races; this is an error in the Swift 6 language mode
| `- note: task-isolated 'animations' is captured by a main actor-isolated closure. main actor-isolated uses in closure may race against later nonisolated uses
124 | CATransaction.commit()
125 | }
[5/8] Compiling CircularProgress CustomButton.swift
[6/8] Compiling CircularProgress CheckmarkView.swift
[7/8] Compiling CircularProgress CircularProgress.swift
/Users/admin/builder/spi-builder-workspace/Sources/CircularProgress/CircularProgress.swift:222:23: warning: main actor-isolated instance method 'prepareForInterfaceBuilder()' has different actor isolation from nonisolated overridden declaration; this is an error in the Swift 6 language mode
220 |
221 | @MainActor
222 | override public func prepareForInterfaceBuilder() {
| `- warning: main actor-isolated instance method 'prepareForInterfaceBuilder()' has different actor isolation from nonisolated overridden declaration; this is an error in the Swift 6 language mode
223 | super.prepareForInterfaceBuilder()
224 | commonInit()
AppKit.NSObject.prepareForInterfaceBuilder:3:13: note: overridden declaration is here
1 | class NSObject {
2 | @available(macOS 10.10, *)
3 | open func prepareForInterfaceBuilder()}
| `- note: overridden declaration is here
4 |
[8/8] Emitting module CircularProgress
/Users/admin/builder/spi-builder-workspace/Sources/CircularProgress/CircularProgress.swift:222:23: warning: main actor-isolated instance method 'prepareForInterfaceBuilder()' has different actor isolation from nonisolated overridden declaration; this is an error in the Swift 6 language mode
220 |
221 | @MainActor
222 | override public func prepareForInterfaceBuilder() {
| `- warning: main actor-isolated instance method 'prepareForInterfaceBuilder()' has different actor isolation from nonisolated overridden declaration; this is an error in the Swift 6 language mode
223 | super.prepareForInterfaceBuilder()
224 | commonInit()
AppKit.NSObject.prepareForInterfaceBuilder:3:13: note: overridden declaration is here
1 | class NSObject {
2 | @available(macOS 10.10, *)
3 | open func prepareForInterfaceBuilder()}
| `- note: overridden declaration is here
4 |
/Users/admin/builder/spi-builder-workspace/Sources/CircularProgress/Utilities.swift:98:13: warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CAMediaTimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
96 |
97 | extension CAMediaTimingFunction {
98 | static let `default` = CAMediaTimingFunction(name: .default)
| |- warning: static property 'default' is not concurrency-safe because non-'Sendable' type 'CAMediaTimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'default' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
99 | static let linear = CAMediaTimingFunction(name: .linear)
100 | static let easeIn = CAMediaTimingFunction(name: .easeIn)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTimingFunction.h:24:12: note: class 'CAMediaTimingFunction' does not conform to the 'Sendable' protocol
22 |
23 | API_AVAILABLE(macos(10.5), ios(2.0), tvos(9.0)) API_UNAVAILABLE(watchos)
24 | @interface CAMediaTimingFunction : NSObject <NSSecureCoding>
| `- note: class 'CAMediaTimingFunction' does not conform to the 'Sendable' protocol
25 | {
26 | @private
/Users/admin/builder/spi-builder-workspace/Sources/CircularProgress/Utilities.swift:99:13: warning: static property 'linear' is not concurrency-safe because non-'Sendable' type 'CAMediaTimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
97 | extension CAMediaTimingFunction {
98 | static let `default` = CAMediaTimingFunction(name: .default)
99 | static let linear = CAMediaTimingFunction(name: .linear)
| |- warning: static property 'linear' is not concurrency-safe because non-'Sendable' type 'CAMediaTimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'linear' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
100 | static let easeIn = CAMediaTimingFunction(name: .easeIn)
101 | static let easeOut = CAMediaTimingFunction(name: .easeOut)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTimingFunction.h:24:12: note: class 'CAMediaTimingFunction' does not conform to the 'Sendable' protocol
22 |
23 | API_AVAILABLE(macos(10.5), ios(2.0), tvos(9.0)) API_UNAVAILABLE(watchos)
24 | @interface CAMediaTimingFunction : NSObject <NSSecureCoding>
| `- note: class 'CAMediaTimingFunction' does not conform to the 'Sendable' protocol
25 | {
26 | @private
/Users/admin/builder/spi-builder-workspace/Sources/CircularProgress/Utilities.swift:100:13: warning: static property 'easeIn' is not concurrency-safe because non-'Sendable' type 'CAMediaTimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
98 | static let `default` = CAMediaTimingFunction(name: .default)
99 | static let linear = CAMediaTimingFunction(name: .linear)
100 | static let easeIn = CAMediaTimingFunction(name: .easeIn)
| |- warning: static property 'easeIn' is not concurrency-safe because non-'Sendable' type 'CAMediaTimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'easeIn' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
101 | static let easeOut = CAMediaTimingFunction(name: .easeOut)
102 | static let easeInOut = CAMediaTimingFunction(name: .easeInEaseOut)
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTimingFunction.h:24:12: note: class 'CAMediaTimingFunction' does not conform to the 'Sendable' protocol
22 |
23 | API_AVAILABLE(macos(10.5), ios(2.0), tvos(9.0)) API_UNAVAILABLE(watchos)
24 | @interface CAMediaTimingFunction : NSObject <NSSecureCoding>
| `- note: class 'CAMediaTimingFunction' does not conform to the 'Sendable' protocol
25 | {
26 | @private
/Users/admin/builder/spi-builder-workspace/Sources/CircularProgress/Utilities.swift:101:13: warning: static property 'easeOut' is not concurrency-safe because non-'Sendable' type 'CAMediaTimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
99 | static let linear = CAMediaTimingFunction(name: .linear)
100 | static let easeIn = CAMediaTimingFunction(name: .easeIn)
101 | static let easeOut = CAMediaTimingFunction(name: .easeOut)
| |- warning: static property 'easeOut' is not concurrency-safe because non-'Sendable' type 'CAMediaTimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'easeOut' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
102 | static let easeInOut = CAMediaTimingFunction(name: .easeInEaseOut)
103 | }
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTimingFunction.h:24:12: note: class 'CAMediaTimingFunction' does not conform to the 'Sendable' protocol
22 |
23 | API_AVAILABLE(macos(10.5), ios(2.0), tvos(9.0)) API_UNAVAILABLE(watchos)
24 | @interface CAMediaTimingFunction : NSObject <NSSecureCoding>
| `- note: class 'CAMediaTimingFunction' does not conform to the 'Sendable' protocol
25 | {
26 | @private
/Users/admin/builder/spi-builder-workspace/Sources/CircularProgress/Utilities.swift:102:13: warning: static property 'easeInOut' is not concurrency-safe because non-'Sendable' type 'CAMediaTimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
100 | static let easeIn = CAMediaTimingFunction(name: .easeIn)
101 | static let easeOut = CAMediaTimingFunction(name: .easeOut)
102 | static let easeInOut = CAMediaTimingFunction(name: .easeInEaseOut)
| |- warning: static property 'easeInOut' is not concurrency-safe because non-'Sendable' type 'CAMediaTimingFunction' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'easeInOut' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
103 | }
104 |
/Applications/Xcode-16.3.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.4.sdk/System/Library/Frameworks/QuartzCore.framework/Headers/CAMediaTimingFunction.h:24:12: note: class 'CAMediaTimingFunction' does not conform to the 'Sendable' protocol
22 |
23 | API_AVAILABLE(macos(10.5), ios(2.0), tvos(9.0)) API_UNAVAILABLE(watchos)
24 | @interface CAMediaTimingFunction : NSObject <NSSecureCoding>
| `- note: class 'CAMediaTimingFunction' does not conform to the 'Sendable' protocol
25 | {
26 | @private
/Users/admin/builder/spi-builder-workspace/Sources/CircularProgress/Utilities.swift:175:13: warning: static property 'helveticaNeueLight' is not concurrency-safe because non-'Sendable' type 'NSFont?' may have shared mutable state; this is an error in the Swift 6 language mode
173 |
174 | extension NSFont {
175 | static let helveticaNeueLight = NSFont(name: "HelveticaNeue-Light", size: 0)
| |- warning: static property 'helveticaNeueLight' is not concurrency-safe because non-'Sendable' type 'NSFont?' may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'helveticaNeueLight' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
176 | }
177 |
Swift.Optional:1:21: note: generic enum 'Optional' does not conform to the 'Sendable' protocol
1 | @frozen public enum Optional<Wrapped> : ~Copyable where Wrapped : ~Copyable {
| `- note: generic enum 'Optional' does not conform to the 'Sendable' protocol
2 | case none
3 | case some(Wrapped)
/Users/admin/builder/spi-builder-workspace/Sources/CircularProgress/Utilities.swift:349:14: warning: static property 'onActionClosure' is not concurrency-safe because non-'Sendable' type 'AssociatedObject<NSControl.ActionClosure>' (aka 'AssociatedObject<(NSControl) -> ()>') may have shared mutable state; this is an error in the Swift 6 language mode
332 |
333 |
334 | final class AssociatedObject<T: Any> {
| `- note: generic class 'AssociatedObject' does not conform to the 'Sendable' protocol
335 | subscript(index: AnyObject) -> T? {
336 | get {
:
347 |
348 | private enum AssociatedKeys {
349 | static let onActionClosure = AssociatedObject<ActionClosure>()
| |- warning: static property 'onActionClosure' is not concurrency-safe because non-'Sendable' type 'AssociatedObject<NSControl.ActionClosure>' (aka 'AssociatedObject<(NSControl) -> ()>') may have shared mutable state; this is an error in the Swift 6 language mode
| |- note: add '@MainActor' to make static property 'onActionClosure' part of global actor 'MainActor'
| `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
350 | }
351 |
Build complete! (6.94s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "CircularProgress",
"name" : "CircularProgress",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
}
],
"products" : [
{
"name" : "CircularProgress",
"targets" : [
"CircularProgress"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "CircularProgress",
"module_type" : "SwiftTarget",
"name" : "CircularProgress",
"path" : "Sources/CircularProgress",
"product_memberships" : [
"CircularProgress"
],
"sources" : [
"CheckmarkView.swift",
"CircularProgress.swift",
"Utilities.swift",
"Vendored/CustomButton+Utilities.swift",
"Vendored/CustomButton.swift"
],
"type" : "library"
}
],
"tools_version" : "5.7"
}
Done.