Build Information
Successful build of MajorMinorPatch, reference main (8d7a5c
), with Swift 6.0 for macOS (Xcode) using Xcode 16.0 on 2 Nov 2024 23:49:14 UTC.
Swift 6 data race errors: 72
Build Command
env DEVELOPER_DIR=/Applications/Xcode-16.1.0.app xcrun xcodebuild -IDEClonedSourcePackagesDirPathOverride=$PWD/.dependencies -skipMacroValidation -skipPackagePluginValidation -derivedDataPath $PWD/.derivedData build -scheme MajorMinorPatch -destination platform=macOS,arch=arm64 OTHER_SWIFT_FLAGS=-stats-output-dir .stats -strict-concurrency=complete
Build Log
let major3 = Semantic.Major(integerLiteral: 3)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:20:5: warning: let 'minor0' is not concurrency-safe because non-'Sendable' type 'Semantic.Minor' may have shared mutable state; this is an error in the Swift 6 language mode
let minor0 = Semantic.Minor(integerLiteral: 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Minor/Semantic.Minor.swift:6:19: note: struct 'Minor' does not conform to the 'Sendable' protocol
public struct Minor: ExpressibleByIntegerLiteral, RawRepresentable {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:20:5: note: annotate 'minor0' with '@MainActor' if property should only be accessed from the main actor
let minor0 = Semantic.Minor(integerLiteral: 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:20:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let minor0 = Semantic.Minor(integerLiteral: 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:21:5: warning: let 'minor1' is not concurrency-safe because non-'Sendable' type 'Semantic.Minor' may have shared mutable state; this is an error in the Swift 6 language mode
let minor1 = Semantic.Minor(integerLiteral: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Minor/Semantic.Minor.swift:6:19: note: struct 'Minor' does not conform to the 'Sendable' protocol
public struct Minor: ExpressibleByIntegerLiteral, RawRepresentable {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:21:5: note: annotate 'minor1' with '@MainActor' if property should only be accessed from the main actor
let minor1 = Semantic.Minor(integerLiteral: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:21:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let minor1 = Semantic.Minor(integerLiteral: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:22:5: warning: let 'minor2' is not concurrency-safe because non-'Sendable' type 'Semantic.Minor' may have shared mutable state; this is an error in the Swift 6 language mode
let minor2 = Semantic.Minor(integerLiteral: 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Minor/Semantic.Minor.swift:6:19: note: struct 'Minor' does not conform to the 'Sendable' protocol
public struct Minor: ExpressibleByIntegerLiteral, RawRepresentable {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:22:5: note: annotate 'minor2' with '@MainActor' if property should only be accessed from the main actor
let minor2 = Semantic.Minor(integerLiteral: 2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:22:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let minor2 = Semantic.Minor(integerLiteral: 2)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:23:5: warning: let 'minor3' is not concurrency-safe because non-'Sendable' type 'Semantic.Minor' may have shared mutable state; this is an error in the Swift 6 language mode
let minor3 = Semantic.Minor(integerLiteral: 3)
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Minor/Semantic.Minor.swift:6:19: note: struct 'Minor' does not conform to the 'Sendable' protocol
public struct Minor: ExpressibleByIntegerLiteral, RawRepresentable {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:23:5: note: annotate 'minor3' with '@MainActor' if property should only be accessed from the main actor
let minor3 = Semantic.Minor(integerLiteral: 3)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:23:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let minor3 = Semantic.Minor(integerLiteral: 3)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:26:5: warning: let 'patch0' is not concurrency-safe because non-'Sendable' type 'Semantic.Patch' may have shared mutable state; this is an error in the Swift 6 language mode
let patch0 = Semantic.Patch(integerLiteral: 0)
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Patch/Semantic.Patch.swift:6:19: note: struct 'Patch' does not conform to the 'Sendable' protocol
public struct Patch: ExpressibleByIntegerLiteral, RawRepresentable {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:26:5: note: annotate 'patch0' with '@MainActor' if property should only be accessed from the main actor
let patch0 = Semantic.Patch(integerLiteral: 0)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:26:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let patch0 = Semantic.Patch(integerLiteral: 0)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:27:5: warning: let 'patch1' is not concurrency-safe because non-'Sendable' type 'Semantic.Patch' may have shared mutable state; this is an error in the Swift 6 language mode
let patch1 = Semantic.Patch(integerLiteral: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Patch/Semantic.Patch.swift:6:19: note: struct 'Patch' does not conform to the 'Sendable' protocol
public struct Patch: ExpressibleByIntegerLiteral, RawRepresentable {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:27:5: note: annotate 'patch1' with '@MainActor' if property should only be accessed from the main actor
let patch1 = Semantic.Patch(integerLiteral: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:27:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let patch1 = Semantic.Patch(integerLiteral: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:28:5: warning: let 'patch2' is not concurrency-safe because non-'Sendable' type 'Semantic.Patch' may have shared mutable state; this is an error in the Swift 6 language mode
let patch2 = Semantic.Patch(integerLiteral: 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Patch/Semantic.Patch.swift:6:19: note: struct 'Patch' does not conform to the 'Sendable' protocol
public struct Patch: ExpressibleByIntegerLiteral, RawRepresentable {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:28:5: note: annotate 'patch2' with '@MainActor' if property should only be accessed from the main actor
let patch2 = Semantic.Patch(integerLiteral: 2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:28:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let patch2 = Semantic.Patch(integerLiteral: 2)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:29:5: warning: let 'patch3' is not concurrency-safe because non-'Sendable' type 'Semantic.Patch' may have shared mutable state; this is an error in the Swift 6 language mode
let patch3 = Semantic.Patch(integerLiteral: 3)
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Patch/Semantic.Patch.swift:6:19: note: struct 'Patch' does not conform to the 'Sendable' protocol
public struct Patch: ExpressibleByIntegerLiteral, RawRepresentable {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:29:5: note: annotate 'patch3' with '@MainActor' if property should only be accessed from the main actor
let patch3 = Semantic.Patch(integerLiteral: 3)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:29:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let patch3 = Semantic.Patch(integerLiteral: 3)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:34:5: warning: let 'ver_0_0_0_alpha' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_0_0_0_alpha = Semantic.vi(ver: ver_0_0_0.version, ids: [.alpha])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:34:5: note: annotate 'ver_0_0_0_alpha' with '@MainActor' if property should only be accessed from the main actor
let ver_0_0_0_alpha = Semantic.vi(ver: ver_0_0_0.version, ids: [.alpha])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:34:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_0_0_0_alpha = Semantic.vi(ver: ver_0_0_0.version, ids: [.alpha])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:35:5: warning: let 'ver_1_0_0_alpha' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_1_0_0_alpha = Semantic.vi(ver: ver_1_0_0.version, ids: [.alpha])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:35:5: note: annotate 'ver_1_0_0_alpha' with '@MainActor' if property should only be accessed from the main actor
let ver_1_0_0_alpha = Semantic.vi(ver: ver_1_0_0.version, ids: [.alpha])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:35:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_1_0_0_alpha = Semantic.vi(ver: ver_1_0_0.version, ids: [.alpha])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:36:5: warning: let 'ver_2_0_0_alpha' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_0_0_alpha = Semantic.vi(ver: ver_2_0_0.version, ids: [.alpha])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:36:5: note: annotate 'ver_2_0_0_alpha' with '@MainActor' if property should only be accessed from the main actor
let ver_2_0_0_alpha = Semantic.vi(ver: ver_2_0_0.version, ids: [.alpha])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:36:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_0_0_alpha = Semantic.vi(ver: ver_2_0_0.version, ids: [.alpha])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:37:5: warning: let 'ver_2_1_0_alpha' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_0_alpha = Semantic.vi(ver: ver_2_1_0.version, ids: [.alpha])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:37:5: note: annotate 'ver_2_1_0_alpha' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_0_alpha = Semantic.vi(ver: ver_2_1_0.version, ids: [.alpha])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:37:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_0_alpha = Semantic.vi(ver: ver_2_1_0.version, ids: [.alpha])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:38:5: warning: let 'ver_2_1_1_alpha' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_1_alpha = Semantic.vi(ver: ver_2_1_1.version, ids: [.alpha])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:38:5: note: annotate 'ver_2_1_1_alpha' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_1_alpha = Semantic.vi(ver: ver_2_1_1.version, ids: [.alpha])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:38:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_1_alpha = Semantic.vi(ver: ver_2_1_1.version, ids: [.alpha])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:40:5: warning: let 'ver_0_0_0_beta' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_0_0_0_beta = Semantic.vi(ver: ver_0_0_0.version, ids: [.beta])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:40:5: note: annotate 'ver_0_0_0_beta' with '@MainActor' if property should only be accessed from the main actor
let ver_0_0_0_beta = Semantic.vi(ver: ver_0_0_0.version, ids: [.beta])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:40:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_0_0_0_beta = Semantic.vi(ver: ver_0_0_0.version, ids: [.beta])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:41:5: warning: let 'ver_1_0_0_beta' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_1_0_0_beta = Semantic.vi(ver: ver_1_0_0.version, ids: [.beta])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:41:5: note: annotate 'ver_1_0_0_beta' with '@MainActor' if property should only be accessed from the main actor
let ver_1_0_0_beta = Semantic.vi(ver: ver_1_0_0.version, ids: [.beta])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:41:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_1_0_0_beta = Semantic.vi(ver: ver_1_0_0.version, ids: [.beta])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:42:5: warning: let 'ver_2_0_0_beta' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_0_0_beta = Semantic.vi(ver: ver_2_0_0.version, ids: [.beta])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:42:5: note: annotate 'ver_2_0_0_beta' with '@MainActor' if property should only be accessed from the main actor
let ver_2_0_0_beta = Semantic.vi(ver: ver_2_0_0.version, ids: [.beta])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:42:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_0_0_beta = Semantic.vi(ver: ver_2_0_0.version, ids: [.beta])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:43:5: warning: let 'ver_2_1_0_beta' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_0_beta = Semantic.vi(ver: ver_2_1_0.version, ids: [.beta])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:43:5: note: annotate 'ver_2_1_0_beta' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_0_beta = Semantic.vi(ver: ver_2_1_0.version, ids: [.beta])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:43:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_0_beta = Semantic.vi(ver: ver_2_1_0.version, ids: [.beta])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:44:5: warning: let 'ver_2_1_1_beta' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_1_beta = Semantic.vi(ver: ver_2_1_1.version, ids: [.beta])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:44:5: note: annotate 'ver_2_1_1_beta' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_1_beta = Semantic.vi(ver: ver_2_1_1.version, ids: [.beta])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:44:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_1_beta = Semantic.vi(ver: ver_2_1_1.version, ids: [.beta])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:46:5: warning: let 'ver_0_0_0_alpha_beta' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_0_0_0_alpha_beta = Semantic.vi(ver: ver_0_0_0.version, ids: [.alpha, .beta])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:46:5: note: annotate 'ver_0_0_0_alpha_beta' with '@MainActor' if property should only be accessed from the main actor
let ver_0_0_0_alpha_beta = Semantic.vi(ver: ver_0_0_0.version, ids: [.alpha, .beta])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:46:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_0_0_0_alpha_beta = Semantic.vi(ver: ver_0_0_0.version, ids: [.alpha, .beta])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:47:5: warning: let 'ver_1_0_0_alpha_beta' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_1_0_0_alpha_beta = Semantic.vi(ver: ver_1_0_0.version, ids: [.alpha, .beta])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:47:5: note: annotate 'ver_1_0_0_alpha_beta' with '@MainActor' if property should only be accessed from the main actor
let ver_1_0_0_alpha_beta = Semantic.vi(ver: ver_1_0_0.version, ids: [.alpha, .beta])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:47:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_1_0_0_alpha_beta = Semantic.vi(ver: ver_1_0_0.version, ids: [.alpha, .beta])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:48:5: warning: let 'ver_2_0_0_alpha_beta' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_0_0_alpha_beta = Semantic.vi(ver: ver_2_0_0.version, ids: [.alpha, .beta])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:48:5: note: annotate 'ver_2_0_0_alpha_beta' with '@MainActor' if property should only be accessed from the main actor
let ver_2_0_0_alpha_beta = Semantic.vi(ver: ver_2_0_0.version, ids: [.alpha, .beta])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:48:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_0_0_alpha_beta = Semantic.vi(ver: ver_2_0_0.version, ids: [.alpha, .beta])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:49:5: warning: let 'ver_2_1_0_alpha_beta' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_0_alpha_beta = Semantic.vi(ver: ver_2_1_0.version, ids: [.alpha, .beta])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:49:5: note: annotate 'ver_2_1_0_alpha_beta' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_0_alpha_beta = Semantic.vi(ver: ver_2_1_0.version, ids: [.alpha, .beta])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:49:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_0_alpha_beta = Semantic.vi(ver: ver_2_1_0.version, ids: [.alpha, .beta])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:50:5: warning: let 'ver_2_1_1_alpha_beta' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_1_alpha_beta = Semantic.vi(ver: ver_2_1_1.version, ids: [.alpha, .beta])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:50:5: note: annotate 'ver_2_1_1_alpha_beta' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_1_alpha_beta = Semantic.vi(ver: ver_2_1_1.version, ids: [.alpha, .beta])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:50:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_1_alpha_beta = Semantic.vi(ver: ver_2_1_1.version, ids: [.alpha, .beta])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:55:5: warning: let 'ver_0_0_0_b1' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_0_0_0_b1 = Semantic.vb(ver: ver_0_0_0.version, build: [ .init(string: "1")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:55:5: note: annotate 'ver_0_0_0_b1' with '@MainActor' if property should only be accessed from the main actor
let ver_0_0_0_b1 = Semantic.vb(ver: ver_0_0_0.version, build: [ .init(string: "1")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:55:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_0_0_0_b1 = Semantic.vb(ver: ver_0_0_0.version, build: [ .init(string: "1")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:56:5: warning: let 'ver_1_0_0_b1' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_1_0_0_b1 = Semantic.vb(ver: ver_1_0_0.version, build: [ .init(string: "1")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:56:5: note: annotate 'ver_1_0_0_b1' with '@MainActor' if property should only be accessed from the main actor
let ver_1_0_0_b1 = Semantic.vb(ver: ver_1_0_0.version, build: [ .init(string: "1")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:56:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_1_0_0_b1 = Semantic.vb(ver: ver_1_0_0.version, build: [ .init(string: "1")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:58:5: warning: let 'ver_2_0_0_b1' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_0_0_b1 = Semantic.vb(ver: .init(major: 2, minor: 0, patch: 0), build: [ .init(string: "1")! ] )
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:58:5: note: annotate 'ver_2_0_0_b1' with '@MainActor' if property should only be accessed from the main actor
let ver_2_0_0_b1 = Semantic.vb(ver: .init(major: 2, minor: 0, patch: 0), build: [ .init(string: "1")! ] )
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:58:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_0_0_b1 = Semantic.vb(ver: .init(major: 2, minor: 0, patch: 0), build: [ .init(string: "1")! ] )
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:59:5: warning: let 'ver_2_1_0_b1' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_0_b1 = Semantic.vb(ver: .init(major: 2, minor: 1, patch: 0), build: [ .init(string: "1")! ] )
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:59:5: note: annotate 'ver_2_1_0_b1' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_0_b1 = Semantic.vb(ver: .init(major: 2, minor: 1, patch: 0), build: [ .init(string: "1")! ] )
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:59:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_0_b1 = Semantic.vb(ver: .init(major: 2, minor: 1, patch: 0), build: [ .init(string: "1")! ] )
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:60:5: warning: let 'ver_2_1_1_b1' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_1_b1 = Semantic.vb(ver: .init(major: 2, minor: 1, patch: 1), build: [ .init(string: "1")! ] )
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:60:5: note: annotate 'ver_2_1_1_b1' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_1_b1 = Semantic.vb(ver: .init(major: 2, minor: 1, patch: 1), build: [ .init(string: "1")! ] )
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:60:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_1_b1 = Semantic.vb(ver: .init(major: 2, minor: 1, patch: 1), build: [ .init(string: "1")! ] )
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:62:5: warning: let 'ver_0_0_0_b2' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_0_0_0_b2 = Semantic.vb(ver: ver_0_0_0.version, build: [ .init(string: "2")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:62:5: note: annotate 'ver_0_0_0_b2' with '@MainActor' if property should only be accessed from the main actor
let ver_0_0_0_b2 = Semantic.vb(ver: ver_0_0_0.version, build: [ .init(string: "2")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:62:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_0_0_0_b2 = Semantic.vb(ver: ver_0_0_0.version, build: [ .init(string: "2")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:63:5: warning: let 'ver_1_0_0_b2' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_1_0_0_b2 = Semantic.vb(ver: ver_1_0_0.version, build: [ .init(string: "2")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:63:5: note: annotate 'ver_1_0_0_b2' with '@MainActor' if property should only be accessed from the main actor
let ver_1_0_0_b2 = Semantic.vb(ver: ver_1_0_0.version, build: [ .init(string: "2")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:63:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_1_0_0_b2 = Semantic.vb(ver: ver_1_0_0.version, build: [ .init(string: "2")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:65:5: warning: let 'ver_2_0_0_b2' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_0_0_b2 = Semantic.vb(ver: .init(major: 2, minor: 0, patch: 0), build: [ .init(string: "2")! ] )
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:65:5: note: annotate 'ver_2_0_0_b2' with '@MainActor' if property should only be accessed from the main actor
let ver_2_0_0_b2 = Semantic.vb(ver: .init(major: 2, minor: 0, patch: 0), build: [ .init(string: "2")! ] )
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:65:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_0_0_b2 = Semantic.vb(ver: .init(major: 2, minor: 0, patch: 0), build: [ .init(string: "2")! ] )
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:66:5: warning: let 'ver_2_1_0_b2' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_0_b2 = Semantic.vb(ver: .init(major: 2, minor: 1, patch: 0), build: [ .init(string: "2")! ] )
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:66:5: note: annotate 'ver_2_1_0_b2' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_0_b2 = Semantic.vb(ver: .init(major: 2, minor: 1, patch: 0), build: [ .init(string: "2")! ] )
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:66:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_0_b2 = Semantic.vb(ver: .init(major: 2, minor: 1, patch: 0), build: [ .init(string: "2")! ] )
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:67:5: warning: let 'ver_2_1_1_b2' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_1_b2 = Semantic.vb(ver: .init(major: 2, minor: 1, patch: 1), build: [ .init(string: "2")! ] )
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:67:5: note: annotate 'ver_2_1_1_b2' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_1_b2 = Semantic.vb(ver: .init(major: 2, minor: 1, patch: 1), build: [ .init(string: "2")! ] )
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:67:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_1_b2 = Semantic.vb(ver: .init(major: 2, minor: 1, patch: 1), build: [ .init(string: "2")! ] )
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:71:5: warning: let 'ver_0_0_0_alpha_b1' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_0_0_0_alpha_b1 = Semantic.vib(ver: ver_0_0_0.version, ids: [.alpha], build: [ .init(string: "1")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:71:5: note: annotate 'ver_0_0_0_alpha_b1' with '@MainActor' if property should only be accessed from the main actor
let ver_0_0_0_alpha_b1 = Semantic.vib(ver: ver_0_0_0.version, ids: [.alpha], build: [ .init(string: "1")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:71:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_0_0_0_alpha_b1 = Semantic.vib(ver: ver_0_0_0.version, ids: [.alpha], build: [ .init(string: "1")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:72:5: warning: let 'ver_1_0_0_alpha_b1' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_1_0_0_alpha_b1 = Semantic.vib(ver: ver_1_0_0.version, ids: [.alpha], build: [ .init(string: "1")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:72:5: note: annotate 'ver_1_0_0_alpha_b1' with '@MainActor' if property should only be accessed from the main actor
let ver_1_0_0_alpha_b1 = Semantic.vib(ver: ver_1_0_0.version, ids: [.alpha], build: [ .init(string: "1")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:72:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_1_0_0_alpha_b1 = Semantic.vib(ver: ver_1_0_0.version, ids: [.alpha], build: [ .init(string: "1")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:73:5: warning: let 'ver_2_0_0_alpha_b1' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_0_0_alpha_b1 = Semantic.vib(ver: ver_2_0_0.version, ids: [.alpha], build: [ .init(string: "1")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:73:5: note: annotate 'ver_2_0_0_alpha_b1' with '@MainActor' if property should only be accessed from the main actor
let ver_2_0_0_alpha_b1 = Semantic.vib(ver: ver_2_0_0.version, ids: [.alpha], build: [ .init(string: "1")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:73:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_0_0_alpha_b1 = Semantic.vib(ver: ver_2_0_0.version, ids: [.alpha], build: [ .init(string: "1")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:74:5: warning: let 'ver_2_1_0_alpha_b1' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_0_alpha_b1 = Semantic.vib(ver: ver_2_1_0.version, ids: [.alpha], build: [ .init(string: "1")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:74:5: note: annotate 'ver_2_1_0_alpha_b1' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_0_alpha_b1 = Semantic.vib(ver: ver_2_1_0.version, ids: [.alpha], build: [ .init(string: "1")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:74:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_0_alpha_b1 = Semantic.vib(ver: ver_2_1_0.version, ids: [.alpha], build: [ .init(string: "1")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:75:5: warning: let 'ver_2_1_1_alpha_b1' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_1_alpha_b1 = Semantic.vib(ver: ver_2_1_1.version, ids: [.alpha], build: [ .init(string: "1")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:75:5: note: annotate 'ver_2_1_1_alpha_b1' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_1_alpha_b1 = Semantic.vib(ver: ver_2_1_1.version, ids: [.alpha], build: [ .init(string: "1")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:75:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_1_alpha_b1 = Semantic.vib(ver: ver_2_1_1.version, ids: [.alpha], build: [ .init(string: "1")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:77:5: warning: let 'ver_0_0_0_beta_b1' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_0_0_0_beta_b1 = Semantic.vib(ver: ver_0_0_0.version, ids: [.beta], build: [ .init(string: "1")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:77:5: note: annotate 'ver_0_0_0_beta_b1' with '@MainActor' if property should only be accessed from the main actor
let ver_0_0_0_beta_b1 = Semantic.vib(ver: ver_0_0_0.version, ids: [.beta], build: [ .init(string: "1")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:77:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_0_0_0_beta_b1 = Semantic.vib(ver: ver_0_0_0.version, ids: [.beta], build: [ .init(string: "1")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:78:5: warning: let 'ver_1_0_0_beta_b1' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_1_0_0_beta_b1 = Semantic.vib(ver: ver_1_0_0.version, ids: [.beta], build: [ .init(string: "1")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:78:5: note: annotate 'ver_1_0_0_beta_b1' with '@MainActor' if property should only be accessed from the main actor
let ver_1_0_0_beta_b1 = Semantic.vib(ver: ver_1_0_0.version, ids: [.beta], build: [ .init(string: "1")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:78:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_1_0_0_beta_b1 = Semantic.vib(ver: ver_1_0_0.version, ids: [.beta], build: [ .init(string: "1")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:79:5: warning: let 'ver_2_0_0_beta_b1' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_0_0_beta_b1 = Semantic.vib(ver: ver_2_0_0.version, ids: [.beta], build: [ .init(string: "1")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:79:5: note: annotate 'ver_2_0_0_beta_b1' with '@MainActor' if property should only be accessed from the main actor
let ver_2_0_0_beta_b1 = Semantic.vib(ver: ver_2_0_0.version, ids: [.beta], build: [ .init(string: "1")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:79:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_0_0_beta_b1 = Semantic.vib(ver: ver_2_0_0.version, ids: [.beta], build: [ .init(string: "1")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:80:5: warning: let 'ver_2_1_0_beta_b1' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_0_beta_b1 = Semantic.vib(ver: ver_2_1_0.version, ids: [.beta], build: [ .init(string: "1")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:80:5: note: annotate 'ver_2_1_0_beta_b1' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_0_beta_b1 = Semantic.vib(ver: ver_2_1_0.version, ids: [.beta], build: [ .init(string: "1")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:80:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_0_beta_b1 = Semantic.vib(ver: ver_2_1_0.version, ids: [.beta], build: [ .init(string: "1")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:81:5: warning: let 'ver_2_1_1_beta_b1' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_1_beta_b1 = Semantic.vib(ver: ver_2_1_1.version, ids: [.beta], build: [ .init(string: "1")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:81:5: note: annotate 'ver_2_1_1_beta_b1' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_1_beta_b1 = Semantic.vib(ver: ver_2_1_1.version, ids: [.beta], build: [ .init(string: "1")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:81:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_1_beta_b1 = Semantic.vib(ver: ver_2_1_1.version, ids: [.beta], build: [ .init(string: "1")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:83:5: warning: let 'ver_0_0_0_alpha_beta_b1' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_0_0_0_alpha_beta_b1 = Semantic.vib(ver: ver_0_0_0.version, ids: [.alpha, .beta], build: [ .init(string: "1")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:83:5: note: annotate 'ver_0_0_0_alpha_beta_b1' with '@MainActor' if property should only be accessed from the main actor
let ver_0_0_0_alpha_beta_b1 = Semantic.vib(ver: ver_0_0_0.version, ids: [.alpha, .beta], build: [ .init(string: "1")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:83:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_0_0_0_alpha_beta_b1 = Semantic.vib(ver: ver_0_0_0.version, ids: [.alpha, .beta], build: [ .init(string: "1")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:84:5: warning: let 'ver_1_0_0_alpha_beta_b1' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_1_0_0_alpha_beta_b1 = Semantic.vib(ver: ver_1_0_0.version, ids: [.alpha, .beta], build: [ .init(string: "1")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:84:5: note: annotate 'ver_1_0_0_alpha_beta_b1' with '@MainActor' if property should only be accessed from the main actor
let ver_1_0_0_alpha_beta_b1 = Semantic.vib(ver: ver_1_0_0.version, ids: [.alpha, .beta], build: [ .init(string: "1")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:84:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_1_0_0_alpha_beta_b1 = Semantic.vib(ver: ver_1_0_0.version, ids: [.alpha, .beta], build: [ .init(string: "1")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:85:5: warning: let 'ver_2_0_0_alpha_beta_b1' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_0_0_alpha_beta_b1 = Semantic.vib(ver: ver_2_0_0.version, ids: [.alpha, .beta], build: [ .init(string: "1")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:85:5: note: annotate 'ver_2_0_0_alpha_beta_b1' with '@MainActor' if property should only be accessed from the main actor
let ver_2_0_0_alpha_beta_b1 = Semantic.vib(ver: ver_2_0_0.version, ids: [.alpha, .beta], build: [ .init(string: "1")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:85:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_0_0_alpha_beta_b1 = Semantic.vib(ver: ver_2_0_0.version, ids: [.alpha, .beta], build: [ .init(string: "1")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:86:5: warning: let 'ver_2_1_0_alpha_beta_b1' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_0_alpha_beta_b1 = Semantic.vib(ver: ver_2_1_0.version, ids: [.alpha, .beta], build: [ .init(string: "1")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:86:5: note: annotate 'ver_2_1_0_alpha_beta_b1' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_0_alpha_beta_b1 = Semantic.vib(ver: ver_2_1_0.version, ids: [.alpha, .beta], build: [ .init(string: "1")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:86:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_0_alpha_beta_b1 = Semantic.vib(ver: ver_2_1_0.version, ids: [.alpha, .beta], build: [ .init(string: "1")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:87:5: warning: let 'ver_2_1_1_alpha_beta_b1' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_1_alpha_beta_b1 = Semantic.vib(ver: ver_2_1_1.version, ids: [.alpha, .beta], build: [ .init(string: "1")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:87:5: note: annotate 'ver_2_1_1_alpha_beta_b1' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_1_alpha_beta_b1 = Semantic.vib(ver: ver_2_1_1.version, ids: [.alpha, .beta], build: [ .init(string: "1")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:87:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_1_alpha_beta_b1 = Semantic.vib(ver: ver_2_1_1.version, ids: [.alpha, .beta], build: [ .init(string: "1")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:89:5: warning: let 'ver_0_0_0_alpha_b2' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_0_0_0_alpha_b2 = Semantic.vib(ver: ver_0_0_0.version, ids: [.alpha], build: [ .init(string: "2")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:89:5: note: annotate 'ver_0_0_0_alpha_b2' with '@MainActor' if property should only be accessed from the main actor
let ver_0_0_0_alpha_b2 = Semantic.vib(ver: ver_0_0_0.version, ids: [.alpha], build: [ .init(string: "2")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:89:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_0_0_0_alpha_b2 = Semantic.vib(ver: ver_0_0_0.version, ids: [.alpha], build: [ .init(string: "2")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:90:5: warning: let 'ver_1_0_0_alpha_b2' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_1_0_0_alpha_b2 = Semantic.vib(ver: ver_1_0_0.version, ids: [.alpha], build: [ .init(string: "2")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:90:5: note: annotate 'ver_1_0_0_alpha_b2' with '@MainActor' if property should only be accessed from the main actor
let ver_1_0_0_alpha_b2 = Semantic.vib(ver: ver_1_0_0.version, ids: [.alpha], build: [ .init(string: "2")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:90:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_1_0_0_alpha_b2 = Semantic.vib(ver: ver_1_0_0.version, ids: [.alpha], build: [ .init(string: "2")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:91:5: warning: let 'ver_2_0_0_alpha_b2' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_0_0_alpha_b2 = Semantic.vib(ver: ver_2_0_0.version, ids: [.alpha], build: [ .init(string: "2")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:91:5: note: annotate 'ver_2_0_0_alpha_b2' with '@MainActor' if property should only be accessed from the main actor
let ver_2_0_0_alpha_b2 = Semantic.vib(ver: ver_2_0_0.version, ids: [.alpha], build: [ .init(string: "2")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:91:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_0_0_alpha_b2 = Semantic.vib(ver: ver_2_0_0.version, ids: [.alpha], build: [ .init(string: "2")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:92:5: warning: let 'ver_2_1_0_alpha_b2' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_0_alpha_b2 = Semantic.vib(ver: ver_2_1_0.version, ids: [.alpha], build: [ .init(string: "2")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:92:5: note: annotate 'ver_2_1_0_alpha_b2' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_0_alpha_b2 = Semantic.vib(ver: ver_2_1_0.version, ids: [.alpha], build: [ .init(string: "2")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:92:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_0_alpha_b2 = Semantic.vib(ver: ver_2_1_0.version, ids: [.alpha], build: [ .init(string: "2")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:93:5: warning: let 'ver_2_1_1_alpha_b2' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_1_alpha_b2 = Semantic.vib(ver: ver_2_1_1.version, ids: [.alpha], build: [ .init(string: "2")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:93:5: note: annotate 'ver_2_1_1_alpha_b2' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_1_alpha_b2 = Semantic.vib(ver: ver_2_1_1.version, ids: [.alpha], build: [ .init(string: "2")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:93:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_1_alpha_b2 = Semantic.vib(ver: ver_2_1_1.version, ids: [.alpha], build: [ .init(string: "2")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:95:5: warning: let 'ver_0_0_0_beta_b2' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_0_0_0_beta_b2 = Semantic.vib(ver: ver_0_0_0.version, ids: [.beta], build: [ .init(string: "2")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:95:5: note: annotate 'ver_0_0_0_beta_b2' with '@MainActor' if property should only be accessed from the main actor
let ver_0_0_0_beta_b2 = Semantic.vib(ver: ver_0_0_0.version, ids: [.beta], build: [ .init(string: "2")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:95:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_0_0_0_beta_b2 = Semantic.vib(ver: ver_0_0_0.version, ids: [.beta], build: [ .init(string: "2")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:96:5: warning: let 'ver_1_0_0_beta_b2' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_1_0_0_beta_b2 = Semantic.vib(ver: ver_1_0_0.version, ids: [.beta], build: [ .init(string: "2")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:96:5: note: annotate 'ver_1_0_0_beta_b2' with '@MainActor' if property should only be accessed from the main actor
let ver_1_0_0_beta_b2 = Semantic.vib(ver: ver_1_0_0.version, ids: [.beta], build: [ .init(string: "2")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:96:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_1_0_0_beta_b2 = Semantic.vib(ver: ver_1_0_0.version, ids: [.beta], build: [ .init(string: "2")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:97:5: warning: let 'ver_2_0_0_beta_b2' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_0_0_beta_b2 = Semantic.vib(ver: ver_2_0_0.version, ids: [.beta], build: [ .init(string: "2")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:97:5: note: annotate 'ver_2_0_0_beta_b2' with '@MainActor' if property should only be accessed from the main actor
let ver_2_0_0_beta_b2 = Semantic.vib(ver: ver_2_0_0.version, ids: [.beta], build: [ .init(string: "2")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:97:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_0_0_beta_b2 = Semantic.vib(ver: ver_2_0_0.version, ids: [.beta], build: [ .init(string: "2")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:98:5: warning: let 'ver_2_1_0_beta_b2' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_0_beta_b2 = Semantic.vib(ver: ver_2_1_0.version, ids: [.beta], build: [ .init(string: "2")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:98:5: note: annotate 'ver_2_1_0_beta_b2' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_0_beta_b2 = Semantic.vib(ver: ver_2_1_0.version, ids: [.beta], build: [ .init(string: "2")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:98:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_0_beta_b2 = Semantic.vib(ver: ver_2_1_0.version, ids: [.beta], build: [ .init(string: "2")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:99:5: warning: let 'ver_2_1_1_beta_b2' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_1_beta_b2 = Semantic.vib(ver: ver_2_1_1.version, ids: [.beta], build: [ .init(string: "2")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:99:5: note: annotate 'ver_2_1_1_beta_b2' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_1_beta_b2 = Semantic.vib(ver: ver_2_1_1.version, ids: [.beta], build: [ .init(string: "2")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:99:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_1_beta_b2 = Semantic.vib(ver: ver_2_1_1.version, ids: [.beta], build: [ .init(string: "2")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:101:5: warning: let 'ver_0_0_0_alpha_beta_b2' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_0_0_0_alpha_beta_b2 = Semantic.vib(ver: ver_0_0_0.version, ids: [.alpha, .beta], build: [ .init(string: "2")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:101:5: note: annotate 'ver_0_0_0_alpha_beta_b2' with '@MainActor' if property should only be accessed from the main actor
let ver_0_0_0_alpha_beta_b2 = Semantic.vib(ver: ver_0_0_0.version, ids: [.alpha, .beta], build: [ .init(string: "2")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:101:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_0_0_0_alpha_beta_b2 = Semantic.vib(ver: ver_0_0_0.version, ids: [.alpha, .beta], build: [ .init(string: "2")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:102:5: warning: let 'ver_1_0_0_alpha_beta_b2' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_1_0_0_alpha_beta_b2 = Semantic.vib(ver: ver_1_0_0.version, ids: [.alpha, .beta], build: [ .init(string: "2")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:102:5: note: annotate 'ver_1_0_0_alpha_beta_b2' with '@MainActor' if property should only be accessed from the main actor
let ver_1_0_0_alpha_beta_b2 = Semantic.vib(ver: ver_1_0_0.version, ids: [.alpha, .beta], build: [ .init(string: "2")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:102:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_1_0_0_alpha_beta_b2 = Semantic.vib(ver: ver_1_0_0.version, ids: [.alpha, .beta], build: [ .init(string: "2")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:103:5: warning: let 'ver_2_0_0_alpha_beta_b2' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_0_0_alpha_beta_b2 = Semantic.vib(ver: ver_2_0_0.version, ids: [.alpha, .beta], build: [ .init(string: "2")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:103:5: note: annotate 'ver_2_0_0_alpha_beta_b2' with '@MainActor' if property should only be accessed from the main actor
let ver_2_0_0_alpha_beta_b2 = Semantic.vib(ver: ver_2_0_0.version, ids: [.alpha, .beta], build: [ .init(string: "2")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:103:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_0_0_alpha_beta_b2 = Semantic.vib(ver: ver_2_0_0.version, ids: [.alpha, .beta], build: [ .init(string: "2")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:104:5: warning: let 'ver_2_1_0_alpha_beta_b2' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_0_alpha_beta_b2 = Semantic.vib(ver: ver_2_1_0.version, ids: [.alpha, .beta], build: [ .init(string: "2")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:104:5: note: annotate 'ver_2_1_0_alpha_beta_b2' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_0_alpha_beta_b2 = Semantic.vib(ver: ver_2_1_0.version, ids: [.alpha, .beta], build: [ .init(string: "2")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:104:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_0_alpha_beta_b2 = Semantic.vib(ver: ver_2_1_0.version, ids: [.alpha, .beta], build: [ .init(string: "2")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:105:5: warning: let 'ver_2_1_1_alpha_beta_b2' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_1_alpha_beta_b2 = Semantic.vib(ver: ver_2_1_1.version, ids: [.alpha, .beta], build: [ .init(string: "2")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:105:5: note: annotate 'ver_2_1_1_alpha_beta_b2' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_1_alpha_beta_b2 = Semantic.vib(ver: ver_2_1_1.version, ids: [.alpha, .beta], build: [ .init(string: "2")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:105:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_1_alpha_beta_b2 = Semantic.vib(ver: ver_2_1_1.version, ids: [.alpha, .beta], build: [ .init(string: "2")! ])
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling Semantic.Identifier.swift, Semantic.Major.AdditiveArithmetic.swift, Semantic.Major.Comparable.swift (in target 'MajorMinorPatch' from project 'MajorMinorPatch')
SwiftDriverJobDiscovery normal arm64 Compiling Semantic.Major.LosslessStringConvertible.swift, Semantic.Major.PatternMatching.swift, Semantic.Major.swift (in target 'MajorMinorPatch' from project 'MajorMinorPatch')
SwiftCompile normal arm64 Compiling\ SemanticIdentifierComparableTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SemanticIdentifierComparableTests.swift (in target 'MajorMinorPatchTests' from project 'MajorMinorPatch')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/MajorTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/MinorTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/ParsingTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/PatchTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SemanticIdentifierComparableTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SemanticVersioningPrecedenceTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/StringConvertibleTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/ValidationTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/SemanticIdentifierComparableTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/SemanticIdentifierComparableTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/SemanticIdentifierComparableTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/SemanticIdentifierComparableTests.dia -target arm64-apple-macos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -load-plugin-executable /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/CasePathsMacros\#CasePathsMacros -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/MajorMinorPatchTests_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name MajorMinorPatchTests -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/SemanticIdentifierComparableTests.o -index-unit-output-path /MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/SemanticIdentifierComparableTests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SemanticIdentifierComparableTests.swift (in target 'MajorMinorPatchTests' from project 'MajorMinorPatch')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/MajorTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/MinorTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/ParsingTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/PatchTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SemanticIdentifierComparableTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SemanticVersioningPrecedenceTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/StringConvertibleTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/ValidationTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/SemanticIdentifierComparableTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/SemanticIdentifierComparableTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/SemanticIdentifierComparableTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/SemanticIdentifierComparableTests.dia -target arm64-apple-macos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -load-plugin-executable /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/CasePathsMacros\#CasePathsMacros -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/MajorMinorPatchTests_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name MajorMinorPatchTests -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/SemanticIdentifierComparableTests.o -index-unit-output-path /MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/SemanticIdentifierComparableTests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 Compiling\ PatchTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/PatchTests.swift (in target 'MajorMinorPatchTests' from project 'MajorMinorPatch')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/MajorTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/MinorTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/ParsingTests.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/PatchTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SemanticIdentifierComparableTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SemanticVersioningPrecedenceTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/StringConvertibleTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/ValidationTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/PatchTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/PatchTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/PatchTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/PatchTests.dia -target arm64-apple-macos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -load-plugin-executable /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/CasePathsMacros\#CasePathsMacros -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/MajorMinorPatchTests_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name MajorMinorPatchTests -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/PatchTests.o -index-unit-output-path /MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/PatchTests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/PatchTests.swift (in target 'MajorMinorPatchTests' from project 'MajorMinorPatch')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/MajorTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/MinorTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/ParsingTests.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/PatchTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SemanticIdentifierComparableTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SemanticVersioningPrecedenceTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/StringConvertibleTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/ValidationTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/PatchTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/PatchTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/PatchTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/PatchTests.dia -target arm64-apple-macos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -load-plugin-executable /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/CasePathsMacros\#CasePathsMacros -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/MajorMinorPatchTests_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name MajorMinorPatchTests -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/PatchTests.o -index-unit-output-path /MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/PatchTests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:27:5: warning: let 'patch1' is not concurrency-safe because non-'Sendable' type 'Semantic.Patch' may have shared mutable state; this is an error in the Swift 6 language mode
let patch1 = Semantic.Patch(integerLiteral: 1)
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Patch/Semantic.Patch.swift:6:19: note: struct 'Patch' does not conform to the 'Sendable' protocol
public struct Patch: ExpressibleByIntegerLiteral, RawRepresentable {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'MajorMinorPatch'
import MajorMinorPatch
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:27:5: note: annotate 'patch1' with '@MainActor' if property should only be accessed from the main actor
let patch1 = Semantic.Patch(integerLiteral: 1)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:27:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let patch1 = Semantic.Patch(integerLiteral: 1)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:28:5: warning: let 'patch2' is not concurrency-safe because non-'Sendable' type 'Semantic.Patch' may have shared mutable state; this is an error in the Swift 6 language mode
let patch2 = Semantic.Patch(integerLiteral: 2)
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Patch/Semantic.Patch.swift:6:19: note: struct 'Patch' does not conform to the 'Sendable' protocol
public struct Patch: ExpressibleByIntegerLiteral, RawRepresentable {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:28:5: note: annotate 'patch2' with '@MainActor' if property should only be accessed from the main actor
let patch2 = Semantic.Patch(integerLiteral: 2)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:28:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let patch2 = Semantic.Patch(integerLiteral: 2)
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:29:5: warning: let 'patch3' is not concurrency-safe because non-'Sendable' type 'Semantic.Patch' may have shared mutable state; this is an error in the Swift 6 language mode
let patch3 = Semantic.Patch(integerLiteral: 3)
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Patch/Semantic.Patch.swift:6:19: note: struct 'Patch' does not conform to the 'Sendable' protocol
public struct Patch: ExpressibleByIntegerLiteral, RawRepresentable {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:29:5: note: annotate 'patch3' with '@MainActor' if property should only be accessed from the main actor
let patch3 = Semantic.Patch(integerLiteral: 3)
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:29:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let patch3 = Semantic.Patch(integerLiteral: 3)
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling Semantic.Patch.LosslessStringConvertible.swift, Semantic.Patch.PatternMatching.swift, Semantic.Patch.swift (in target 'MajorMinorPatch' from project 'MajorMinorPatch')
SwiftCompile normal arm64 Compiling\ SemanticVersioningPrecedenceTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SemanticVersioningPrecedenceTests.swift (in target 'MajorMinorPatchTests' from project 'MajorMinorPatch')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-swiftTaskExecution -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -frontend -c /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/MajorTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/MinorTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/ParsingTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/PatchTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SemanticIdentifierComparableTests.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SemanticVersioningPrecedenceTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/StringConvertibleTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/ValidationTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/SemanticVersioningPrecedenceTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/SemanticVersioningPrecedenceTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/SemanticVersioningPrecedenceTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/SemanticVersioningPrecedenceTests.dia -target arm64-apple-macos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -load-plugin-executable /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/CasePathsMacros\#CasePathsMacros -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/MajorMinorPatchTests_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name MajorMinorPatchTests -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/SemanticVersioningPrecedenceTests.o -index-unit-output-path /MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/SemanticVersioningPrecedenceTests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
SwiftCompile normal arm64 /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SemanticVersioningPrecedenceTests.swift (in target 'MajorMinorPatchTests' from project 'MajorMinorPatch')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift-frontend -c /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/MajorTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/MinorTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/ParsingTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/PatchTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SemanticIdentifierComparableTests.swift -primary-file /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SemanticVersioningPrecedenceTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/StringConvertibleTests.swift /Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/ValidationTests.swift -emit-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/SemanticVersioningPrecedenceTests.d -emit-const-values-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/SemanticVersioningPrecedenceTests.swiftconstvalues -emit-reference-dependencies-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/SemanticVersioningPrecedenceTests.swiftdeps -serialize-diagnostics-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/SemanticVersioningPrecedenceTests.dia -target arm64-apple-macos13.0 -Xllvm -aarch64-use-tbi -enable-objc-interop -stack-check -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -no-color-diagnostics -enable-testing -g -debug-info-format\=dwarf -dwarf-version\=4 -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -profile-generate -profile-coverage-mapping -swift-version 5 -enforce-exclusivity\=checked -stats-output-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode/.stats -Onone -D SWIFT_PACKAGE -D DEBUG -serialize-debugging-options -load-plugin-executable /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/CasePathsMacros\#CasePathsMacros -const-gather-protocols-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/MajorMinorPatchTests_const_extract_protocols.json -enable-experimental-feature DebugDescriptionMacro -enable-experimental-feature OpaqueTypeErasure -strict-concurrency\=complete -empty-abi-descriptor -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -working-directory -Xcc /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -resource-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift -enable-anonymous-context-mangled-names -file-compilation-dir /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -module-name MajorMinorPatchTests -frontend-parseable-output -disable-clang-spi -target-sdk-version 15.1 -target-sdk-name macosx15.1 -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -external-plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/local/lib/swift/host/plugins\#/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/bin/swift-plugin-server -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/lib/swift/host/plugins -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/SemanticVersioningPrecedenceTests.o -index-unit-output-path /MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/SemanticVersioningPrecedenceTests.o -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -index-system-modules
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:6:5: warning: let 'ver_0_0_0' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_0_0_0 = Semantic.ver_0_0_0
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:3:1: warning: add '@preconcurrency' to suppress 'Sendable'-related warnings from module 'MajorMinorPatch'
import MajorMinorPatch
^
@preconcurrency
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:6:5: note: annotate 'ver_0_0_0' with '@MainActor' if property should only be accessed from the main actor
let ver_0_0_0 = Semantic.ver_0_0_0
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:6:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_0_0_0 = Semantic.ver_0_0_0
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:7:5: warning: let 'ver_1_0_0' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_1_0_0 = Semantic.ver_1_0_0
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:7:5: note: annotate 'ver_1_0_0' with '@MainActor' if property should only be accessed from the main actor
let ver_1_0_0 = Semantic.ver_1_0_0
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:7:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_1_0_0 = Semantic.ver_1_0_0
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:9:5: warning: let 'ver_2_0_0' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_0_0 = Semantic.v(ver: .init(major: 2, minor: 0, patch: 0) )
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:9:5: note: annotate 'ver_2_0_0' with '@MainActor' if property should only be accessed from the main actor
let ver_2_0_0 = Semantic.v(ver: .init(major: 2, minor: 0, patch: 0) )
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:9:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_0_0 = Semantic.v(ver: .init(major: 2, minor: 0, patch: 0) )
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:10:5: warning: let 'ver_2_1_0' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_0 = Semantic.v(ver: .init(major: 2, minor: 1, patch: 0) )
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:10:5: note: annotate 'ver_2_1_0' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_0 = Semantic.v(ver: .init(major: 2, minor: 1, patch: 0) )
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:10:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_0 = Semantic.v(ver: .init(major: 2, minor: 1, patch: 0) )
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:11:5: warning: let 'ver_2_1_1' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_1 = Semantic.v(ver: .init(major: 2, minor: 1, patch: 1) )
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:11:5: note: annotate 'ver_2_1_1' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_1 = Semantic.v(ver: .init(major: 2, minor: 1, patch: 1) )
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:11:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_1 = Semantic.v(ver: .init(major: 2, minor: 1, patch: 1) )
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:34:5: warning: let 'ver_0_0_0_alpha' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_0_0_0_alpha = Semantic.vi(ver: ver_0_0_0.version, ids: [.alpha])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:34:5: note: annotate 'ver_0_0_0_alpha' with '@MainActor' if property should only be accessed from the main actor
let ver_0_0_0_alpha = Semantic.vi(ver: ver_0_0_0.version, ids: [.alpha])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:34:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_0_0_0_alpha = Semantic.vi(ver: ver_0_0_0.version, ids: [.alpha])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:35:5: warning: let 'ver_1_0_0_alpha' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_1_0_0_alpha = Semantic.vi(ver: ver_1_0_0.version, ids: [.alpha])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:35:5: note: annotate 'ver_1_0_0_alpha' with '@MainActor' if property should only be accessed from the main actor
let ver_1_0_0_alpha = Semantic.vi(ver: ver_1_0_0.version, ids: [.alpha])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:35:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_1_0_0_alpha = Semantic.vi(ver: ver_1_0_0.version, ids: [.alpha])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:37:5: warning: let 'ver_2_1_0_alpha' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_0_alpha = Semantic.vi(ver: ver_2_1_0.version, ids: [.alpha])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:37:5: note: annotate 'ver_2_1_0_alpha' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_0_alpha = Semantic.vi(ver: ver_2_1_0.version, ids: [.alpha])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:37:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_0_alpha = Semantic.vi(ver: ver_2_1_0.version, ids: [.alpha])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:38:5: warning: let 'ver_2_1_1_alpha' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_1_alpha = Semantic.vi(ver: ver_2_1_1.version, ids: [.alpha])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:38:5: note: annotate 'ver_2_1_1_alpha' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_1_alpha = Semantic.vi(ver: ver_2_1_1.version, ids: [.alpha])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:38:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_1_alpha = Semantic.vi(ver: ver_2_1_1.version, ids: [.alpha])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:47:5: warning: let 'ver_1_0_0_alpha_beta' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_1_0_0_alpha_beta = Semantic.vi(ver: ver_1_0_0.version, ids: [.alpha, .beta])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:47:5: note: annotate 'ver_1_0_0_alpha_beta' with '@MainActor' if property should only be accessed from the main actor
let ver_1_0_0_alpha_beta = Semantic.vi(ver: ver_1_0_0.version, ids: [.alpha, .beta])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:47:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_1_0_0_alpha_beta = Semantic.vi(ver: ver_1_0_0.version, ids: [.alpha, .beta])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:55:5: warning: let 'ver_0_0_0_b1' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_0_0_0_b1 = Semantic.vb(ver: ver_0_0_0.version, build: [ .init(string: "1")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:55:5: note: annotate 'ver_0_0_0_b1' with '@MainActor' if property should only be accessed from the main actor
let ver_0_0_0_b1 = Semantic.vb(ver: ver_0_0_0.version, build: [ .init(string: "1")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:55:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_0_0_0_b1 = Semantic.vb(ver: ver_0_0_0.version, build: [ .init(string: "1")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:62:5: warning: let 'ver_0_0_0_b2' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_0_0_0_b2 = Semantic.vb(ver: ver_0_0_0.version, build: [ .init(string: "2")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:62:5: note: annotate 'ver_0_0_0_b2' with '@MainActor' if property should only be accessed from the main actor
let ver_0_0_0_b2 = Semantic.vb(ver: ver_0_0_0.version, build: [ .init(string: "2")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:62:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_0_0_0_b2 = Semantic.vb(ver: ver_0_0_0.version, build: [ .init(string: "2")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:56:5: warning: let 'ver_1_0_0_b1' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_1_0_0_b1 = Semantic.vb(ver: ver_1_0_0.version, build: [ .init(string: "1")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:56:5: note: annotate 'ver_1_0_0_b1' with '@MainActor' if property should only be accessed from the main actor
let ver_1_0_0_b1 = Semantic.vb(ver: ver_1_0_0.version, build: [ .init(string: "1")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:56:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_1_0_0_b1 = Semantic.vb(ver: ver_1_0_0.version, build: [ .init(string: "1")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:63:5: warning: let 'ver_1_0_0_b2' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_1_0_0_b2 = Semantic.vb(ver: ver_1_0_0.version, build: [ .init(string: "2")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:63:5: note: annotate 'ver_1_0_0_b2' with '@MainActor' if property should only be accessed from the main actor
let ver_1_0_0_b2 = Semantic.vb(ver: ver_1_0_0.version, build: [ .init(string: "2")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:63:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_1_0_0_b2 = Semantic.vb(ver: ver_1_0_0.version, build: [ .init(string: "2")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:58:5: warning: let 'ver_2_0_0_b1' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_0_0_b1 = Semantic.vb(ver: .init(major: 2, minor: 0, patch: 0), build: [ .init(string: "1")! ] )
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:58:5: note: annotate 'ver_2_0_0_b1' with '@MainActor' if property should only be accessed from the main actor
let ver_2_0_0_b1 = Semantic.vb(ver: .init(major: 2, minor: 0, patch: 0), build: [ .init(string: "1")! ] )
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:58:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_0_0_b1 = Semantic.vb(ver: .init(major: 2, minor: 0, patch: 0), build: [ .init(string: "1")! ] )
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:65:5: warning: let 'ver_2_0_0_b2' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_0_0_b2 = Semantic.vb(ver: .init(major: 2, minor: 0, patch: 0), build: [ .init(string: "2")! ] )
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:65:5: note: annotate 'ver_2_0_0_b2' with '@MainActor' if property should only be accessed from the main actor
let ver_2_0_0_b2 = Semantic.vb(ver: .init(major: 2, minor: 0, patch: 0), build: [ .init(string: "2")! ] )
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:65:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_0_0_b2 = Semantic.vb(ver: .init(major: 2, minor: 0, patch: 0), build: [ .init(string: "2")! ] )
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:59:5: warning: let 'ver_2_1_0_b1' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_0_b1 = Semantic.vb(ver: .init(major: 2, minor: 1, patch: 0), build: [ .init(string: "1")! ] )
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:59:5: note: annotate 'ver_2_1_0_b1' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_0_b1 = Semantic.vb(ver: .init(major: 2, minor: 1, patch: 0), build: [ .init(string: "1")! ] )
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:59:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_0_b1 = Semantic.vb(ver: .init(major: 2, minor: 1, patch: 0), build: [ .init(string: "1")! ] )
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:66:5: warning: let 'ver_2_1_0_b2' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_0_b2 = Semantic.vb(ver: .init(major: 2, minor: 1, patch: 0), build: [ .init(string: "2")! ] )
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:66:5: note: annotate 'ver_2_1_0_b2' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_0_b2 = Semantic.vb(ver: .init(major: 2, minor: 1, patch: 0), build: [ .init(string: "2")! ] )
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:66:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_0_b2 = Semantic.vb(ver: .init(major: 2, minor: 1, patch: 0), build: [ .init(string: "2")! ] )
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:60:5: warning: let 'ver_2_1_1_b1' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_1_b1 = Semantic.vb(ver: .init(major: 2, minor: 1, patch: 1), build: [ .init(string: "1")! ] )
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:60:5: note: annotate 'ver_2_1_1_b1' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_1_b1 = Semantic.vb(ver: .init(major: 2, minor: 1, patch: 1), build: [ .init(string: "1")! ] )
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:60:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_1_b1 = Semantic.vb(ver: .init(major: 2, minor: 1, patch: 1), build: [ .init(string: "1")! ] )
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:67:5: warning: let 'ver_2_1_1_b2' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_1_b2 = Semantic.vb(ver: .init(major: 2, minor: 1, patch: 1), build: [ .init(string: "2")! ] )
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:67:5: note: annotate 'ver_2_1_1_b2' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_1_b2 = Semantic.vb(ver: .init(major: 2, minor: 1, patch: 1), build: [ .init(string: "2")! ] )
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:67:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_1_b2 = Semantic.vb(ver: .init(major: 2, minor: 1, patch: 1), build: [ .init(string: "2")! ] )
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:79:5: warning: let 'ver_2_0_0_beta_b1' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_0_0_beta_b1 = Semantic.vib(ver: ver_2_0_0.version, ids: [.beta], build: [ .init(string: "1")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:79:5: note: annotate 'ver_2_0_0_beta_b1' with '@MainActor' if property should only be accessed from the main actor
let ver_2_0_0_beta_b1 = Semantic.vib(ver: ver_2_0_0.version, ids: [.beta], build: [ .init(string: "1")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:79:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_0_0_beta_b1 = Semantic.vib(ver: ver_2_0_0.version, ids: [.beta], build: [ .init(string: "1")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:97:5: warning: let 'ver_2_0_0_beta_b2' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_0_0_beta_b2 = Semantic.vib(ver: ver_2_0_0.version, ids: [.beta], build: [ .init(string: "2")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:97:5: note: annotate 'ver_2_0_0_beta_b2' with '@MainActor' if property should only be accessed from the main actor
let ver_2_0_0_beta_b2 = Semantic.vib(ver: ver_2_0_0.version, ids: [.beta], build: [ .init(string: "2")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:97:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_0_0_beta_b2 = Semantic.vib(ver: ver_2_0_0.version, ids: [.beta], build: [ .init(string: "2")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:80:5: warning: let 'ver_2_1_0_beta_b1' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_0_beta_b1 = Semantic.vib(ver: ver_2_1_0.version, ids: [.beta], build: [ .init(string: "1")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:80:5: note: annotate 'ver_2_1_0_beta_b1' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_0_beta_b1 = Semantic.vib(ver: ver_2_1_0.version, ids: [.beta], build: [ .init(string: "1")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:80:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_0_beta_b1 = Semantic.vib(ver: ver_2_1_0.version, ids: [.beta], build: [ .init(string: "1")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:98:5: warning: let 'ver_2_1_0_beta_b2' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_0_beta_b2 = Semantic.vib(ver: ver_2_1_0.version, ids: [.beta], build: [ .init(string: "2")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:98:5: note: annotate 'ver_2_1_0_beta_b2' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_0_beta_b2 = Semantic.vib(ver: ver_2_1_0.version, ids: [.beta], build: [ .init(string: "2")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:98:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_0_beta_b2 = Semantic.vib(ver: ver_2_1_0.version, ids: [.beta], build: [ .init(string: "2")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:81:5: warning: let 'ver_2_1_1_beta_b1' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_1_beta_b1 = Semantic.vib(ver: ver_2_1_1.version, ids: [.beta], build: [ .init(string: "1")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:81:5: note: annotate 'ver_2_1_1_beta_b1' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_1_beta_b1 = Semantic.vib(ver: ver_2_1_1.version, ids: [.beta], build: [ .init(string: "1")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:81:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_1_beta_b1 = Semantic.vib(ver: ver_2_1_1.version, ids: [.beta], build: [ .init(string: "1")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:99:5: warning: let 'ver_2_1_1_beta_b2' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_1_beta_b2 = Semantic.vib(ver: ver_2_1_1.version, ids: [.beta], build: [ .init(string: "2")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:99:5: note: annotate 'ver_2_1_1_beta_b2' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_1_beta_b2 = Semantic.vib(ver: ver_2_1_1.version, ids: [.beta], build: [ .init(string: "2")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:99:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_1_beta_b2 = Semantic.vib(ver: ver_2_1_1.version, ids: [.beta], build: [ .init(string: "2")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:85:5: warning: let 'ver_2_0_0_alpha_beta_b1' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_0_0_alpha_beta_b1 = Semantic.vib(ver: ver_2_0_0.version, ids: [.alpha, .beta], build: [ .init(string: "1")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:85:5: note: annotate 'ver_2_0_0_alpha_beta_b1' with '@MainActor' if property should only be accessed from the main actor
let ver_2_0_0_alpha_beta_b1 = Semantic.vib(ver: ver_2_0_0.version, ids: [.alpha, .beta], build: [ .init(string: "1")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:85:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_0_0_alpha_beta_b1 = Semantic.vib(ver: ver_2_0_0.version, ids: [.alpha, .beta], build: [ .init(string: "1")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:103:5: warning: let 'ver_2_0_0_alpha_beta_b2' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_0_0_alpha_beta_b2 = Semantic.vib(ver: ver_2_0_0.version, ids: [.alpha, .beta], build: [ .init(string: "2")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:103:5: note: annotate 'ver_2_0_0_alpha_beta_b2' with '@MainActor' if property should only be accessed from the main actor
let ver_2_0_0_alpha_beta_b2 = Semantic.vib(ver: ver_2_0_0.version, ids: [.alpha, .beta], build: [ .init(string: "2")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:103:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_0_0_alpha_beta_b2 = Semantic.vib(ver: ver_2_0_0.version, ids: [.alpha, .beta], build: [ .init(string: "2")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:86:5: warning: let 'ver_2_1_0_alpha_beta_b1' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_0_alpha_beta_b1 = Semantic.vib(ver: ver_2_1_0.version, ids: [.alpha, .beta], build: [ .init(string: "1")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:86:5: note: annotate 'ver_2_1_0_alpha_beta_b1' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_0_alpha_beta_b1 = Semantic.vib(ver: ver_2_1_0.version, ids: [.alpha, .beta], build: [ .init(string: "1")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:86:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_0_alpha_beta_b1 = Semantic.vib(ver: ver_2_1_0.version, ids: [.alpha, .beta], build: [ .init(string: "1")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:104:5: warning: let 'ver_2_1_0_alpha_beta_b2' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_0_alpha_beta_b2 = Semantic.vib(ver: ver_2_1_0.version, ids: [.alpha, .beta], build: [ .init(string: "2")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:104:5: note: annotate 'ver_2_1_0_alpha_beta_b2' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_0_alpha_beta_b2 = Semantic.vib(ver: ver_2_1_0.version, ids: [.alpha, .beta], build: [ .init(string: "2")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:104:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_0_alpha_beta_b2 = Semantic.vib(ver: ver_2_1_0.version, ids: [.alpha, .beta], build: [ .init(string: "2")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:87:5: warning: let 'ver_2_1_1_alpha_beta_b1' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_1_alpha_beta_b1 = Semantic.vib(ver: ver_2_1_1.version, ids: [.alpha, .beta], build: [ .init(string: "1")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:87:5: note: annotate 'ver_2_1_1_alpha_beta_b1' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_1_alpha_beta_b1 = Semantic.vib(ver: ver_2_1_1.version, ids: [.alpha, .beta], build: [ .init(string: "1")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:87:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_1_alpha_beta_b1 = Semantic.vib(ver: ver_2_1_1.version, ids: [.alpha, .beta], build: [ .init(string: "1")! ])
^
nonisolated(unsafe)
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:105:5: warning: let 'ver_2_1_1_alpha_beta_b2' is not concurrency-safe because non-'Sendable' type 'Semantic' may have shared mutable state; this is an error in the Swift 6 language mode
let ver_2_1_1_alpha_beta_b2 = Semantic.vib(ver: ver_2_1_1.version, ids: [.alpha, .beta], build: [ .init(string: "2")! ])
^
/Users/admin/builder/spi-builder-workspace/Sources/MajorMinorPatch/Public/Semantic.swift:4:13: note: enum 'Semantic' does not conform to the 'Sendable' protocol
public enum Semantic {
^
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:105:5: note: annotate 'ver_2_1_1_alpha_beta_b2' with '@MainActor' if property should only be accessed from the main actor
let ver_2_1_1_alpha_beta_b2 = Semantic.vib(ver: ver_2_1_1.version, ids: [.alpha, .beta], build: [ .init(string: "2")! ])
^
@MainActor
/Users/admin/builder/spi-builder-workspace/Tests/MajorMinorPatchTests/SUTs.swift:105:5: note: disable concurrency-safety checks if accesses are protected by an external synchronization mechanism
let ver_2_1_1_alpha_beta_b2 = Semantic.vib(ver: ver_2_1_1.version, ids: [.alpha, .beta], build: [ .init(string: "2")! ])
^
nonisolated(unsafe)
SwiftDriverJobDiscovery normal arm64 Compiling Parsing.swift, ArraySemantic.Identifier.swift, Semantic.Identifier.LosslessStringConvertible.swift (in target 'MajorMinorPatch' from project 'MajorMinorPatch')
SwiftDriverJobDiscovery normal arm64 Compiling ValidationTests.swift (in target 'MajorMinorPatchTests' from project 'MajorMinorPatch')
SwiftDriver\ Compilation MajorMinorPatch normal arm64 com.apple.xcode.tools.swift.compiler (in target 'MajorMinorPatch' from project 'MajorMinorPatch')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name MajorMinorPatch -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatch.build/Objects-normal/arm64/MajorMinorPatch.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -target arm64-apple-macos10.15 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -Xfrontend -load-plugin-executable -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/CasePathsMacros\#CasePathsMacros -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatch.build/Objects-normal/arm64/MajorMinorPatch-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatch.build/Objects-normal/arm64/MajorMinorPatch.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatch.build/swift-overrides.hmap -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatch.build/Objects-normal/arm64/MajorMinorPatch_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatch.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatch.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatch.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -emit-objc-header -emit-objc-header-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatch.build/Objects-normal/arm64/MajorMinorPatch-Swift.h -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
SwiftDriverJobDiscovery normal arm64 Compiling SemanticIdentifierComparableTests.swift (in target 'MajorMinorPatchTests' from project 'MajorMinorPatch')
SwiftDriverJobDiscovery normal arm64 Compiling ParsingTests.swift (in target 'MajorMinorPatchTests' from project 'MajorMinorPatch')
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MajorMinorPatch.o normal (in target 'MajorMinorPatch' from project 'MajorMinorPatch')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.15 -r -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatch.build/Objects-normal/arm64/MajorMinorPatch.LinkFileList -nostdlib -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatch.build/Objects-normal/arm64/MajorMinorPatch_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatch.build/Objects-normal/arm64/MajorMinorPatch.swiftmodule -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatch.build/Objects-normal/arm64/MajorMinorPatch_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MajorMinorPatch.o
SwiftDriverJobDiscovery normal arm64 Emitting module for MajorMinorPatchTests (in target 'MajorMinorPatchTests' from project 'MajorMinorPatch')
SwiftDriver\ Compilation\ Requirements MajorMinorPatchTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'MajorMinorPatchTests' from project 'MajorMinorPatch')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation-Requirements -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name MajorMinorPatchTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/MajorMinorPatchTests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -target arm64-apple-macos13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -Xfrontend -load-plugin-executable -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/CasePathsMacros\#CasePathsMacros -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/MajorMinorPatchTests-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/MajorMinorPatchTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/MajorMinorPatchTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MajorMinorPatchTests.swiftmodule/arm64-apple-macos.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/MajorMinorPatchTests.swiftmodule (in target 'MajorMinorPatchTests' from project 'MajorMinorPatch')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/MajorMinorPatchTests.swiftmodule /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MajorMinorPatchTests.swiftmodule/arm64-apple-macos.swiftmodule
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MajorMinorPatchTests.swiftmodule/arm64-apple-macos.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/MajorMinorPatchTests.abi.json (in target 'MajorMinorPatchTests' from project 'MajorMinorPatch')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/MajorMinorPatchTests.abi.json /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MajorMinorPatchTests.swiftmodule/arm64-apple-macos.abi.json
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MajorMinorPatchTests.swiftmodule/arm64-apple-macos.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/MajorMinorPatchTests.swiftdoc (in target 'MajorMinorPatchTests' from project 'MajorMinorPatch')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/MajorMinorPatchTests.swiftdoc /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MajorMinorPatchTests.swiftmodule/arm64-apple-macos.swiftdoc
Copy /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MajorMinorPatchTests.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/MajorMinorPatchTests.swiftsourceinfo (in target 'MajorMinorPatchTests' from project 'MajorMinorPatch')
cd /Users/admin/builder/spi-builder-workspace
builtin-copy -exclude .DS_Store -exclude CVS -exclude .svn -exclude .git -exclude .hg -resolve-src-symlinks -rename /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/MajorMinorPatchTests.swiftsourceinfo /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MajorMinorPatchTests.swiftmodule/Project/arm64-apple-macos.swiftsourceinfo
SwiftDriverJobDiscovery normal arm64 Compiling MinorTests.swift (in target 'MajorMinorPatchTests' from project 'MajorMinorPatch')
SwiftDriverJobDiscovery normal arm64 Compiling PatchTests.swift (in target 'MajorMinorPatchTests' from project 'MajorMinorPatch')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MajorMinorPatch.o (in target 'MajorMinorPatch' from project 'MajorMinorPatch')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MajorMinorPatch.o
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MajorMinorPatchTests.xctest/Contents/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/empty-MajorMinorPatchTests.plist (in target 'MajorMinorPatchTests' from project 'MajorMinorPatch')
cd /Users/admin/builder/spi-builder-workspace
builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/empty-MajorMinorPatchTests.plist -producttype com.apple.product-type.bundle.unit-test -expandbuildsettings -platform macosx -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MajorMinorPatchTests.xctest/Contents/Info.plist
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks/MajorMinorPatch.framework/Versions/A/MajorMinorPatch normal (in target 'MajorMinorPatch' from project 'MajorMinorPatch')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos10.15 -dynamiclib -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatch\ product.build/Objects-normal/arm64/MajorMinorPatch.LinkFileList -install_name @rpath/MajorMinorPatch.framework/Versions/A/MajorMinorPatch -Xlinker -rpath -Xlinker /usr/lib/swift -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatch\ product.build/Objects-normal/arm64/MajorMinorPatch_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -fprofile-instr-generate -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatch\ product.build/Objects-normal/arm64/MajorMinorPatch_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks/MajorMinorPatch.framework/Versions/A/MajorMinorPatch -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatch.build/Objects-normal/arm64/MajorMinorPatch.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug/Parsing.build/Objects-normal/arm64/Parsing.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-case-paths.build/Debug/CasePaths.build/Objects-normal/arm64/CasePaths.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/xctest-dynamic-overlay.build/Debug/IssueReporting.build/Objects-normal/arm64/IssueReporting.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/xctest-dynamic-overlay.build/Debug/XCTestDynamicOverlay.build/Objects-normal/arm64/XCTestDynamicOverlay.swiftmodule
ProcessInfoPlistFile /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks/MajorMinorPatch.framework/Versions/A/Resources/Info.plist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatch\ product.build/empty-MajorMinorPatch.plist (in target 'MajorMinorPatch' from project 'MajorMinorPatch')
cd /Users/admin/builder/spi-builder-workspace
builtin-infoPlistUtility /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatch\ product.build/empty-MajorMinorPatch.plist -producttype com.apple.product-type.framework -expandbuildsettings -platform macosx -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks/MajorMinorPatch.framework/Versions/A/Resources/Info.plist
SwiftDriverJobDiscovery normal arm64 Compiling MajorTests.swift (in target 'MajorMinorPatchTests' from project 'MajorMinorPatch')
SwiftDriverJobDiscovery normal arm64 Compiling StringConvertibleTests.swift (in target 'MajorMinorPatchTests' from project 'MajorMinorPatch')
SwiftDriverJobDiscovery normal arm64 Compiling SemanticVersioningPrecedenceTests.swift (in target 'MajorMinorPatchTests' from project 'MajorMinorPatch')
SwiftDriverJobDiscovery normal arm64 Compiling SUTs.swift (in target 'MajorMinorPatchTests' from project 'MajorMinorPatch')
SwiftDriver\ Compilation MajorMinorPatchTests normal arm64 com.apple.xcode.tools.swift.compiler (in target 'MajorMinorPatchTests' from project 'MajorMinorPatch')
cd /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode
builtin-Swift-Compilation -- /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swiftc -module-name MajorMinorPatchTests -Onone -enforce-exclusivity\=checked @/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/MajorMinorPatchTests.SwiftFileList -DSWIFT_PACKAGE -DDEBUG -stats-output-dir .stats -strict-concurrency\=complete -plugin-path /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/host/plugins/testing -enable-experimental-feature DebugDescriptionMacro -sdk /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -target arm64-apple-macos13.0 -g -module-cache-path /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex -Xfrontend -serialize-debugging-options -profile-coverage-mapping -profile-generate -enable-testing -index-store-path /Users/admin/builder/spi-builder-workspace/.derivedData/Index.noindex/DataStore -enable-experimental-feature OpaqueTypeErasure -Xcc -D_LIBCPP_HARDENING_MODE\=_LIBCPP_HARDENING_MODE_DEBUG -swift-version 5 -I /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -I /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -F /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -Xfrontend -load-plugin-executable -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/CasePathsMacros\#CasePathsMacros -c -j10 -enable-batch-mode -incremental -Xcc -ivfsstatcache -Xcc /Users/admin/builder/spi-builder-workspace/.derivedData/SDKStatCaches.noindex/macosx15.1-24B75-44d23fded74b714c58e69ec4af40d824.sdkstatcache -output-file-map /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/MajorMinorPatchTests-OutputFileMap.json -use-frontend-parseable-output -save-temps -no-color-diagnostics -serialize-diagnostics -emit-dependencies -emit-module -emit-module-path /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/MajorMinorPatchTests.swiftmodule -validate-clang-modules-once -clang-build-session-file /Users/admin/builder/spi-builder-workspace/.derivedData/ModuleCache.noindex/Session.modulevalidation -emit-const-values -Xfrontend -const-gather-protocols-file -Xfrontend /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/MajorMinorPatchTests_const_extract_protocols.json -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/include -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/DerivedSources-normal/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/DerivedSources/arm64 -Xcc -I/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/DerivedSources -Xcc -DSWIFT_PACKAGE -Xcc -DDEBUG\=1 -working-directory /Users/admin/builder/spi-builder-workspace/.swiftpm/xcode -experimental-emit-module-separately -disable-cmo
Ld /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MajorMinorPatchTests.xctest/Contents/MacOS/MajorMinorPatchTests normal (in target 'MajorMinorPatchTests' from project 'MajorMinorPatch')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -Xlinker -reproducible -target arm64-apple-macos13.0 -bundle -isysroot /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk -O0 -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -L/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -L/Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/EagerLinkingTBDs/Debug -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -F/Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug -iframework /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/Library/Frameworks -filelist /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/MajorMinorPatchTests.LinkFileList -Xlinker -rpath -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks -Xlinker -rpath -Xlinker @loader_path/Frameworks -Xlinker -rpath -Xlinker @loader_path/../Frameworks -Xlinker -object_path_lto -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/MajorMinorPatchTests_lto.o -Xlinker -export_dynamic -Xlinker -no_deduplicate -Xlinker -debug_variant -fobjc-link-runtime -fprofile-instr-generate -L/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/macosx -L/usr/lib/swift -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/MajorMinorPatchTests.swiftmodule -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -Wl,-no_warn_duplicate_libraries -framework XCTest -lXCTestSwiftSupport -Xlinker -dependency_info -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/MajorMinorPatchTests_dependency_info.dat -o /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MajorMinorPatchTests.xctest/Contents/MacOS/MajorMinorPatchTests -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-parsing.build/Debug/Parsing.build/Objects-normal/arm64/Parsing.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/swift-case-paths.build/Debug/CasePaths.build/Objects-normal/arm64/CasePaths.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/xctest-dynamic-overlay.build/Debug/IssueReporting.build/Objects-normal/arm64/IssueReporting.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/xctest-dynamic-overlay.build/Debug/XCTestDynamicOverlay.build/Objects-normal/arm64/XCTestDynamicOverlay.swiftmodule -Xlinker -add_ast_path -Xlinker /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatch.build/Objects-normal/arm64/MajorMinorPatch.swiftmodule
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks/MajorMinorPatch.framework (in target 'MajorMinorPatch' from project 'MajorMinorPatch')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks/MajorMinorPatch.framework
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks/MajorMinorPatch.framework (in target 'MajorMinorPatch' from project 'MajorMinorPatch')
cd /Users/admin/builder/spi-builder-workspace
/usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/PackageFrameworks/MajorMinorPatch.framework
CopySwiftLibs /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MajorMinorPatchTests.xctest (in target 'MajorMinorPatchTests' from project 'MajorMinorPatch')
cd /Users/admin/builder/spi-builder-workspace
builtin-swiftStdLibTool --copy --verbose --scan-executable /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MajorMinorPatchTests.xctest/Contents/MacOS/MajorMinorPatchTests --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MajorMinorPatchTests.xctest/Contents/Frameworks --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MajorMinorPatchTests.xctest/Contents/PlugIns --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MajorMinorPatchTests.xctest/Contents/Library/SystemExtensions --scan-folder /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MajorMinorPatchTests.xctest/Contents/Extensions --platform macosx --toolchain /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --destination /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MajorMinorPatchTests.xctest/Contents/Frameworks --strip-bitcode --scan-executable /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/usr/lib/libXCTestSwiftSupport.dylib --strip-bitcode-tool /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/bitcode_strip --emit-dependency-info /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/SwiftStdLibToolInputDependencies.dep --filter-for-swift-os
Ignoring --strip-bitcode because --sign was not passed
ExtractAppIntentsMetadata (in target 'MajorMinorPatchTests' from project 'MajorMinorPatch')
cd /Users/admin/builder/spi-builder-workspace
/Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/appintentsmetadataprocessor --output /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MajorMinorPatchTests.xctest/Contents/Resources --toolchain-dir /Applications/Xcode-16.1.0.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain --module-name MajorMinorPatchTests --sdk-root /Applications/Xcode-16.1.0.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX15.1.sdk --xcode-version 16B40 --platform-family macOS --deployment-target 13.0 --bundle-identifier spi-builder-workspace.MajorMinorPatchTests --target-triple arm64-apple-macos13.0 --binary-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MajorMinorPatchTests.xctest/Contents/MacOS/MajorMinorPatchTests --dependency-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/MajorMinorPatchTests_dependency_info.dat --stringsdata-file /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/ExtractedAppShortcutsMetadata.stringsdata --source-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/MajorMinorPatchTests.SwiftFileList --metadata-file-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/MajorMinorPatchTests.DependencyMetadataFileList --swift-const-vals-list /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Intermediates.noindex/MajorMinorPatch.build/Debug/MajorMinorPatchTests.build/Objects-normal/arm64/MajorMinorPatchTests.SwiftConstValuesFileList --compile-time-extraction --deployment-aware-processing --validate-assistant-intents
note: Metadata extraction skipped. No AppIntents.framework dependency found. (in target 'MajorMinorPatchTests' from project 'MajorMinorPatch')
RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MajorMinorPatchTests.xctest (in target 'MajorMinorPatchTests' from project 'MajorMinorPatch')
cd /Users/admin/builder/spi-builder-workspace
builtin-RegisterExecutionPolicyException /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MajorMinorPatchTests.xctest
Touch /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MajorMinorPatchTests.xctest (in target 'MajorMinorPatchTests' from project 'MajorMinorPatch')
cd /Users/admin/builder/spi-builder-workspace
/usr/bin/touch -c /Users/admin/builder/spi-builder-workspace/.derivedData/Build/Products/Debug/MajorMinorPatchTests.xctest
** BUILD SUCCEEDED **
--- xcodebuild: WARNING: Using the first of multiple matching destinations:
{ platform:macOS, arch:arm64, id:0000FE00-8C151E3703BE51BE, name:My Mac }
{ platform:macOS, arch:arm64, variant:Mac Catalyst, id:0000FE00-8C151E3703BE51BE, name:My Mac }
{ platform:macOS, arch:arm64, variant:DriverKit, id:0000FE00-8C151E3703BE51BE, name:My Mac }
{ platform:macOS, arch:arm64, variant:Designed for [iPad,iPhone], id:0000FE00-8C151E3703BE51BE, name:My Mac }
Build complete.
{
"dependencies" : [
{
"identity" : "swift-parsing",
"requirement" : {
"branch" : [
"main"
]
},
"type" : "sourceControl",
"url" : "https://github.com/pointfreeco/swift-parsing.git"
}
],
"manifest_display_name" : "MajorMinorPatch",
"name" : "MajorMinorPatch",
"path" : "/Users/admin/builder/spi-builder-workspace",
"platforms" : [
{
"name" : "macos",
"version" : "10.15"
},
{
"name" : "ios",
"version" : "11.0"
},
{
"name" : "tvos",
"version" : "11.0"
},
{
"name" : "watchos",
"version" : "4.0"
}
],
"products" : [
{
"name" : "MajorMinorPatch",
"targets" : [
"MajorMinorPatch"
],
"type" : {
"library" : [
"dynamic"
]
}
}
],
"targets" : [
{
"c99name" : "MajorMinorPatchTests",
"module_type" : "SwiftTarget",
"name" : "MajorMinorPatchTests",
"path" : "Tests/MajorMinorPatchTests",
"sources" : [
"MajorTests.swift",
"MinorTests.swift",
"ParsingTests.swift",
"PatchTests.swift",
"SUTs.swift",
"SemanticIdentifierComparableTests.swift",
"SemanticVersioningPrecedenceTests.swift",
"StringConvertibleTests.swift",
"ValidationTests.swift"
],
"target_dependencies" : [
"MajorMinorPatch"
],
"type" : "test"
},
{
"c99name" : "MajorMinorPatch",
"module_type" : "SwiftTarget",
"name" : "MajorMinorPatch",
"path" : "Sources/MajorMinorPatch",
"product_dependencies" : [
"Parsing"
],
"product_memberships" : [
"MajorMinorPatch"
],
"sources" : [
"Parsing.swift",
"Public/Identifier/ArraySemantic.Identifier.swift",
"Public/Identifier/Semantic.Identifier.LosslessStringConvertible.swift",
"Public/Identifier/Semantic.Identifier.swift",
"Public/Major/Semantic.Major.AdditiveArithmetic.swift",
"Public/Major/Semantic.Major.Comparable.swift",
"Public/Major/Semantic.Major.LosslessStringConvertible.swift",
"Public/Major/Semantic.Major.PatternMatching.swift",
"Public/Major/Semantic.Major.swift",
"Public/Metadata/Semantic.Metadata.LosslessStringConvertible.swift",
"Public/Metadata/Semantic.Metadata.swift",
"Public/Minor/Semantic.Minor.AdditiveArithmetic.swift",
"Public/Minor/Semantic.Minor.Comparable.swift",
"Public/Minor/Semantic.Minor.LosslessStringConvertible.swift",
"Public/Minor/Semantic.Minor.PatternMatching.swift",
"Public/Minor/Semantic.Minor.swift",
"Public/Patch/Semantic.Patch.AdditiveArithmetic.swift",
"Public/Patch/Semantic.Patch.Comparable .swift",
"Public/Patch/Semantic.Patch.LosslessStringConvertible.swift",
"Public/Patch/Semantic.Patch.PatternMatching.swift",
"Public/Patch/Semantic.Patch.swift",
"Public/Semantic.Comparable.swift",
"Public/Semantic.LosslessStringConvertible .swift",
"Public/Semantic.swift",
"Public/Version/Semantic.Version.LosslessStringConvertible.swift",
"Public/Version/Semantic.Version.swift",
"Validation.swift"
],
"type" : "library"
}
],
"tools_version" : "5.7"
}
Done.