Build Information
Successful build of Kinetics, reference 1.0.0 (4ae793
), with Swift 6.1 for macOS (SPM) on 5 Sep 2025 08:02:10 UTC.
Swift 6 data race errors: 0
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
Build Log
========================================
RunAll
========================================
Builder version: 4.67.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/roberthein/Kinetics.git
Reference: 1.0.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/roberthein/Kinetics
* tag 1.0.0 -> FETCH_HEAD
HEAD is now at 4ae7931 Update screen recordings.
Cloned https://github.com/roberthein/Kinetics.git
Revision (git rev-parse @):
4ae7931eeb5d1ae969d02992017608ffdc1ed287
SUCCESS checkout https://github.com/roberthein/Kinetics.git at 1.0.0
========================================
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": "kinetics",
"name": "Kinetics",
"url": "https://github.com/roberthein/Kinetics.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/Kinetics",
"dependencies": [
]
}
]
}
Fetching https://github.com/roberthein/Kinetics.git
[1/120] Fetching kinetics
Fetched https://github.com/roberthein/Kinetics.git from cache (2.26s)
Creating working copy for https://github.com/roberthein/Kinetics.git
Working copy of https://github.com/roberthein/Kinetics.git resolved at 1.0.0 (4ae7931)
warning: '.resolve-product-dependencies': dependency 'kinetics' 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/roberthein/Kinetics.git
https://github.com/roberthein/Kinetics.git
{
"dependencies" : [
],
"manifest_display_name" : "Kinetics",
"name" : "Kinetics",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "18.0"
},
{
"name" : "macos",
"version" : "15.0"
},
{
"name" : "tvos",
"version" : "18.0"
},
{
"name" : "watchos",
"version" : "11.0"
}
],
"products" : [
{
"name" : "Kinetics",
"targets" : [
"Kinetics"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "Kinetics",
"module_type" : "SwiftTarget",
"name" : "Kinetics",
"path" : "Sources/Kinetics",
"product_memberships" : [
"Kinetics"
],
"sources" : [
"Kinetics+Animatable.swift",
"Kinetics+Animator.swift",
"Kinetics+Bounce.swift",
"Kinetics+Clock.swift",
"Kinetics+Drag.swift",
"Kinetics+Projection.swift",
"Kinetics+Rotation.swift",
"Kinetics+RubberBand.swift",
"Kinetics+Sugar.swift",
"Kinetics.swift"
],
"type" : "library"
}
],
"tools_version" : "6.0"
}
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
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-2F0A5646E1D333AE.txt
[3/12] Compiling Kinetics Kinetics+Projection.swift
[4/13] Compiling Kinetics Kinetics+Clock.swift
[5/13] Compiling Kinetics Kinetics+Sugar.swift
[6/13] Emitting module Kinetics
/Users/admin/builder/spi-builder-workspace/Sources/Kinetics/Kinetics+Animatable.swift:19:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
17 | /// Extends CGPoint to conform to KineticsValue for 2D point animations.
18 | /// Maps x,y coordinates to/from a two-element components array.
19 | extension CGPoint: KineticsValue, @unchecked Sendable {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
20 | public typealias FloatType = Double
21 | public var components: [Double] {
/Users/admin/builder/spi-builder-workspace/Sources/Kinetics/Kinetics+Animatable.swift:38:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
36 | /// Extends CGSize to conform to KineticsValue for 2D size animations.
37 | /// Maps width,height dimensions to/from a two-element components array.
38 | extension CGSize: KineticsValue, @unchecked Sendable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
39 | public typealias FloatType = Double
40 | public var components: [Double] {
/Users/admin/builder/spi-builder-workspace/Sources/Kinetics/Kinetics+Animatable.swift:57:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
55 | /// Extends CGRect to conform to KineticsValue for 2D rectangle animations.
56 | /// Maps origin.x, origin.y, size.width, size.height to/from a four-element components array.
57 | extension CGRect: KineticsValue, @unchecked Sendable {
| |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
58 | public typealias FloatType = Double
59 | public var components: [Double] {
[7/13] Compiling Kinetics Kinetics+Animatable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Kinetics/Kinetics+Animatable.swift:19:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
17 | /// Extends CGPoint to conform to KineticsValue for 2D point animations.
18 | /// Maps x,y coordinates to/from a two-element components array.
19 | extension CGPoint: KineticsValue, @unchecked Sendable {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
20 | public typealias FloatType = Double
21 | public var components: [Double] {
/Users/admin/builder/spi-builder-workspace/Sources/Kinetics/Kinetics+Animatable.swift:38:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
36 | /// Extends CGSize to conform to KineticsValue for 2D size animations.
37 | /// Maps width,height dimensions to/from a two-element components array.
38 | extension CGSize: KineticsValue, @unchecked Sendable {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
39 | public typealias FloatType = Double
40 | public var components: [Double] {
/Users/admin/builder/spi-builder-workspace/Sources/Kinetics/Kinetics+Animatable.swift:57:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
55 | /// Extends CGRect to conform to KineticsValue for 2D rectangle animations.
56 | /// Maps origin.x, origin.y, size.width, size.height to/from a four-element components array.
57 | extension CGRect: KineticsValue, @unchecked Sendable {
| |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'Sendable'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
58 | public typealias FloatType = Double
59 | public var components: [Double] {
[8/13] Compiling Kinetics Kinetics+Animator.swift
[9/13] Compiling Kinetics Kinetics+RubberBand.swift
[10/13] Compiling Kinetics Kinetics+Rotation.swift
[11/13] Compiling Kinetics Kinetics+Bounce.swift
[12/13] Compiling Kinetics Kinetics+Drag.swift
[13/13] Compiling Kinetics Kinetics.swift
Build complete! (10.58s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "Kinetics",
"name" : "Kinetics",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "18.0"
},
{
"name" : "macos",
"version" : "15.0"
},
{
"name" : "tvos",
"version" : "18.0"
},
{
"name" : "watchos",
"version" : "11.0"
}
],
"products" : [
{
"name" : "Kinetics",
"targets" : [
"Kinetics"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "Kinetics",
"module_type" : "SwiftTarget",
"name" : "Kinetics",
"path" : "Sources/Kinetics",
"product_memberships" : [
"Kinetics"
],
"sources" : [
"Kinetics+Animatable.swift",
"Kinetics+Animator.swift",
"Kinetics+Bounce.swift",
"Kinetics+Clock.swift",
"Kinetics+Drag.swift",
"Kinetics+Projection.swift",
"Kinetics+Rotation.swift",
"Kinetics+RubberBand.swift",
"Kinetics+Sugar.swift",
"Kinetics.swift"
],
"type" : "library"
}
],
"tools_version" : "6.0"
}
Done.