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

Successful build of Glorifier, reference main (5afeed), with Swift 6.1 for macOS (SPM) on 27 Apr 2025 13:33:11 UTC.

Swift 6 data race errors: 1

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 -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.61.0
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.59s)
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.1
Building package at path:  $PWD
https://github.com/no-comment/Glorifier.git
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.3.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-2F0A5646E1D333AE.txt
[3/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 requirement from protocol 'Animatable'; 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 requirement from protocol 'Animatable'; this is an error in the Swift 6 language mode
15 |         get { state }
16 |         set { state = newValue }
[4/6] Compiling Glorifier Glorifier.swift
[5/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 requirement from protocol 'Animatable'; 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 requirement from protocol 'Animatable'; this is an error in the Swift 6 language mode
15 |         get { state }
16 |         set { state = newValue }
[6/6] Compiling Glorifier GlorifierEffect.swift
Build complete! (7.71s)
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.