The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Failed to build Animatable, reference main (10c0a8), with Swift 6.2 (beta) for macOS (SPM) on 21 Jun 2025 15:27:10 UTC.

Build Command

env DEVELOPER_DIR=/Applications/Xcode-26.0.0-Beta.app xcrun swift build --arch arm64

Build Log

========================================
RunAll
========================================
Builder version: 4.64.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/c-villain/Animatable.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/c-villain/Animatable
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 10c0a82 no message
Cloned https://github.com/c-villain/Animatable.git
Revision (git rev-parse @):
10c0a828639b5379fb2262915125907eca4b02f6
SUCCESS checkout https://github.com/c-villain/Animatable.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.2
Building package at path:  $PWD
https://github.com/c-villain/Animatable.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/13] Emitting module Animatable
[4/14] Compiling Animatable Scaling.swift
[5/14] Compiling Animatable LiveComments.swift
[6/14] Compiling Animatable Rotating.swift
[7/14] Compiling Animatable Explosion.swift
[8/14] Compiling Animatable Animatable.swift
[9/14] Compiling Animatable CoveredModifier.swift
[10/14] Compiling Animatable Fireworks.swift
[11/14] Compiling Animatable ValueChangedModifier.swift
[12/14] Compiling Animatable Blinking.swift
[13/14] Compiling Animatable Shimmerable.swift
/Users/admin/builder/spi-builder-workspace/Sources/Animatable/Modifiers/Shimmerable.swift:40:18: error: 'overlay(alignment:content:)' is only available in macOS 12.0 or newer
23 | }
24 |
25 | struct ShimmeringView<Content: View>: View {
   |        `- note: add @available attribute to enclosing generic struct
26 |     private let content: () -> Content
27 |     private let configuration: ShimmerConfiguration
   :
35 |     }
36 |
37 |     var body: some View {
   |         `- note: add @available attribute to enclosing property
38 |         if #available(iOS 15, *) {
39 |             content()
40 |                 .overlay { shimmer }
   |                  |- error: 'overlay(alignment:content:)' is only available in macOS 12.0 or newer
   |                  `- note: add 'if #available' version check
41 |         } else {
42 |             content()
/Users/admin/builder/spi-builder-workspace/Sources/Animatable/Modifiers/Shimmerable.swift:38:34: error: 'buildLimitedAvailability' is only available in macOS 11.0 or newer
23 | }
24 |
25 | struct ShimmeringView<Content: View>: View {
   |        `- note: add @available attribute to enclosing generic struct
26 |     private let content: () -> Content
27 |     private let configuration: ShimmerConfiguration
   :
35 |     }
36 |
37 |     var body: some View {
   |         `- note: add @available attribute to enclosing property
38 |         if #available(iOS 15, *) {
   |                                  |- error: 'buildLimitedAvailability' is only available in macOS 11.0 or newer
   |                                  `- note: add 'if #available' version check
39 |             content()
40 |                 .overlay { shimmer }
[14/14] Compiling Animatable Tweaking.swift
BUILD FAILURE 6.2 macosSpm