The Swift Package Index logo.Swift Package Index

Build Information

Successful build of CoreUI, reference main (637ad9), with Swift 6.1 for macOS (SPM) on 18 May 2025 23:26:58 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.4
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Everything-as-UI/CoreUI.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/Everything-as-UI/CoreUI
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 637ad95 Last changes
Cloned https://github.com/Everything-as-UI/CoreUI.git
Revision (git rev-parse @):
637ad95fc724f32438b460b938f4120489c3d4b0
SUCCESS checkout https://github.com/Everything-as-UI/CoreUI.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": "coreui",
      "name": "CoreUI",
      "url": "https://github.com/Everything-as-UI/CoreUI.git",
      "version": "unspecified",
      "path": "/Users/admin/builder/spi-builder-workspace/.resolve-product-dependencies/.build/checkouts/CoreUI",
      "dependencies": [
      ]
    }
  ]
}
Fetching https://github.com/Everything-as-UI/CoreUI.git
[1/36] Fetching coreui
Fetched https://github.com/Everything-as-UI/CoreUI.git from cache (0.55s)
Creating working copy for https://github.com/Everything-as-UI/CoreUI.git
Working copy of https://github.com/Everything-as-UI/CoreUI.git resolved at main (637ad95)
warning: '.resolve-product-dependencies': dependency 'coreui' 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/Everything-as-UI/CoreUI.git
https://github.com/Everything-as-UI/CoreUI.git
{
  "dependencies" : [
  ],
  "manifest_display_name" : "CoreUI",
  "name" : "CoreUI",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "CoreUI",
      "targets" : [
        "CoreUI"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "CommonUI",
      "targets" : [
        "CommonUI"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "CoreUI",
      "module_type" : "SwiftTarget",
      "name" : "CoreUI",
      "path" : "Sources/CoreUI",
      "product_memberships" : [
        "CoreUI",
        "CommonUI"
      ],
      "sources" : [
        "CoreUI.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CommonUI",
      "module_type" : "SwiftTarget",
      "name" : "CommonUI",
      "path" : "Sources/CommonUI",
      "product_memberships" : [
        "CommonUI"
      ],
      "sources" : [
        "CommonUI.swift"
      ],
      "target_dependencies" : [
        "CoreUI"
      ],
      "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/3] Write sources
[2/3] Write swift-version-2F0A5646E1D333AE.txt
[4/5] Emitting module CoreUI
/Users/admin/builder/spi-builder-workspace/Sources/CoreUI/CoreUI.swift:196:16: warning: static property 'global' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
194 |
195 | extension EnvironmentValues {
196 |     static var global: Self = Self()
    |                |- warning: static property 'global' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'global' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'global' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
197 |
198 |     public static func withValue<Value, Result>(_ value: Value, at keyPath: WritableKeyPath<Self, Value>, operation: () -> Result) -> Result {
[5/5] Compiling CoreUI CoreUI.swift
/Users/admin/builder/spi-builder-workspace/Sources/CoreUI/CoreUI.swift:196:16: warning: static property 'global' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
194 |
195 | extension EnvironmentValues {
196 |     static var global: Self = Self()
    |                |- warning: static property 'global' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: convert 'global' to a 'let' constant to make 'Sendable' shared state immutable
    |                |- note: add '@MainActor' to make static property 'global' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
197 |
198 |     public static func withValue<Value, Result>(_ value: Value, at keyPath: WritableKeyPath<Self, Value>, operation: () -> Result) -> Result {
[6/7] Compiling CommonUI CommonUI.swift
[7/7] Emitting module CommonUI
Build complete! (1.10s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "CoreUI",
  "name" : "CoreUI",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "CoreUI",
      "targets" : [
        "CoreUI"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "CommonUI",
      "targets" : [
        "CommonUI"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "CoreUI",
      "module_type" : "SwiftTarget",
      "name" : "CoreUI",
      "path" : "Sources/CoreUI",
      "product_memberships" : [
        "CoreUI",
        "CommonUI"
      ],
      "sources" : [
        "CoreUI.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "CommonUI",
      "module_type" : "SwiftTarget",
      "name" : "CommonUI",
      "path" : "Sources/CommonUI",
      "product_memberships" : [
        "CommonUI"
      ],
      "sources" : [
        "CommonUI.swift"
      ],
      "target_dependencies" : [
        "CoreUI"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
Done.