The Swift Package Index logo.Swift Package Index

Build Information

Successful build of ResolvingContainer, reference master (5ffead), with Swift 6.1 for Android on 30 May 2025 01:36:11 UTC.

Swift 6 data race errors: 1

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 -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 2>&1

Build Log

========================================
RunAll
========================================
Builder version: 4.63.1
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Cozmonat/ResolvingContainer.git
Reference: master
Initialized empty Git repository in /host/spi-builder-workspace/.git/
hint: Using 'master' as the name for the initial branch. This default branch name
hint: is subject to change. To configure the initial branch name to use in all
hint: of your new repositories, which will suppress this warning, call:
hint:
hint: 	git config --global init.defaultBranch <name>
hint:
hint: Names commonly chosen instead of 'master' are 'main', 'trunk' and
hint: 'development'. The just-created branch can be renamed via this command:
hint:
hint: 	git branch -m <name>
From https://github.com/Cozmonat/ResolvingContainer
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 5ffead9 Added ability to check if the instance of the object is stored in the container
Cloned https://github.com/Cozmonat/ResolvingContainer.git
Revision (git rev-parse @):
5ffead9d72e4d90adac37570e7abe7633ac495df
SUCCESS checkout https://github.com/Cozmonat/ResolvingContainer.git at master
========================================
Build
========================================
Selected platform:         android
Swift version:             6.1
Building package at path:  $PWD
https://github.com/Cozmonat/ResolvingContainer.git
https://github.com/Cozmonat/ResolvingContainer.git
WARNING: environment variable SUPPRESS_SWIFT_6_FLAGS is not set
{
  "dependencies" : [
  ],
  "manifest_display_name" : "ResolvingContainer",
  "name" : "ResolvingContainer",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "10.0"
    },
    {
      "name" : "macos",
      "version" : "10.12"
    },
    {
      "name" : "watchos",
      "version" : "3.0"
    },
    {
      "name" : "tvos",
      "version" : "10.0"
    }
  ],
  "products" : [
    {
      "name" : "ResolvingContainer",
      "targets" : [
        "ResolvingContainer"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "ResolvingContainer",
      "module_type" : "SwiftTarget",
      "name" : "ResolvingContainer",
      "path" : "ResolvingContainer",
      "product_memberships" : [
        "ResolvingContainer"
      ],
      "sources" : [
        "ResolvingContainer.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4606859-1":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:android-6.1-latest swift build --swift-sdk aarch64-unknown-linux-android24 -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 2>&1
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:fe1962677657b2408c217cb5cceb3c09bc1d91486e360cebbc6eee461a5945d8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/4] Compiling ResolvingContainer ResolvingContainer.swift
/host/spi-builder-workspace/ResolvingContainer/ResolvingContainer.swift:171:14: warning: let 'ResolvingContainerQueueIdentifierKey' is not concurrency-safe because non-'Sendable' type 'DispatchSpecificKey<UUID>' may have shared mutable state; this is an error in the Swift 6 language mode
169 | }
170 |
171 | internal let ResolvingContainerQueueIdentifierKey = DispatchSpecificKey<UUID>()
    |              `- warning: let 'ResolvingContainerQueueIdentifierKey' is not concurrency-safe because non-'Sendable' type 'DispatchSpecificKey<UUID>' may have shared mutable state; this is an error in the Swift 6 language mode
172 |
173 | internal extension DispatchQueue {
Dispatch.DispatchSpecificKey:1:20: note: generic class 'DispatchSpecificKey' does not conform to the 'Sendable' protocol
1 | final public class DispatchSpecificKey<T> {
  |                    `- note: generic class 'DispatchSpecificKey' does not conform to the 'Sendable' protocol
2 |     public init()
3 |     deinit
/host/spi-builder-workspace/ResolvingContainer/ResolvingContainer.swift:32:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dispatch'
 30 |  */
 31 |
 32 | import Foundation
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dispatch'
 33 |
 34 | open class ResolvingContainer {
    :
169 | }
170 |
171 | internal let ResolvingContainerQueueIdentifierKey = DispatchSpecificKey<UUID>()
    |              |- note: add '@MainActor' to make let 'ResolvingContainerQueueIdentifierKey' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
172 |
173 | internal extension DispatchQueue {
[4/4] Emitting module ResolvingContainer
/host/spi-builder-workspace/ResolvingContainer/ResolvingContainer.swift:171:14: warning: let 'ResolvingContainerQueueIdentifierKey' is not concurrency-safe because non-'Sendable' type 'DispatchSpecificKey<UUID>' may have shared mutable state; this is an error in the Swift 6 language mode
169 | }
170 |
171 | internal let ResolvingContainerQueueIdentifierKey = DispatchSpecificKey<UUID>()
    |              `- warning: let 'ResolvingContainerQueueIdentifierKey' is not concurrency-safe because non-'Sendable' type 'DispatchSpecificKey<UUID>' may have shared mutable state; this is an error in the Swift 6 language mode
172 |
173 | internal extension DispatchQueue {
Dispatch.DispatchSpecificKey:1:20: note: generic class 'DispatchSpecificKey' does not conform to the 'Sendable' protocol
1 | final public class DispatchSpecificKey<T> {
  |                    `- note: generic class 'DispatchSpecificKey' does not conform to the 'Sendable' protocol
2 |     public init()
3 |     deinit
/host/spi-builder-workspace/ResolvingContainer/ResolvingContainer.swift:32:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dispatch'
 30 |  */
 31 |
 32 | import Foundation
    | `- warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'Dispatch'
 33 |
 34 | open class ResolvingContainer {
    :
169 | }
170 |
171 | internal let ResolvingContainerQueueIdentifierKey = DispatchSpecificKey<UUID>()
    |              |- note: add '@MainActor' to make let 'ResolvingContainerQueueIdentifierKey' part of global actor 'MainActor'
    |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
172 |
173 | internal extension DispatchQueue {
Build complete! (9.58s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "ResolvingContainer",
  "name" : "ResolvingContainer",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "10.0"
    },
    {
      "name" : "macos",
      "version" : "10.12"
    },
    {
      "name" : "watchos",
      "version" : "3.0"
    },
    {
      "name" : "tvos",
      "version" : "10.0"
    }
  ],
  "products" : [
    {
      "name" : "ResolvingContainer",
      "targets" : [
        "ResolvingContainer"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "ResolvingContainer",
      "module_type" : "SwiftTarget",
      "name" : "ResolvingContainer",
      "path" : "ResolvingContainer",
      "product_memberships" : [
        "ResolvingContainer"
      ],
      "sources" : [
        "ResolvingContainer.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
android-6.1-latest: Pulling from finestructure/spi-images
Digest: sha256:fe1962677657b2408c217cb5cceb3c09bc1d91486e360cebbc6eee461a5945d8
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:android-6.1-latest
Done.