Build Information
Failed to build AnimationStack, reference main (096fd2), with Swift 6.2 for macOS (SPM) on 20 Jun 2025 16:16:11 UTC.
Build Command
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64Build Log
========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/FlorianHubl/AnimationStack.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/FlorianHubl/AnimationStack
* branch main -> FETCH_HEAD
* [new branch] main -> origin/main
HEAD is now at 096fd21 updated
Cloned https://github.com/FlorianHubl/AnimationStack.git
Revision (git rev-parse @):
096fd211323e9231b713b0dd2144cb542f16eb13
SUCCESS checkout https://github.com/FlorianHubl/AnimationStack.git at main
========================================
Build
========================================
Selected platform: macosSpm
Swift version: 6.2
Building package at path: $PWD
https://github.com/FlorianHubl/AnimationStack.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-1EA4D86E10B52AF.txt
[3/6] Emitting module AnimationStack
[4/6] Compiling AnimationStack TupleViewExtention.swift
[5/6] Compiling AnimationStack AnimationStack.swift
[6/6] Compiling AnimationStack ForEachAnimation.swift
/Users/admin/builder/spi-builder-workspace/Sources/AnimationStack/ForEachAnimation.swift:46:13: warning: capture of non-sendable type 'Data.Type' in an isolated closure
44 | }
45 | Timer.scheduledTimer(withTimeInterval: delay, repeats: false) { _ in
46 | animations[index] = true
| `- warning: capture of non-sendable type 'Data.Type' in an isolated closure
47 | index += 1
48 | start()
/Users/admin/builder/spi-builder-workspace/Sources/AnimationStack/ForEachAnimation.swift:46:13: warning: capture of non-sendable type 'Content.Type' in an isolated closure
44 | }
45 | Timer.scheduledTimer(withTimeInterval: delay, repeats: false) { _ in
46 | animations[index] = true
| `- warning: capture of non-sendable type 'Content.Type' in an isolated closure
47 | index += 1
48 | start()
/Users/admin/builder/spi-builder-workspace/Sources/AnimationStack/ForEachAnimation.swift:38:18: warning: capture of non-sendable type 'Data.Type' in an isolated closure
36 | @State private var animations: [Bool]
37 |
38 | private func start() {
| `- warning: capture of non-sendable type 'Data.Type' in an isolated closure
39 | guard index < data.count else {
40 | var ary = Array(repeating: true, count: data.count)
/Users/admin/builder/spi-builder-workspace/Sources/AnimationStack/ForEachAnimation.swift:38:18: warning: capture of non-sendable type 'Content.Type' in an isolated closure
36 | @State private var animations: [Bool]
37 |
38 | private func start() {
| `- warning: capture of non-sendable type 'Content.Type' in an isolated closure
39 | guard index < data.count else {
40 | var ary = Array(repeating: true, count: data.count)
/Users/admin/builder/spi-builder-workspace/Sources/AnimationStack/ForEachAnimation.swift:63:16: error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
61 |
62 | public var body: some View {
63 | return Group {
| `- error: the compiler is unable to type-check this expression in reasonable time; try breaking up the expression into distinct sub-expressions
64 | ForEach(data.indices, id: \.self) { i in
65 | content(data[i])
BUILD FAILURE 6.2 macosSpm