Build Information
Successful build of Glorifier, reference main (5afeed
), with Swift 6.0 for macOS (SPM) on 29 Nov 2024 12:23:52 UTC.
Swift 6 data race errors: 1
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.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/no-comment/Glorifier.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/no-comment/Glorifier
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 5afeed5 Update README.md
Cloned https://github.com/no-comment/Glorifier.git
Revision (git rev-parse @):
5afeed5a051e247f610830558d82f09b3db9de2a
SUCCESS checkout https://github.com/no-comment/Glorifier.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": "glorifier",
"name": "Glorifier",
"url": "https://github.com/no-comment/Glorifier.git",
"version": "unspecified",
"path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/Glorifier",
"dependencies": [
]
}
]
}
Fetching https://github.com/no-comment/Glorifier.git
[3/83] Fetching glorifier
Fetched https://github.com/no-comment/Glorifier.git from cache (0.66s)
Creating working copy for https://github.com/no-comment/Glorifier.git
Working copy of https://github.com/no-comment/Glorifier.git resolved at main (5afeed5)
warning: '.resolve-product-dependencies': dependency 'glorifier' 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/no-comment/Glorifier.git
{
"dependencies" : [
],
"manifest_display_name" : "Glorifier",
"name" : "Glorifier",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "12.0"
},
{
"name" : "ios",
"version" : "15.0"
}
],
"products" : [
{
"name" : "Glorifier",
"targets" : [
"Glorifier"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "Glorifier",
"module_type" : "SwiftTarget",
"name" : "Glorifier",
"path" : "Sources/Glorifier",
"product_memberships" : [
"Glorifier"
],
"sources" : [
"AnimatableShadow.swift",
"Glorifier.swift",
"GlorifierEffect.swift"
],
"type" : "library"
}
],
"tools_version" : "5.7"
}
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/6] Compiling Glorifier GlorifierEffect.swift
[4/6] Compiling Glorifier AnimatableShadow.swift
/Users/admin/builder/spi-builder-workspace/Sources/Glorifier/AnimatableShadow.swift:14:9: warning: main actor-isolated property 'animatableData' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
6 | import SwiftUI
7 |
8 | struct AnimatableShadow: ViewModifier, Animatable {
| `- note: add '@preconcurrency' to the 'Animatable' conformance to defer isolation checking to run time
9 | var state: Double
10 | var shadowOffset: Double = 50
:
12 | var shadowColor: Color = .black
13 |
14 | var animatableData: Double {
| `- warning: main actor-isolated property 'animatableData' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
15 | get { state }
16 | set { state = newValue }
SwiftUICore.Animatable:4:9: note: 'animatableData' declared here
2 | public protocol Animatable {
3 | associatedtype AnimatableData : VectorArithmetic
4 | var animatableData: Self.AnimatableData { get set }
| `- note: 'animatableData' declared here
5 | static func _makeAnimatable(value: inout _GraphValue<Self>, inputs: _GraphInputs)
6 | }
[5/6] Emitting module Glorifier
/Users/admin/builder/spi-builder-workspace/Sources/Glorifier/AnimatableShadow.swift:14:9: warning: main actor-isolated property 'animatableData' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
6 | import SwiftUI
7 |
8 | struct AnimatableShadow: ViewModifier, Animatable {
| `- note: add '@preconcurrency' to the 'Animatable' conformance to defer isolation checking to run time
9 | var state: Double
10 | var shadowOffset: Double = 50
:
12 | var shadowColor: Color = .black
13 |
14 | var animatableData: Double {
| `- warning: main actor-isolated property 'animatableData' cannot be used to satisfy nonisolated protocol requirement; this is an error in the Swift 6 language mode
15 | get { state }
16 | set { state = newValue }
SwiftUICore.Animatable:4:9: note: 'animatableData' declared here
2 | public protocol Animatable {
3 | associatedtype AnimatableData : VectorArithmetic
4 | var animatableData: Self.AnimatableData { get set }
| `- note: 'animatableData' declared here
5 | static func _makeAnimatable(value: inout _GraphValue<Self>, inputs: _GraphInputs)
6 | }
[6/6] Compiling Glorifier Glorifier.swift
Build complete! (12.31s)
Build complete.
{
"dependencies" : [
],
"manifest_display_name" : "Glorifier",
"name" : "Glorifier",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "12.0"
},
{
"name" : "ios",
"version" : "15.0"
}
],
"products" : [
{
"name" : "Glorifier",
"targets" : [
"Glorifier"
],
"type" : {
"library" : [
"automatic"
]
}
}
],
"targets" : [
{
"c99name" : "Glorifier",
"module_type" : "SwiftTarget",
"name" : "Glorifier",
"path" : "Sources/Glorifier",
"product_memberships" : [
"Glorifier"
],
"sources" : [
"AnimatableShadow.swift",
"Glorifier.swift",
"GlorifierEffect.swift"
],
"type" : "library"
}
],
"tools_version" : "5.7"
}
Done.