The Swift Package Index logo.Swift Package Index

Track the adoption of Swift 6 strict concurrency checks for data race safety. How many packages are Ready for Swift 6?

Build Information

Successful build of DiceKit, reference master (5e29f5), with Swift 6.0 for Linux on 28 Nov 2024 20:11:00 UTC.

Swift 6 data race errors: 6

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -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.58.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/Samasaur1/DiceKit.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/Samasaur1/DiceKit
 * branch            master     -> FETCH_HEAD
 * [new branch]      master     -> origin/master
HEAD is now at 5e29f59 Update README since roll(times:_:) is now throwing
Cloned https://github.com/Samasaur1/DiceKit.git
Revision (git rev-parse @):
5e29f5959818b3322f1905ad7b86c1d887d6b21b
SUCCESS checkout https://github.com/Samasaur1/DiceKit.git at master
========================================
Build
========================================
Selected platform:         linux
Swift version:             6.0
Building package at path:  $PWD
https://github.com/Samasaur1/DiceKit.git
Running build ...
bash -c docker run --pull=always --rm -v "checkouts-4609320-0":/host -w "$PWD" registry.gitlab.com/finestructure/spi-images:basic-6.0-latest swift build --triple x86_64-unknown-linux-gnu -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
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-24593BA9C3E375BF.txt
[3/15] Compiling DiceKit Typealiases.swift
[4/16] Compiling DiceKit Die.swift
[5/16] Compiling DiceKit DieSide.swift
[6/16] Compiling DiceKit Describable.swift
/host/spi-builder-workspace/Sources/DiceKit/Dice.swift:284:28: warning: static property '__cache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
282 |     }
283 |
284 |     fileprivate static var __cache: [Dice: Chances]? = [:]
    |                            |- warning: static property '__cache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: convert '__cache' to a 'let' constant to make 'Sendable' shared state immutable
    |                            |- note: annotate '__cache' with '@MainActor' if property should only be accessed from the main actor
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
285 |
286 |     /// Whether or not `Dice` should cache the results of probability computations across objects.
/host/spi-builder-workspace/Sources/DiceKit/Dice.swift:294:23: warning: static property 'enableCaching' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
292 |     ///
293 |     /// - Since: 0.22.0
294 |     public static var enableCaching = true {
    |                       |- warning: static property 'enableCaching' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'enableCaching' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'enableCaching' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
295 |         didSet {
296 |             if enableCaching == false {
/host/spi-builder-workspace/Sources/DiceKit/Chance.swift:116:23: warning: static property 'one' is not concurrency-safe because non-'Sendable' type 'Chance' may have shared mutable state; this is an error in the Swift 6 language mode
  5 | /// - Since: 0.16.0
  6 | /// - Author: Samasaur
  7 | public struct Chance {
    |               `- note: consider making struct 'Chance' conform to the 'Sendable' protocol
  8 |     /// The numerator of the fraction
  9 |     public let n: Int
    :
114 |     public static let zero = try! Chance(0, outOf: 1)
115 |     /// A `Chance` of one.
116 |     public static let one = try! Chance(1, outOf: 1)
    |                       |- warning: static property 'one' is not concurrency-safe because non-'Sendable' type 'Chance' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'one' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
117 |     //swiftlint:enable force_try
118 | }
/host/spi-builder-workspace/Sources/DiceKit/Chance.swift:114:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Chance' may have shared mutable state; this is an error in the Swift 6 language mode
  5 | /// - Since: 0.16.0
  6 | /// - Author: Samasaur
  7 | public struct Chance {
    |               `- note: consider making struct 'Chance' conform to the 'Sendable' protocol
  8 |     /// The numerator of the fraction
  9 |     public let n: Int
    :
112 |     //swiftlint:disable force_try
113 |     /// A `Chance` of zero.
114 |     public static let zero = try! Chance(0, outOf: 1)
    |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Chance' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
115 |     /// A `Chance` of one.
116 |     public static let one = try! Chance(1, outOf: 1)
[7/16] Compiling DiceKit Dice.swift
/host/spi-builder-workspace/Sources/DiceKit/Dice.swift:284:28: warning: static property '__cache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
282 |     }
283 |
284 |     fileprivate static var __cache: [Dice: Chances]? = [:]
    |                            |- warning: static property '__cache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: convert '__cache' to a 'let' constant to make 'Sendable' shared state immutable
    |                            |- note: annotate '__cache' with '@MainActor' if property should only be accessed from the main actor
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
285 |
286 |     /// Whether or not `Dice` should cache the results of probability computations across objects.
/host/spi-builder-workspace/Sources/DiceKit/Dice.swift:294:23: warning: static property 'enableCaching' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
292 |     ///
293 |     /// - Since: 0.22.0
294 |     public static var enableCaching = true {
    |                       |- warning: static property 'enableCaching' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'enableCaching' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'enableCaching' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
295 |         didSet {
296 |             if enableCaching == false {
/host/spi-builder-workspace/Sources/DiceKit/Chance.swift:116:23: warning: static property 'one' is not concurrency-safe because non-'Sendable' type 'Chance' may have shared mutable state; this is an error in the Swift 6 language mode
  5 | /// - Since: 0.16.0
  6 | /// - Author: Samasaur
  7 | public struct Chance {
    |               `- note: consider making struct 'Chance' conform to the 'Sendable' protocol
  8 |     /// The numerator of the fraction
  9 |     public let n: Int
    :
114 |     public static let zero = try! Chance(0, outOf: 1)
115 |     /// A `Chance` of one.
116 |     public static let one = try! Chance(1, outOf: 1)
    |                       |- warning: static property 'one' is not concurrency-safe because non-'Sendable' type 'Chance' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'one' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
117 |     //swiftlint:enable force_try
118 | }
/host/spi-builder-workspace/Sources/DiceKit/Chance.swift:114:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Chance' may have shared mutable state; this is an error in the Swift 6 language mode
  5 | /// - Since: 0.16.0
  6 | /// - Author: Samasaur
  7 | public struct Chance {
    |               `- note: consider making struct 'Chance' conform to the 'Sendable' protocol
  8 |     /// The numerator of the fraction
  9 |     public let n: Int
    :
112 |     //swiftlint:disable force_try
113 |     /// A `Chance` of zero.
114 |     public static let zero = try! Chance(0, outOf: 1)
    |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Chance' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
115 |     /// A `Chance` of one.
116 |     public static let one = try! Chance(1, outOf: 1)
[8/16] Compiling DiceKit Chances.swift
/host/spi-builder-workspace/Sources/DiceKit/Chance.swift:114:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Chance' may have shared mutable state; this is an error in the Swift 6 language mode
  5 | /// - Since: 0.16.0
  6 | /// - Author: Samasaur
  7 | public struct Chance {
    |               `- note: consider making struct 'Chance' conform to the 'Sendable' protocol
  8 |     /// The numerator of the fraction
  9 |     public let n: Int
    :
112 |     //swiftlint:disable force_try
113 |     /// A `Chance` of zero.
114 |     public static let zero = try! Chance(0, outOf: 1)
    |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Chance' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
115 |     /// A `Chance` of one.
116 |     public static let one = try! Chance(1, outOf: 1)
[9/16] Compiling DiceKit CustomDie.swift
/host/spi-builder-workspace/Sources/DiceKit/Chance.swift:114:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Chance' may have shared mutable state; this is an error in the Swift 6 language mode
  5 | /// - Since: 0.16.0
  6 | /// - Author: Samasaur
  7 | public struct Chance {
    |               `- note: consider making struct 'Chance' conform to the 'Sendable' protocol
  8 |     /// The numerator of the fraction
  9 |     public let n: Int
    :
112 |     //swiftlint:disable force_try
113 |     /// A `Chance` of zero.
114 |     public static let zero = try! Chance(0, outOf: 1)
    |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Chance' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
115 |     /// A `Chance` of one.
116 |     public static let one = try! Chance(1, outOf: 1)
[10/16] Emitting module DiceKit
/host/spi-builder-workspace/Sources/DiceKit/Chance.swift:114:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Chance' may have shared mutable state; this is an error in the Swift 6 language mode
  5 | /// - Since: 0.16.0
  6 | /// - Author: Samasaur
  7 | public struct Chance {
    |               `- note: consider making struct 'Chance' conform to the 'Sendable' protocol
  8 |     /// The numerator of the fraction
  9 |     public let n: Int
    :
112 |     //swiftlint:disable force_try
113 |     /// A `Chance` of zero.
114 |     public static let zero = try! Chance(0, outOf: 1)
    |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Chance' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
115 |     /// A `Chance` of one.
116 |     public static let one = try! Chance(1, outOf: 1)
/host/spi-builder-workspace/Sources/DiceKit/Chance.swift:116:23: warning: static property 'one' is not concurrency-safe because non-'Sendable' type 'Chance' may have shared mutable state; this is an error in the Swift 6 language mode
  5 | /// - Since: 0.16.0
  6 | /// - Author: Samasaur
  7 | public struct Chance {
    |               `- note: consider making struct 'Chance' conform to the 'Sendable' protocol
  8 |     /// The numerator of the fraction
  9 |     public let n: Int
    :
114 |     public static let zero = try! Chance(0, outOf: 1)
115 |     /// A `Chance` of one.
116 |     public static let one = try! Chance(1, outOf: 1)
    |                       |- warning: static property 'one' is not concurrency-safe because non-'Sendable' type 'Chance' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'one' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
117 |     //swiftlint:enable force_try
118 | }
/host/spi-builder-workspace/Sources/DiceKit/Dice.swift:284:28: warning: static property '__cache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
282 |     }
283 |
284 |     fileprivate static var __cache: [Dice: Chances]? = [:]
    |                            |- warning: static property '__cache' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                            |- note: convert '__cache' to a 'let' constant to make 'Sendable' shared state immutable
    |                            |- note: annotate '__cache' with '@MainActor' if property should only be accessed from the main actor
    |                            `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
285 |
286 |     /// Whether or not `Dice` should cache the results of probability computations across objects.
/host/spi-builder-workspace/Sources/DiceKit/Dice.swift:294:23: warning: static property 'enableCaching' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
292 |     ///
293 |     /// - Since: 0.22.0
294 |     public static var enableCaching = true {
    |                       |- warning: static property 'enableCaching' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'enableCaching' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'enableCaching' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
295 |         didSet {
296 |             if enableCaching == false {
/host/spi-builder-workspace/Sources/DiceKit/Utilities.swift:61:14: warning: var 'STDERR' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
59 |     }
60 | }
61 | internal var STDERR = FileHandleOutputStream(.standardError)
   |              |- warning: var 'STDERR' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'STDERR' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'STDERR' with '@MainActor' if property should only be accessed from the main actor
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 | internal var STDOUT = FileHandleOutputStream(.standardOutput)
63 |
/host/spi-builder-workspace/Sources/DiceKit/Utilities.swift:62:14: warning: var 'STDOUT' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
60 | }
61 | internal var STDERR = FileHandleOutputStream(.standardError)
62 | internal var STDOUT = FileHandleOutputStream(.standardOutput)
   |              |- warning: var 'STDOUT' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'STDOUT' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'STDOUT' with '@MainActor' if property should only be accessed from the main actor
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
63 |
64 | private enum LazyValue<Input, Value> {
[11/16] Compiling DiceKit Caching.swift
/host/spi-builder-workspace/Sources/DiceKit/Dice.swift:294:23: warning: static property 'enableCaching' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
292 |     ///
293 |     /// - Since: 0.22.0
294 |     public static var enableCaching = true {
    |                       |- warning: static property 'enableCaching' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'enableCaching' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'enableCaching' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
295 |         didSet {
296 |             if enableCaching == false {
/host/spi-builder-workspace/Sources/DiceKit/Chance.swift:114:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Chance' may have shared mutable state; this is an error in the Swift 6 language mode
  5 | /// - Since: 0.16.0
  6 | /// - Author: Samasaur
  7 | public struct Chance {
    |               `- note: consider making struct 'Chance' conform to the 'Sendable' protocol
  8 |     /// The numerator of the fraction
  9 |     public let n: Int
    :
112 |     //swiftlint:disable force_try
113 |     /// A `Chance` of zero.
114 |     public static let zero = try! Chance(0, outOf: 1)
    |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Chance' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
115 |     /// A `Chance` of one.
116 |     public static let one = try! Chance(1, outOf: 1)
/host/spi-builder-workspace/Sources/DiceKit/Chance.swift:116:23: warning: static property 'one' is not concurrency-safe because non-'Sendable' type 'Chance' may have shared mutable state; this is an error in the Swift 6 language mode
  5 | /// - Since: 0.16.0
  6 | /// - Author: Samasaur
  7 | public struct Chance {
    |               `- note: consider making struct 'Chance' conform to the 'Sendable' protocol
  8 |     /// The numerator of the fraction
  9 |     public let n: Int
    :
114 |     public static let zero = try! Chance(0, outOf: 1)
115 |     /// A `Chance` of one.
116 |     public static let one = try! Chance(1, outOf: 1)
    |                       |- warning: static property 'one' is not concurrency-safe because non-'Sendable' type 'Chance' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'one' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
117 |     //swiftlint:enable force_try
118 | }
/host/spi-builder-workspace/Sources/DiceKit/Utilities.swift:61:14: warning: var 'STDERR' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
59 |     }
60 | }
61 | internal var STDERR = FileHandleOutputStream(.standardError)
   |              |- warning: var 'STDERR' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'STDERR' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'STDERR' with '@MainActor' if property should only be accessed from the main actor
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 | internal var STDOUT = FileHandleOutputStream(.standardOutput)
63 |
[12/16] Compiling DiceKit Chance.swift
/host/spi-builder-workspace/Sources/DiceKit/Dice.swift:294:23: warning: static property 'enableCaching' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
292 |     ///
293 |     /// - Since: 0.22.0
294 |     public static var enableCaching = true {
    |                       |- warning: static property 'enableCaching' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: convert 'enableCaching' to a 'let' constant to make 'Sendable' shared state immutable
    |                       |- note: annotate 'enableCaching' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
295 |         didSet {
296 |             if enableCaching == false {
/host/spi-builder-workspace/Sources/DiceKit/Chance.swift:114:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Chance' may have shared mutable state; this is an error in the Swift 6 language mode
  5 | /// - Since: 0.16.0
  6 | /// - Author: Samasaur
  7 | public struct Chance {
    |               `- note: consider making struct 'Chance' conform to the 'Sendable' protocol
  8 |     /// The numerator of the fraction
  9 |     public let n: Int
    :
112 |     //swiftlint:disable force_try
113 |     /// A `Chance` of zero.
114 |     public static let zero = try! Chance(0, outOf: 1)
    |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Chance' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
115 |     /// A `Chance` of one.
116 |     public static let one = try! Chance(1, outOf: 1)
/host/spi-builder-workspace/Sources/DiceKit/Chance.swift:116:23: warning: static property 'one' is not concurrency-safe because non-'Sendable' type 'Chance' may have shared mutable state; this is an error in the Swift 6 language mode
  5 | /// - Since: 0.16.0
  6 | /// - Author: Samasaur
  7 | public struct Chance {
    |               `- note: consider making struct 'Chance' conform to the 'Sendable' protocol
  8 |     /// The numerator of the fraction
  9 |     public let n: Int
    :
114 |     public static let zero = try! Chance(0, outOf: 1)
115 |     /// A `Chance` of one.
116 |     public static let one = try! Chance(1, outOf: 1)
    |                       |- warning: static property 'one' is not concurrency-safe because non-'Sendable' type 'Chance' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'one' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
117 |     //swiftlint:enable force_try
118 | }
/host/spi-builder-workspace/Sources/DiceKit/Utilities.swift:61:14: warning: var 'STDERR' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
59 |     }
60 | }
61 | internal var STDERR = FileHandleOutputStream(.standardError)
   |              |- warning: var 'STDERR' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'STDERR' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'STDERR' with '@MainActor' if property should only be accessed from the main actor
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 | internal var STDOUT = FileHandleOutputStream(.standardOutput)
63 |
[13/16] Compiling DiceKit WeightedDie.swift
/host/spi-builder-workspace/Sources/DiceKit/Utilities.swift:61:14: warning: var 'STDERR' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
59 |     }
60 | }
61 | internal var STDERR = FileHandleOutputStream(.standardError)
   |              |- warning: var 'STDERR' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'STDERR' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'STDERR' with '@MainActor' if property should only be accessed from the main actor
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 | internal var STDOUT = FileHandleOutputStream(.standardOutput)
63 |
[14/16] Compiling DiceKit Enums.swift
/host/spi-builder-workspace/Sources/DiceKit/Chance.swift:114:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Chance' may have shared mutable state; this is an error in the Swift 6 language mode
  5 | /// - Since: 0.16.0
  6 | /// - Author: Samasaur
  7 | public struct Chance {
    |               `- note: consider making struct 'Chance' conform to the 'Sendable' protocol
  8 |     /// The numerator of the fraction
  9 |     public let n: Int
    :
112 |     //swiftlint:disable force_try
113 |     /// A `Chance` of zero.
114 |     public static let zero = try! Chance(0, outOf: 1)
    |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Chance' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
115 |     /// A `Chance` of one.
116 |     public static let one = try! Chance(1, outOf: 1)
[15/16] Compiling DiceKit Rollable.swift
/host/spi-builder-workspace/Sources/DiceKit/Chance.swift:114:23: warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Chance' may have shared mutable state; this is an error in the Swift 6 language mode
  5 | /// - Since: 0.16.0
  6 | /// - Author: Samasaur
  7 | public struct Chance {
    |               `- note: consider making struct 'Chance' conform to the 'Sendable' protocol
  8 |     /// The numerator of the fraction
  9 |     public let n: Int
    :
112 |     //swiftlint:disable force_try
113 |     /// A `Chance` of zero.
114 |     public static let zero = try! Chance(0, outOf: 1)
    |                       |- warning: static property 'zero' is not concurrency-safe because non-'Sendable' type 'Chance' may have shared mutable state; this is an error in the Swift 6 language mode
    |                       |- note: annotate 'zero' with '@MainActor' if property should only be accessed from the main actor
    |                       `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
115 |     /// A `Chance` of one.
116 |     public static let one = try! Chance(1, outOf: 1)
[16/16] Compiling DiceKit Utilities.swift
/host/spi-builder-workspace/Sources/DiceKit/Utilities.swift:61:14: warning: var 'STDERR' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
59 |     }
60 | }
61 | internal var STDERR = FileHandleOutputStream(.standardError)
   |              |- warning: var 'STDERR' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'STDERR' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'STDERR' with '@MainActor' if property should only be accessed from the main actor
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
62 | internal var STDOUT = FileHandleOutputStream(.standardOutput)
63 |
/host/spi-builder-workspace/Sources/DiceKit/Utilities.swift:62:14: warning: var 'STDOUT' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
60 | }
61 | internal var STDERR = FileHandleOutputStream(.standardError)
62 | internal var STDOUT = FileHandleOutputStream(.standardOutput)
   |              |- warning: var 'STDOUT' is not concurrency-safe because it is nonisolated global shared mutable state; this is an error in the Swift 6 language mode
   |              |- note: convert 'STDOUT' to a 'let' constant to make 'Sendable' shared state immutable
   |              |- note: annotate 'STDOUT' with '@MainActor' if property should only be accessed from the main actor
   |              `- note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
63 |
64 | private enum LazyValue<Input, Value> {
Build complete! (9.01s)
Build complete.
{
  "dependencies" : [
  ],
  "manifest_display_name" : "DiceKit",
  "name" : "DiceKit",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "8.0"
    },
    {
      "name" : "macos",
      "version" : "10.10"
    },
    {
      "name" : "watchos",
      "version" : "2.0"
    },
    {
      "name" : "tvos",
      "version" : "9.0"
    }
  ],
  "products" : [
    {
      "name" : "DiceKit",
      "targets" : [
        "DiceKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "4.2",
    "5"
  ],
  "targets" : [
    {
      "c99name" : "DiceKitTests",
      "module_type" : "SwiftTarget",
      "name" : "DiceKitTests",
      "path" : "Tests/DiceKitTests",
      "sources" : [
        "ChanceTests.swift",
        "ChancesTests.swift",
        "CustomDieTests.swift",
        "DiceKitTests.swift",
        "DiceTests.swift",
        "DieSideTests.swift",
        "DieTests.swift",
        "RollableTests.swift",
        "WeightedDieTests.swift",
        "XCTestManifests.swift"
      ],
      "target_dependencies" : [
        "DiceKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "DiceKit",
      "module_type" : "SwiftTarget",
      "name" : "DiceKit",
      "path" : "Sources/DiceKit",
      "product_memberships" : [
        "DiceKit"
      ],
      "sources" : [
        "Caching.swift",
        "Chance.swift",
        "Chances.swift",
        "CustomDie.swift",
        "Describable.swift",
        "Dice.swift",
        "Die.swift",
        "DieSide.swift",
        "Enums.swift",
        "Rollable.swift",
        "Typealiases.swift",
        "Utilities.swift",
        "WeightedDie.swift"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "5.0"
}
basic-6.0-latest: Pulling from finestructure/spi-images
Digest: sha256:47d26c99ca4f1ac0a332c85fd5b13ff4390e72115219984a57a68fe9d1063a05
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.0-latest
Done.