The Swift Package Index logo.Swift Package Index

Build Information

Successful build of MockableKit, reference master (de9959), with Swift 6.1 for macOS (SPM) on 9 May 2026 15:58:11 UTC.

Swift 6 data race errors: 2

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.70.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/senolmurat/MockableKit.git
Reference: master
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/senolmurat/MockableKit
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at de99591 Update swift.yml
Cloned https://github.com/senolmurat/MockableKit.git
Revision (git rev-parse @):
de99591c53d534062a944fa39d6c7cc1b18e02cc
SUCCESS checkout https://github.com/senolmurat/MockableKit.git at master
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/senolmurat/MockableKit.git
https://github.com/senolmurat/MockableKit.git
{
  "dependencies" : [
  ],
  "manifest_display_name" : "MockableKit",
  "name" : "MockableKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "9.0"
    },
    {
      "name" : "tvos",
      "version" : "16.0"
    }
  ],
  "products" : [
    {
      "name" : "MockableKit",
      "targets" : [
        "MockableKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "MockableKitTests",
      "module_type" : "SwiftTarget",
      "name" : "MockableKitTests",
      "path" : "Tests/MockableKitTests",
      "sources" : [
        "MockableKitTests.swift"
      ],
      "target_dependencies" : [
        "MockableKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "MockableKit",
      "module_type" : "SwiftTarget",
      "name" : "MockableKit",
      "path" : "Sources/MockableKit",
      "product_memberships" : [
        "MockableKit"
      ],
      "sources" : [
        "MockCache.swift",
        "MockEngine.swift",
        "MockableConfiguration.swift",
        "MockableError.swift",
        "MockableKit.swift",
        "SchemaExtractor.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
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/9] Compiling MockableKit SchemaExtractor.swift
[4/9] Compiling MockableKit MockableKit.swift
/Users/admin/builder/spi-builder-workspace/Sources/MockableKit/MockableKit.swift:116:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
114 |         completion: @escaping (Self?) -> Void
115 |     ) {
116 |         Task {
    |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
117 |             let result = try? await MockEngine.shared.generate(
118 |                 for: Self.self,
    :
120 |                 cacheEnabled: cacheEnabled
121 |             )
122 |             completion(result)
    |             `- note: closure captures 'completion' which is accessible to code in the current task
123 |         }
124 |     }
/Users/admin/builder/spi-builder-workspace/Sources/MockableKit/MockableKit.swift:169:14: warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
167 |         completion: @escaping ([Self]?) -> Void
168 |     ) {
169 |         Task {
    |              `- warning: passing closure as a 'sending' parameter risks causing data races between code in the current task and concurrent execution of the closure; this is an error in the Swift 6 language mode
170 |             let result = try? await MockEngine.shared.generateArray(
171 |                 for: Self.self,
    :
174 |                 cacheEnabled: cacheEnabled
175 |             )
176 |             completion(result)
    |             `- note: closure captures 'completion' which is accessible to code in the current task
177 |         }
178 |     }
[5/9] Compiling MockableKit MockableConfiguration.swift
/Users/admin/builder/spi-builder-workspace/Sources/MockableKit/MockableConfiguration.swift:16:23: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |
15 |     /// The shared (default) configuration. Set this up once in your app/test target.
16 |     public static var shared = MockableConfiguration()
   |                       |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 |     /// Your Google Gemini API key.
[6/9] Compiling MockableKit MockableError.swift
[7/9] Emitting module MockableKit
/Users/admin/builder/spi-builder-workspace/Sources/MockableKit/MockEngine.swift:10:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'MockEngine' may have shared mutable state; this is an error in the Swift 6 language mode
  6 | /// Internal engine that uses Mirror reflection to extract field metadata
  7 | /// and calls the Google Gemini API to generate realistic JSON mock data.
  8 | internal class MockEngine {
    |                `- note: class 'MockEngine' does not conform to the 'Sendable' protocol
  9 |
 10 |     static let shared = MockEngine()
    |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'MockEngine' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 |     private init() {}
 12 |
/Users/admin/builder/spi-builder-workspace/Sources/MockableKit/MockableConfiguration.swift:16:23: warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
14 |
15 |     /// The shared (default) configuration. Set this up once in your app/test target.
16 |     public static var shared = MockableConfiguration()
   |                       |- warning: static property 'shared' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |                       |- note: convert 'shared' to a 'let' constant to make 'Sendable' shared state immutable
   |                       |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
   |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
17 |
18 |     /// Your Google Gemini API key.
[8/9] Compiling MockableKit MockEngine.swift
/Users/admin/builder/spi-builder-workspace/Sources/MockableKit/MockEngine.swift:10:16: warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'MockEngine' may have shared mutable state; this is an error in the Swift 6 language mode
  6 | /// Internal engine that uses Mirror reflection to extract field metadata
  7 | /// and calls the Google Gemini API to generate realistic JSON mock data.
  8 | internal class MockEngine {
    |                `- note: class 'MockEngine' does not conform to the 'Sendable' protocol
  9 |
 10 |     static let shared = MockEngine()
    |                |- warning: static property 'shared' is not concurrency-safe because non-'Sendable' type 'MockEngine' may have shared mutable state; this is an error in the Swift 6 language mode
    |                |- note: add '@MainActor' to make static property 'shared' part of global actor 'MainActor'
    |                `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
 11 |     private init() {}
 12 |
[9/9] Compiling MockableKit MockCache.swift
Build complete! (5.26s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "MockableKit",
  "name" : "MockableKit",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "13.0"
    },
    {
      "name" : "macos",
      "version" : "13.0"
    },
    {
      "name" : "watchos",
      "version" : "9.0"
    },
    {
      "name" : "tvos",
      "version" : "16.0"
    }
  ],
  "products" : [
    {
      "name" : "MockableKit",
      "targets" : [
        "MockableKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "MockableKitTests",
      "module_type" : "SwiftTarget",
      "name" : "MockableKitTests",
      "path" : "Tests/MockableKitTests",
      "sources" : [
        "MockableKitTests.swift"
      ],
      "target_dependencies" : [
        "MockableKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "MockableKit",
      "module_type" : "SwiftTarget",
      "name" : "MockableKit",
      "path" : "Sources/MockableKit",
      "product_memberships" : [
        "MockableKit"
      ],
      "sources" : [
        "MockCache.swift",
        "MockEngine.swift",
        "MockableConfiguration.swift",
        "MockableError.swift",
        "MockableKit.swift",
        "SchemaExtractor.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.9"
}
Done.