Build Information
Successful build of CGPointVector, reference main (e29a77
), with Swift 6.0 for macOS (SPM) on 28 Nov 2024 01:14:05 UTC.
Swift 6 data race errors: 0
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.1.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.58.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/koher/cgpointvector.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/koher/cgpointvector
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at e29a77e Merge pull request #9 from koher/github-actions
Cloned https://github.com/koher/cgpointvector.git
Revision (git rev-parse @):
e29a77e372cbe0524b8b512f55c5a60f6d19706d
SUCCESS checkout https://github.com/koher/cgpointvector.git at main
========================================
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": "cgpointvector",
"name": "CGPointVector",
"url": "https://github.com/koher/cgpointvector.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/cgpointvector",
"dependencies": [
]
}
]
}
Fetching https://github.com/koher/cgpointvector.git
[6/568] Fetching cgpointvector
Fetched https://github.com/koher/cgpointvector.git from cache (0.82s)
Creating working copy for https://github.com/koher/cgpointvector.git
Working copy of https://github.com/koher/cgpointvector.git resolved at main (e29a77e)
warning: '.resolve-product-dependencies': dependency 'cgpointvector' is not used by any target
Found 0 product dependencies
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.0
Building package at path: $PWD
https://github.com/koher/cgpointvector.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.1.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--7754E27361AE5C74.txt
[3/8] Compiling CGPointVector CGRect.swift
/Users/admin/builder/spi-builder-workspace/Sources/CGPointVector/CGRect.swift:16:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
14 | }
15 |
16 | extension CGRect: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
17 | public var description: String {
18 | return "(\(origin.description), \(size.description))"
[4/8] Compiling CGPointVector CGSize.swift
/Users/admin/builder/spi-builder-workspace/Sources/CGPointVector/CGSize.swift:50:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
48 | }
49 |
50 | extension CGSize: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
51 | public var description: String {
52 | return "(\(width), \(height))"
[5/8] Compiling CGPointVector CGPoint.swift
/Users/admin/builder/spi-builder-workspace/Sources/CGPointVector/CGPoint.swift:50:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
48 | }
49 |
50 | extension CGPoint: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
51 | public var description: String {
52 | return "(\(x), \(y))"
[6/8] Compiling CGPointVector CGVector.swift
/Users/admin/builder/spi-builder-workspace/Sources/CGPointVector/CGVector.swift:50:1: warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
48 | }
49 |
50 | extension CGVector: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
51 | public var description: String {
52 | return "(\(dx), \(dy))"
[7/8] Emitting module CGPointVector
/Users/admin/builder/spi-builder-workspace/Sources/CGPointVector/CGAffineTransform.swift:9:1: warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
7 | }
8 |
9 | extension CGAffineTransform: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
10 | public var description: String {
11 | return "(\(a), \(b), \(c), \(d), \(tx), \(ty))"
/Users/admin/builder/spi-builder-workspace/Sources/CGPointVector/CGPoint.swift:50:1: warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
48 | }
49 |
50 | extension CGPoint: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'CGPoint' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
51 | public var description: String {
52 | return "(\(x), \(y))"
/Users/admin/builder/spi-builder-workspace/Sources/CGPointVector/CGRect.swift:16:1: warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
14 | }
15 |
16 | extension CGRect: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'CGRect' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
17 | public var description: String {
18 | return "(\(origin.description), \(size.description))"
/Users/admin/builder/spi-builder-workspace/Sources/CGPointVector/CGSize.swift:50:1: warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
48 | }
49 |
50 | extension CGSize: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'CGSize' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
51 | public var description: String {
52 | return "(\(width), \(height))"
/Users/admin/builder/spi-builder-workspace/Sources/CGPointVector/CGVector.swift:50:1: warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
48 | }
49 |
50 | extension CGVector: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'CGVector' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
51 | public var description: String {
52 | return "(\(dx), \(dy))"
[8/8] Compiling CGPointVector CGAffineTransform.swift
/Users/admin/builder/spi-builder-workspace/Sources/CGPointVector/CGAffineTransform.swift:9:1: warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
7 | }
8 |
9 | extension CGAffineTransform: CustomStringConvertible {
| |- warning: extension declares a conformance of imported type 'CGAffineTransform' to imported protocol 'CustomStringConvertible'; this will not behave correctly if the owners of 'CoreFoundation' introduce this conformance in the future
| `- note: add '@retroactive' to silence this warning
10 | public var description: String {
11 | return "(\(a), \(b), \(c), \(d), \(tx), \(ty))"
Build complete! (4.93s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "CGPointVector",
"name" : "CGPointVector",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "ios",
"version" : "8.0"
},
{
"name" : "macos",
"version" : "10.10"
},
{
"name" : "tvos",
"version" : "9.0"
},
{
"name" : "watchos",
"version" : "2.0"
}
],
"products" : [
{
"name" : "CGPointVector",
"targets" : [
"CGPointVector"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"swift_languages_versions" : [
"5"
],
"targets" : [
{
"c99name" : "CGPointVectorTests",
"module_type" : "SwiftTarget",
"name" : "CGPointVectorTests",
"path" : "Tests/CGPointVectorTests",
"sources" : [
"CGAffineTransformTests.swift",
"CGPointTests.swift",
"CGPointVectorTests.swift",
"CGRectTests.swift",
"CGSizeTests.swift",
"CGVectorTests.swift"
],
"target_dependencies" : [
"CGPointVector"
],
"type" : "test"
},
{
"c99name" : "CGPointVector",
"module_type" : "SwiftTarget",
"name" : "CGPointVector",
"path" : "Sources",
"product_memberships" : [
"CGPointVector"
],
"sources" : [
"CGPointVector/CGAffineTransform.swift",
"CGPointVector/CGPoint.swift",
"CGPointVector/CGRect.swift",
"CGPointVector/CGSize.swift",
"CGPointVector/CGVector.swift"
],
"type" : "library"
}
],
"tools_version" : "5.0"
}
Done.