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 XCAppTest, reference 1.5.0 (755e86), with Swift 6.1 for macOS (SPM) on 13 Dec 2025 17:27:47 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.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Tunous/XCAppTest.git
Reference: 1.5.0
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/Tunous/XCAppTest
 * tag               1.5.0      -> FETCH_HEAD
HEAD is now at 755e86a Fix assertIsEmpty fails for text fields on macOS
Cloned https://github.com/Tunous/XCAppTest.git
Revision (git rev-parse @):
755e86afcd53d47041ac470f1adccf2e4c17c0d1
SPI manifest file found: $PWD/.spi.yml
SUCCESS checkout https://github.com/Tunous/XCAppTest.git at 1.5.0
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/Tunous/XCAppTest.git
https://github.com/Tunous/XCAppTest.git
{
  "dependencies" : [
  ],
  "manifest_display_name" : "XCAppTest",
  "name" : "XCAppTest",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "XCAppTest",
      "targets" : [
        "XCAppTest"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "XCAppTest",
      "module_type" : "SwiftTarget",
      "name" : "XCAppTest",
      "path" : "Sources/XCAppTest",
      "product_memberships" : [
        "XCAppTest"
      ],
      "sources" : [
        "AssertionUtils.swift",
        "CGVector+Util.swift",
        "XCAppTestConfig.swift",
        "XCTestCase+Activity.swift",
        "XCUIApplication+App.swift",
        "XCUIElement+Actions.swift",
        "XCUIElement+Assertions.swift",
        "XCUIElement+Properties.swift",
        "XCUIElement+Types.swift",
        "XCUIElementQuery+Assertions.swift",
        "XCUIElementQuery+Matchers.swift",
        "XCUIElementTypeQueryProvider+Properties.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/14] Compiling XCAppTest XCUIElementQuery+Matchers.swift
[4/14] Compiling XCAppTest XCUIElementQuery+Assertions.swift
[5/14] Compiling XCAppTest XCUIElement+Types.swift
[6/15] Compiling XCAppTest XCAppTestConfig.swift
/Users/admin/builder/spi-builder-workspace/Sources/XCAppTest/XCAppTestConfig.swift:13:23: warning: static property 'defaultTimeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum XCAppTestConfig {
12 |     /// The default number of seconds within which all expectations must be fulfilled.
13 |     public static var defaultTimeout: TimeInterval = 8
   |                       |- warning: static property 'defaultTimeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'defaultTimeout' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'defaultTimeout' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | }
15 |
[7/15] Compiling XCAppTest XCTestCase+Activity.swift
/Users/admin/builder/spi-builder-workspace/Sources/XCAppTest/XCAppTestConfig.swift:13:23: warning: static property 'defaultTimeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum XCAppTestConfig {
12 |     /// The default number of seconds within which all expectations must be fulfilled.
13 |     public static var defaultTimeout: TimeInterval = 8
   |                       |- warning: static property 'defaultTimeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'defaultTimeout' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'defaultTimeout' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | }
15 |
[8/15] Compiling XCAppTest AssertionUtils.swift
[9/15] Compiling XCAppTest CGVector+Util.swift
[10/15] Compiling XCAppTest XCUIElement+Actions.swift
[11/15] Emitting module XCAppTest
/Users/admin/builder/spi-builder-workspace/Sources/XCAppTest/XCAppTestConfig.swift:13:23: warning: static property 'defaultTimeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
11 | public enum XCAppTestConfig {
12 |     /// The default number of seconds within which all expectations must be fulfilled.
13 |     public static var defaultTimeout: TimeInterval = 8
   |                       |- warning: static property 'defaultTimeout' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'defaultTimeout' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'defaultTimeout' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
14 | }
15 |
[12/15] Compiling XCAppTest XCUIElement+Assertions.swift
[13/15] Compiling XCAppTest XCUIApplication+App.swift
[14/15] Compiling XCAppTest XCUIElement+Properties.swift
[15/15] Compiling XCAppTest XCUIElementTypeQueryProvider+Properties.swift
Build complete! (11.91s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "XCAppTest",
  "name" : "XCAppTest",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
  ],
  "products" : [
    {
      "name" : "XCAppTest",
      "targets" : [
        "XCAppTest"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "XCAppTest",
      "module_type" : "SwiftTarget",
      "name" : "XCAppTest",
      "path" : "Sources/XCAppTest",
      "product_memberships" : [
        "XCAppTest"
      ],
      "sources" : [
        "AssertionUtils.swift",
        "CGVector+Util.swift",
        "XCAppTestConfig.swift",
        "XCTestCase+Activity.swift",
        "XCUIApplication+App.swift",
        "XCUIElement+Actions.swift",
        "XCUIElement+Assertions.swift",
        "XCUIElement+Properties.swift",
        "XCUIElement+Types.swift",
        "XCUIElementQuery+Assertions.swift",
        "XCUIElementQuery+Matchers.swift",
        "XCUIElementTypeQueryProvider+Properties.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.7"
}
Done.