This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.

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 ParameterizedTesting with Swift 6.0 for macOS (SPM).

Swift 6 data race errors: 10

Build Command

env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete

Build Log

========================================
RunAll
========================================
Builder version: 4.40.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/cameroncooke/SwiftParameterizedTesting.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/cameroncooke/SwiftParameterizedTesting
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at 2df3d9c Drop swift-tools version to support earlier versions
Cloned https://github.com/cameroncooke/SwiftParameterizedTesting.git
Revision (git rev-parse @):
2df3d9c91cf27b23aaba829981a9a11ecf775fc7
SUCCESS checkout https://github.com/cameroncooke/SwiftParameterizedTesting.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.0
Building package at path:  $workDir
https://github.com/cameroncooke/SwiftParameterizedTesting.git
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-15.3.0.app xcrun --toolchain org.swift.600202405261a swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats -Xswiftc -strict-concurrency=complete
Building for debugging...
[0/2] Write sources
[1/2] Write swift-version-6F35C1178C84523A.txt
[3/15] Compiling ParameterizedTesting ParameterizedTestsCase8.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:9:16: warning: static property 'value1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
   |                |- warning: static property 'value1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value1' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value1' 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
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:10:16: warning: static property 'value2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
   |                |- warning: static property 'value2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value2' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value2' 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
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:11:16: warning: static property 'value3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
   |                |- warning: static property 'value3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value3' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value3' 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
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:12:16: warning: static property 'value4' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
   |                |- warning: static property 'value4' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value4' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value4' 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
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:13:16: warning: static property 'value5' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
   |                |- warning: static property 'value5' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value5' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value5' 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
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:14:16: warning: static property 'value6' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
   |                |- warning: static property 'value6' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value6' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value6' 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
15 |     static var value7 = "value7"
16 |     static var value8 = "value8"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:15:16: warning: static property 'value7' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
   |                |- warning: static property 'value7' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value7' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value7' 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
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:16:16: warning: static property 'value8' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
16 |     static var value8 = "value8"
   |                |- warning: static property 'value8' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value8' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value8' 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
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:18:16: warning: static property 'expectedValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
   |                |- warning: static property 'expectedValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'expectedValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'expectedValue' 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
19 | }
20 |
[4/15] Compiling ParameterizedTesting ParameterizedTestsCase9.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:9:16: warning: static property 'value1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
   |                |- warning: static property 'value1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value1' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value1' 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
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:10:16: warning: static property 'value2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
   |                |- warning: static property 'value2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value2' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value2' 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
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:11:16: warning: static property 'value3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
   |                |- warning: static property 'value3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value3' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value3' 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
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:12:16: warning: static property 'value4' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
   |                |- warning: static property 'value4' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value4' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value4' 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
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:13:16: warning: static property 'value5' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
   |                |- warning: static property 'value5' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value5' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value5' 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
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:14:16: warning: static property 'value6' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
   |                |- warning: static property 'value6' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value6' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value6' 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
15 |     static var value7 = "value7"
16 |     static var value8 = "value8"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:15:16: warning: static property 'value7' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
   |                |- warning: static property 'value7' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value7' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value7' 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
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:16:16: warning: static property 'value8' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
16 |     static var value8 = "value8"
   |                |- warning: static property 'value8' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value8' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value8' 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
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:17:16: warning: static property 'value9' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
15 |     static var value7 = "value7"
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
   |                |- warning: static property 'value9' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value9' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value9' 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
18 |     static var expectedValue = "expectedValue"
19 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:18:16: warning: static property 'expectedValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
   |                |- warning: static property 'expectedValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'expectedValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'expectedValue' 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
19 | }
20 |
[5/16] Compiling ParameterizedTesting ParameterizedTestsCase6.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:9:16: warning: static property 'value1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
   |                |- warning: static property 'value1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value1' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value1' 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
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:10:16: warning: static property 'value2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
   |                |- warning: static property 'value2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value2' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value2' 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
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:11:16: warning: static property 'value3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
   |                |- warning: static property 'value3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value3' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value3' 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
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:12:16: warning: static property 'value4' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
   |                |- warning: static property 'value4' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value4' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value4' 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
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:13:16: warning: static property 'value5' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
   |                |- warning: static property 'value5' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value5' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value5' 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
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:14:16: warning: static property 'value6' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
   |                |- warning: static property 'value6' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value6' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value6' 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
15 |     static var value7 = "value7"
16 |     static var value8 = "value8"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:18:16: warning: static property 'expectedValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
   |                |- warning: static property 'expectedValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'expectedValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'expectedValue' 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
19 | }
20 |
[6/16] Compiling ParameterizedTesting ParameterizedTestsCase4.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:9:16: warning: static property 'value1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
   |                |- warning: static property 'value1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value1' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value1' 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
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:10:16: warning: static property 'value2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
   |                |- warning: static property 'value2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value2' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value2' 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
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:11:16: warning: static property 'value3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
   |                |- warning: static property 'value3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value3' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value3' 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
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:12:16: warning: static property 'value4' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
   |                |- warning: static property 'value4' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value4' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value4' 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
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:18:16: warning: static property 'expectedValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
   |                |- warning: static property 'expectedValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'expectedValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'expectedValue' 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
19 | }
20 |
[7/16] Compiling ParameterizedTesting ParameterizedTestsCase5.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:9:16: warning: static property 'value1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
   |                |- warning: static property 'value1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value1' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value1' 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
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:10:16: warning: static property 'value2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
   |                |- warning: static property 'value2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value2' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value2' 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
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:11:16: warning: static property 'value3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
   |                |- warning: static property 'value3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value3' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value3' 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
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:12:16: warning: static property 'value4' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
   |                |- warning: static property 'value4' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value4' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value4' 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
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:13:16: warning: static property 'value5' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
   |                |- warning: static property 'value5' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value5' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value5' 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
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:18:16: warning: static property 'expectedValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
   |                |- warning: static property 'expectedValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'expectedValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'expectedValue' 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
19 | }
20 |
[8/16] Compiling ParameterizedTesting ParameterizedTestsCase7.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:9:16: warning: static property 'value1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
   |                |- warning: static property 'value1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value1' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value1' 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
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:10:16: warning: static property 'value2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
   |                |- warning: static property 'value2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value2' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value2' 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
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:11:16: warning: static property 'value3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
   |                |- warning: static property 'value3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value3' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value3' 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
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:12:16: warning: static property 'value4' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
   |                |- warning: static property 'value4' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value4' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value4' 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
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:13:16: warning: static property 'value5' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
   |                |- warning: static property 'value5' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value5' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value5' 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
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:14:16: warning: static property 'value6' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
   |                |- warning: static property 'value6' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value6' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value6' 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
15 |     static var value7 = "value7"
16 |     static var value8 = "value8"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:15:16: warning: static property 'value7' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
   |                |- warning: static property 'value7' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value7' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value7' 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
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:18:16: warning: static property 'expectedValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
   |                |- warning: static property 'expectedValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'expectedValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'expectedValue' 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
19 | }
20 |
[9/16] Compiling ParameterizedTesting XCTest+Extension.swift
[10/16] Compiling ParameterizedTesting ParameterizedTestsCase2.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:9:16: warning: static property 'value1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
   |                |- warning: static property 'value1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value1' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value1' 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
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:10:16: warning: static property 'value2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
   |                |- warning: static property 'value2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value2' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value2' 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
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:18:16: warning: static property 'expectedValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
   |                |- warning: static property 'expectedValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'expectedValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'expectedValue' 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
19 | }
20 |
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:11:16: warning: static property 'value3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
   |                |- warning: static property 'value3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value3' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value3' 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
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
[11/16] Compiling ParameterizedTesting ParameterizedTestsCase3.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:9:16: warning: static property 'value1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
   |                |- warning: static property 'value1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value1' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value1' 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
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:10:16: warning: static property 'value2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
   |                |- warning: static property 'value2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value2' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value2' 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
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:18:16: warning: static property 'expectedValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
   |                |- warning: static property 'expectedValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'expectedValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'expectedValue' 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
19 | }
20 |
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:11:16: warning: static property 'value3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
   |                |- warning: static property 'value3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value3' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value3' 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
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
[12/16] Emitting module ParameterizedTesting
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:9:16: warning: static property 'value1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
   |                |- warning: static property 'value1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value1' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value1' 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
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:10:16: warning: static property 'value2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
   |                |- warning: static property 'value2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value2' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value2' 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
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:11:16: warning: static property 'value3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
   |                |- warning: static property 'value3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value3' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value3' 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
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:12:16: warning: static property 'value4' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
   |                |- warning: static property 'value4' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value4' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value4' 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
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:13:16: warning: static property 'value5' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
   |                |- warning: static property 'value5' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value5' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value5' 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
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:14:16: warning: static property 'value6' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
   |                |- warning: static property 'value6' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value6' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value6' 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
15 |     static var value7 = "value7"
16 |     static var value8 = "value8"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:15:16: warning: static property 'value7' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
   |                |- warning: static property 'value7' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value7' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value7' 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
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:16:16: warning: static property 'value8' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
16 |     static var value8 = "value8"
   |                |- warning: static property 'value8' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value8' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value8' 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
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:17:16: warning: static property 'value9' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
15 |     static var value7 = "value7"
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
   |                |- warning: static property 'value9' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value9' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value9' 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
18 |     static var expectedValue = "expectedValue"
19 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:18:16: warning: static property 'expectedValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
   |                |- warning: static property 'expectedValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'expectedValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'expectedValue' 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
19 | }
20 |
[13/16] Compiling ParameterizedTesting ParameterizedTestHandler.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:9:16: warning: static property 'value1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
   |                |- warning: static property 'value1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value1' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value1' 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
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:18:16: warning: static property 'expectedValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
   |                |- warning: static property 'expectedValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'expectedValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'expectedValue' 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
19 | }
20 |
[14/16] Compiling ParameterizedTesting ParameterizedTestsCase1.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:9:16: warning: static property 'value1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
   |                |- warning: static property 'value1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value1' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value1' 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
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:18:16: warning: static property 'expectedValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
   |                |- warning: static property 'expectedValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'expectedValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'expectedValue' 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
19 | }
20 |
[15/16] Compiling ParameterizedTesting ParameterizedTestCase.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:9:16: warning: static property 'value1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
   |                |- warning: static property 'value1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value1' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value1' 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
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:10:16: warning: static property 'value2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
   |                |- warning: static property 'value2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value2' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value2' 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
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:11:16: warning: static property 'value3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
   |                |- warning: static property 'value3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value3' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value3' 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
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:12:16: warning: static property 'value4' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
   |                |- warning: static property 'value4' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value4' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value4' 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
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:13:16: warning: static property 'value5' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
   |                |- warning: static property 'value5' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value5' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value5' 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
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:14:16: warning: static property 'value6' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
   |                |- warning: static property 'value6' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value6' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value6' 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
15 |     static var value7 = "value7"
16 |     static var value8 = "value8"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:15:16: warning: static property 'value7' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
   |                |- warning: static property 'value7' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value7' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value7' 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
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:16:16: warning: static property 'value8' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
16 |     static var value8 = "value8"
   |                |- warning: static property 'value8' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value8' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value8' 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
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:17:16: warning: static property 'value9' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
15 |     static var value7 = "value7"
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
   |                |- warning: static property 'value9' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value9' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value9' 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
18 |     static var expectedValue = "expectedValue"
19 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:18:16: warning: static property 'expectedValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
   |                |- warning: static property 'expectedValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'expectedValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'expectedValue' 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
19 | }
20 |
[16/16] Compiling ParameterizedTesting ParameterizedTestCaseKey.swift
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:9:16: warning: static property 'value1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 7 |
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
   |                |- warning: static property 'value1' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value1' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value1' 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
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:10:16: warning: static property 'value2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 8 | public enum ParameterizedTestCaseKey {
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
   |                |- warning: static property 'value2' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value2' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value2' 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
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:11:16: warning: static property 'value3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
 9 |     static var value1 = "value1"
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
   |                |- warning: static property 'value3' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value3' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value3' 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
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:12:16: warning: static property 'value4' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
10 |     static var value2 = "value2"
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
   |                |- warning: static property 'value4' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value4' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value4' 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
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:13:16: warning: static property 'value5' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
11 |     static var value3 = "value3"
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
   |                |- warning: static property 'value5' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value5' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value5' 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
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:14:16: warning: static property 'value6' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
12 |     static var value4 = "value4"
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
   |                |- warning: static property 'value6' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value6' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value6' 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
15 |     static var value7 = "value7"
16 |     static var value8 = "value8"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:15:16: warning: static property 'value7' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
13 |     static var value5 = "value5"
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
   |                |- warning: static property 'value7' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value7' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value7' 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
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:16:16: warning: static property 'value8' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
14 |     static var value6 = "value6"
15 |     static var value7 = "value7"
16 |     static var value8 = "value8"
   |                |- warning: static property 'value8' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value8' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value8' 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
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:17:16: warning: static property 'value9' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
15 |     static var value7 = "value7"
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
   |                |- warning: static property 'value9' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'value9' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'value9' 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
18 |     static var expectedValue = "expectedValue"
19 | }
/Users/admin/builder/spi-builder-workspace/Sources/ParameterizedTesting/ParameterizedTestCaseKey.swift:18:16: warning: static property 'expectedValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
16 |     static var value8 = "value8"
17 |     static var value9 = "value9"
18 |     static var expectedValue = "expectedValue"
   |                |- warning: static property 'expectedValue' is not concurrency-safe because it is non-isolated global shared mutable state; this is an error in the Swift 6 language mode
   |                |- note: convert 'expectedValue' to a 'let' constant to make 'Sendable' shared state immutable
   |                |- note: annotate 'expectedValue' 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
19 | }
20 |
Build complete! (35.23s)
Fetching https://github.com/pointfreeco/swift-snapshot-testing.git
[1/11249] Fetching swift-snapshot-testing
Fetched https://github.com/pointfreeco/swift-snapshot-testing.git from cache (2.75s)
Computing version for https://github.com/pointfreeco/swift-snapshot-testing.git
Computed https://github.com/pointfreeco/swift-snapshot-testing.git at 1.10.0 (0.72s)
Creating working copy for https://github.com/pointfreeco/swift-snapshot-testing.git
Working copy of https://github.com/pointfreeco/swift-snapshot-testing.git resolved at 1.10.0
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-snapshot-testing",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.10.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/pointfreeco/swift-snapshot-testing.git"
    }
  ],
  "manifest_display_name" : "ParameterizedTesting",
  "name" : "ParameterizedTesting",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "ios",
      "version" : "14.0"
    },
    {
      "name" : "macos",
      "version" : "10.15"
    }
  ],
  "products" : [
    {
      "name" : "ParameterizedTesting",
      "targets" : [
        "ParameterizedTesting"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "ParameterizedTestingTests",
      "module_type" : "SwiftTarget",
      "name" : "ParameterizedTestingTests",
      "path" : "Tests/ParameterizedTestingTests",
      "product_dependencies" : [
        "SnapshotTesting"
      ],
      "sources" : [
        "Option+Extensions.swift",
        "ParameterizedTestCase1OptionalsTests.swift",
        "ParameterizedTestCase1Tests.swift",
        "ParameterizedTestCase2OptionalsTests.swift",
        "ParameterizedTestCase2Tests.swift",
        "ParameterizedTestCase3OptionalsTests.swift",
        "ParameterizedTestCase3Tests.swift",
        "ParameterizedTestCase4OptionalsTests.swift",
        "ParameterizedTestCase4Tests.swift",
        "ParameterizedTestCase5OptionalsTests.swift",
        "ParameterizedTestCase5Tests.swift",
        "ParameterizedTestCase6OptionalsTests.swift",
        "ParameterizedTestCase6Tests.swift",
        "ParameterizedTestCase7OptionalsTests.swift",
        "ParameterizedTestCase7Tests.swift",
        "ParameterizedTestCase8OptionalsTests.swift",
        "ParameterizedTestCase8Tests.swift",
        "ParameterizedTestCase9OptionalsTests.swift",
        "ParameterizedTestCase9Tests.swift",
        "TestData.swift",
        "TestDataWithOptionals.swift"
      ],
      "target_dependencies" : [
        "ParameterizedTesting"
      ],
      "type" : "test"
    },
    {
      "c99name" : "ParameterizedTesting",
      "module_type" : "SwiftTarget",
      "name" : "ParameterizedTesting",
      "path" : "Sources/ParameterizedTesting",
      "product_memberships" : [
        "ParameterizedTesting"
      ],
      "sources" : [
        "ParameterizedTestCase.swift",
        "ParameterizedTestCaseKey.swift",
        "ParameterizedTestHandler.swift",
        "ParameterizedTestsCase1.swift",
        "ParameterizedTestsCase2.swift",
        "ParameterizedTestsCase3.swift",
        "ParameterizedTestsCase4.swift",
        "ParameterizedTestsCase5.swift",
        "ParameterizedTestsCase6.swift",
        "ParameterizedTestsCase7.swift",
        "ParameterizedTestsCase8.swift",
        "ParameterizedTestsCase9.swift",
        "XCTest+Extension.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "ExampleTests",
      "module_type" : "SwiftTarget",
      "name" : "ExampleTests",
      "path" : "Tests/ExampleTests",
      "product_dependencies" : [
        "SnapshotTesting"
      ],
      "sources" : [
        "ExampleExpectedValuesTests.swift",
        "ExampleSnapshotTests.swift"
      ],
      "target_dependencies" : [
        "ParameterizedTesting"
      ],
      "type" : "test"
    }
  ],
  "tools_version" : "5.4"
}
Done.
This is a staging environment. For live and up-to-date package information, visit swiftpackageindex.com.